@websy/websy-designs 1.4.28 → 1.4.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/websy-designs-es6.debug.js +52 -7
- package/dist/websy-designs-es6.js +37 -5
- package/dist/websy-designs-es6.min.js +1 -1
- package/dist/websy-designs.debug.js +52 -7
- package/dist/websy-designs.js +37 -5
- package/dist/websy-designs.min.css +1 -1
- package/dist/websy-designs.min.js +1 -1
- package/package.json +1 -1
|
@@ -6143,10 +6143,11 @@ class WebsyTable3 {
|
|
|
6143
6143
|
allowPivoting: false,
|
|
6144
6144
|
searchIcon: `<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 512 512"><title>ionicons-v5-f</title><path d="M221.09,64A157.09,157.09,0,1,0,378.18,221.09,157.1,157.1,0,0,0,221.09,64Z" style="fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:32px"/><line x1="338.29" y1="338.29" x2="448" y2="448" style="fill:none;stroke:#000;stroke-linecap:round;stroke-miterlimit:10;stroke-width:32px"/></svg>`,
|
|
6145
6145
|
plusIcon: WebsyDesigns.Icons.PlusFilled,
|
|
6146
|
-
minusIcon: WebsyDesigns.Icons.MinusFilled
|
|
6146
|
+
minusIcon: WebsyDesigns.Icons.MinusFilled
|
|
6147
6147
|
}
|
|
6148
6148
|
this.options = Object.assign({}, DEFAULTS, options)
|
|
6149
6149
|
this.sizes = {}
|
|
6150
|
+
this.currentData = []
|
|
6150
6151
|
this.scrollDragging = false
|
|
6151
6152
|
this.cellDragging = false
|
|
6152
6153
|
this.vScrollRequired = false
|
|
@@ -6223,14 +6224,16 @@ class WebsyTable3 {
|
|
|
6223
6224
|
this.renderTotals()
|
|
6224
6225
|
}
|
|
6225
6226
|
appendRows (data) {
|
|
6226
|
-
this.hideError()
|
|
6227
|
+
this.hideError()
|
|
6227
6228
|
let bodyEl = document.getElementById(`${this.elementId}_tableBody`)
|
|
6228
6229
|
if (bodyEl) {
|
|
6229
6230
|
if (this.options.virtualScroll === true) {
|
|
6230
6231
|
bodyEl.innerHTML = this.buildBodyHtml(data, true)
|
|
6232
|
+
this.currentData = data
|
|
6231
6233
|
}
|
|
6232
6234
|
else {
|
|
6233
6235
|
bodyEl.innerHTML += this.buildBodyHtml(data, true)
|
|
6236
|
+
this.currentData = this.currentData.concat(data)
|
|
6234
6237
|
}
|
|
6235
6238
|
}
|
|
6236
6239
|
// this.data = this.data.concat(data)
|
|
@@ -6291,7 +6294,8 @@ class WebsyTable3 {
|
|
|
6291
6294
|
colspan='${cell.colspan || 1}'
|
|
6292
6295
|
rowspan='${cell.rowspan || 1}'
|
|
6293
6296
|
data-row-index='${rowIndex}'
|
|
6294
|
-
data-
|
|
6297
|
+
data-cell-index='${cellIndex}'
|
|
6298
|
+
data-col-index='${sizeIndex}'
|
|
6295
6299
|
`
|
|
6296
6300
|
// if (useWidths === true) {
|
|
6297
6301
|
// bodyHtml += `
|
|
@@ -6300,7 +6304,13 @@ class WebsyTable3 {
|
|
|
6300
6304
|
// `
|
|
6301
6305
|
// }
|
|
6302
6306
|
bodyHtml += `
|
|
6303
|
-
><div
|
|
6307
|
+
><div
|
|
6308
|
+
style='${divStyle}'
|
|
6309
|
+
class='websy-table-cell-content'
|
|
6310
|
+
data-row-index='${rowIndex}'
|
|
6311
|
+
data-cell-index='${cellIndex}'
|
|
6312
|
+
data-col-index='${sizeIndex}'
|
|
6313
|
+
>`
|
|
6304
6314
|
if (cell.expandable === true) {
|
|
6305
6315
|
bodyHtml += `<i
|
|
6306
6316
|
data-row-index='${rowIndex}'
|
|
@@ -6386,7 +6396,15 @@ class WebsyTable3 {
|
|
|
6386
6396
|
// width='${col.width || col.actualWidth}'
|
|
6387
6397
|
// `
|
|
6388
6398
|
// }
|
|
6389
|
-
headerHtml +=
|
|
6399
|
+
headerHtml += `>
|
|
6400
|
+
<div
|
|
6401
|
+
style='${divStyle}'
|
|
6402
|
+
data-col-index="${colIndex}"
|
|
6403
|
+
class='${['asc', 'desc'].indexOf(col.sort) !== -1 ? 'sortable-column' : ''}'
|
|
6404
|
+
>
|
|
6405
|
+
${col.name}${col.activeSort ? this.buildSortIcon(col.sort, colIndex) : ''}${col.searchable === true ? this.buildSearchIcon(col, colIndex) : ''}
|
|
6406
|
+
</div>
|
|
6407
|
+
</td>`
|
|
6390
6408
|
})
|
|
6391
6409
|
headerHtml += `</tr>`
|
|
6392
6410
|
})
|
|
@@ -6407,7 +6425,13 @@ class WebsyTable3 {
|
|
|
6407
6425
|
buildSearchIcon (col, index) {
|
|
6408
6426
|
// return `<div class="websy-table-search-icon" data-col-id="${col.dimId}" data-col-index="${index}">
|
|
6409
6427
|
return `<div class="websy-table-search-icon" data-col-index="${index}">
|
|
6410
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 512 512"><
|
|
6428
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 512 512"><path d="M221.09,64A157.09,157.09,0,1,0,378.18,221.09,157.1,157.1,0,0,0,221.09,64Z" style="fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:32px"/><line x1="338.29" y1="338.29" x2="448" y2="448" style="fill:none;stroke:#000;stroke-linecap:round;stroke-miterlimit:10;stroke-width:32px"/></svg>
|
|
6429
|
+
</div>`
|
|
6430
|
+
}
|
|
6431
|
+
buildSortIcon (direction, index) {
|
|
6432
|
+
// return `<div class="websy-table-search-icon" data-col-id="${col.dimId}" data-col-index="${index}">
|
|
6433
|
+
return `<div class="websy-table-sort-icon ${direction}" data-col-index="${index}">
|
|
6434
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 512 512"><path d="M98,190.06,237.78,353.18a24,24,0,0,0,36.44,0L414,190.06c13.34-15.57,2.28-39.62-18.22-39.62H116.18C95.68,150.44,84.62,174.49,98,190.06Z"/></svg>
|
|
6411
6435
|
</div>`
|
|
6412
6436
|
}
|
|
6413
6437
|
buildTotalHtml (useWidths = false) {
|
|
@@ -6581,9 +6605,9 @@ class WebsyTable3 {
|
|
|
6581
6605
|
}
|
|
6582
6606
|
handleClick (event) {
|
|
6583
6607
|
const colIndex = +event.target.getAttribute('data-col-index')
|
|
6608
|
+
const cellIndex = +event.target.getAttribute('data-cell-index')
|
|
6584
6609
|
const rowIndex = +event.target.getAttribute('data-row-index')
|
|
6585
6610
|
if (event.target.classList.contains('websy-table-search-icon')) {
|
|
6586
|
-
// console.log('clicked on search icon')
|
|
6587
6611
|
if (this.options.columns[this.options.columns.length - 1][colIndex].onSearch) {
|
|
6588
6612
|
this.options.columns[this.options.columns.length - 1][colIndex].onSearch(event, this.options.columns[this.options.columns.length - 1][colIndex])
|
|
6589
6613
|
}
|
|
@@ -6604,6 +6628,27 @@ class WebsyTable3 {
|
|
|
6604
6628
|
// out of box function
|
|
6605
6629
|
}
|
|
6606
6630
|
}
|
|
6631
|
+
if (event.target.classList.contains('sortable-column')) {
|
|
6632
|
+
// const sortIndex = +event.target.getAttribute('data-sort-index')
|
|
6633
|
+
const column = this.options.columns[this.options.columns.length - 1][colIndex]
|
|
6634
|
+
if (this.options.onSort) {
|
|
6635
|
+
this.options.onSort(event, column, colIndex)
|
|
6636
|
+
}
|
|
6637
|
+
else {
|
|
6638
|
+
this.internalSort(column, colIndex)
|
|
6639
|
+
}
|
|
6640
|
+
}
|
|
6641
|
+
if (event.target.classList.contains('websy-table-cell-content')) {
|
|
6642
|
+
if (this.options.onCellSelect) {
|
|
6643
|
+
this.options.onCellSelect(event, {
|
|
6644
|
+
cellIndex,
|
|
6645
|
+
colIndex,
|
|
6646
|
+
rowIndex,
|
|
6647
|
+
cell: (this.currentData[rowIndex] || [])[cellIndex],
|
|
6648
|
+
column: (this.options.columns[this.options.columns.length - 1] || [])[colIndex]
|
|
6649
|
+
})
|
|
6650
|
+
}
|
|
6651
|
+
}
|
|
6607
6652
|
}
|
|
6608
6653
|
handleMouseDown (event) {
|
|
6609
6654
|
if (event.target.classList.contains('websy-scroll-handle-y')) {
|
package/dist/websy-designs.js
CHANGED
|
@@ -6753,6 +6753,7 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
6753
6753
|
};
|
|
6754
6754
|
this.options = _extends({}, DEFAULTS, options);
|
|
6755
6755
|
this.sizes = {};
|
|
6756
|
+
this.currentData = [];
|
|
6756
6757
|
this.scrollDragging = false;
|
|
6757
6758
|
this.cellDragging = false;
|
|
6758
6759
|
this.vScrollRequired = false;
|
|
@@ -6806,8 +6807,10 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
6806
6807
|
if (bodyEl) {
|
|
6807
6808
|
if (this.options.virtualScroll === true) {
|
|
6808
6809
|
bodyEl.innerHTML = this.buildBodyHtml(data, true);
|
|
6810
|
+
this.currentData = data;
|
|
6809
6811
|
} else {
|
|
6810
6812
|
bodyEl.innerHTML += this.buildBodyHtml(data, true);
|
|
6813
|
+
this.currentData = this.currentData.concat(data);
|
|
6811
6814
|
}
|
|
6812
6815
|
} // this.data = this.data.concat(data)
|
|
6813
6816
|
// this.rowCount = this.data.length
|
|
@@ -6879,14 +6882,14 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
6879
6882
|
} // console.log('rowspan', cell.rowspan)
|
|
6880
6883
|
|
|
6881
6884
|
|
|
6882
|
-
bodyHtml += "<td \n class='websy-table-cell ".concat(sizeIndex < _this40.pinnedColumns ? 'pinned' : 'unpinned', " ").concat((cell.classes || []).join(' '), "'\n style='").concat(style, "'\n data-info='").concat(cell.value, "'\n colspan='").concat(cell.colspan || 1, "'\n rowspan='").concat(cell.rowspan || 1, "'\n data-row-index='").concat(rowIndex, "'\n data-
|
|
6885
|
+
bodyHtml += "<td \n class='websy-table-cell ".concat(sizeIndex < _this40.pinnedColumns ? 'pinned' : 'unpinned', " ").concat((cell.classes || []).join(' '), "'\n style='").concat(style, "'\n data-info='").concat(cell.value, "'\n colspan='").concat(cell.colspan || 1, "'\n rowspan='").concat(cell.rowspan || 1, "'\n data-row-index='").concat(rowIndex, "'\n data-cell-index='").concat(cellIndex, "'\n data-col-index='").concat(sizeIndex, "'\n "); // if (useWidths === true) {
|
|
6883
6886
|
// bodyHtml += `
|
|
6884
6887
|
// style='width: ${sizingColumns[cellIndex].width || sizingColumns[cellIndex].actualWidth}px!important'
|
|
6885
6888
|
// width='${sizingColumns[cellIndex].width || sizingColumns[cellIndex].actualWidth}'
|
|
6886
6889
|
// `
|
|
6887
6890
|
// }
|
|
6888
6891
|
|
|
6889
|
-
bodyHtml += "\n ><div style='".concat(divStyle, "'>");
|
|
6892
|
+
bodyHtml += "\n ><div \n style='".concat(divStyle, "' \n class='websy-table-cell-content'\n data-row-index='").concat(rowIndex, "'\n data-cell-index='").concat(cellIndex, "'\n data-col-index='").concat(sizeIndex, "'\n >");
|
|
6890
6893
|
|
|
6891
6894
|
if (cell.expandable === true) {
|
|
6892
6895
|
bodyHtml += "<i \n data-row-index='".concat(rowIndex, "'\n data-col-index='").concat(cell.level || cellIndex, "'\n class='websy-table-cell-expand'\n >").concat(_this40.options.plusIcon, "</i>");
|
|
@@ -6964,7 +6967,7 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
6964
6967
|
// `
|
|
6965
6968
|
// }
|
|
6966
6969
|
|
|
6967
|
-
headerHtml += "
|
|
6970
|
+
headerHtml += ">\n <div \n style='".concat(divStyle, "'\n data-col-index=\"").concat(colIndex, "\"\n class='").concat(['asc', 'desc'].indexOf(col.sort) !== -1 ? 'sortable-column' : '', "'\n >\n ").concat(col.name).concat(col.activeSort ? _this41.buildSortIcon(col.sort, colIndex) : '').concat(col.searchable === true ? _this41.buildSearchIcon(col, colIndex) : '', "\n </div>\n </td>");
|
|
6968
6971
|
});
|
|
6969
6972
|
headerHtml += "</tr>";
|
|
6970
6973
|
});
|
|
@@ -6987,7 +6990,13 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
6987
6990
|
key: "buildSearchIcon",
|
|
6988
6991
|
value: function buildSearchIcon(col, index) {
|
|
6989
6992
|
// return `<div class="websy-table-search-icon" data-col-id="${col.dimId}" data-col-index="${index}">
|
|
6990
|
-
return "<div class=\"websy-table-search-icon\" data-col-index=\"".concat(index, "\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 512 512\"><
|
|
6993
|
+
return "<div class=\"websy-table-search-icon\" data-col-index=\"".concat(index, "\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 512 512\"><path d=\"M221.09,64A157.09,157.09,0,1,0,378.18,221.09,157.1,157.1,0,0,0,221.09,64Z\" style=\"fill:none;stroke:#000;stroke-miterlimit:10;stroke-width:32px\"/><line x1=\"338.29\" y1=\"338.29\" x2=\"448\" y2=\"448\" style=\"fill:none;stroke:#000;stroke-linecap:round;stroke-miterlimit:10;stroke-width:32px\"/></svg>\n </div>");
|
|
6994
|
+
}
|
|
6995
|
+
}, {
|
|
6996
|
+
key: "buildSortIcon",
|
|
6997
|
+
value: function buildSortIcon(direction, index) {
|
|
6998
|
+
// return `<div class="websy-table-search-icon" data-col-id="${col.dimId}" data-col-index="${index}">
|
|
6999
|
+
return "<div class=\"websy-table-sort-icon ".concat(direction, "\" data-col-index=\"").concat(index, "\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"15\" height=\"15\" viewBox=\"0 0 512 512\"><path d=\"M98,190.06,237.78,353.18a24,24,0,0,0,36.44,0L414,190.06c13.34-15.57,2.28-39.62-18.22-39.62H116.18C95.68,150.44,84.62,174.49,98,190.06Z\"/></svg>\n </div>");
|
|
6991
7000
|
}
|
|
6992
7001
|
}, {
|
|
6993
7002
|
key: "buildTotalHtml",
|
|
@@ -7199,10 +7208,10 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7199
7208
|
key: "handleClick",
|
|
7200
7209
|
value: function handleClick(event) {
|
|
7201
7210
|
var colIndex = +event.target.getAttribute('data-col-index');
|
|
7211
|
+
var cellIndex = +event.target.getAttribute('data-cell-index');
|
|
7202
7212
|
var rowIndex = +event.target.getAttribute('data-row-index');
|
|
7203
7213
|
|
|
7204
7214
|
if (event.target.classList.contains('websy-table-search-icon')) {
|
|
7205
|
-
// console.log('clicked on search icon')
|
|
7206
7215
|
if (this.options.columns[this.options.columns.length - 1][colIndex].onSearch) {
|
|
7207
7216
|
this.options.columns[this.options.columns.length - 1][colIndex].onSearch(event, this.options.columns[this.options.columns.length - 1][colIndex]);
|
|
7208
7217
|
}
|
|
@@ -7221,6 +7230,29 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7221
7230
|
} else {// out of box function
|
|
7222
7231
|
}
|
|
7223
7232
|
}
|
|
7233
|
+
|
|
7234
|
+
if (event.target.classList.contains('sortable-column')) {
|
|
7235
|
+
// const sortIndex = +event.target.getAttribute('data-sort-index')
|
|
7236
|
+
var column = this.options.columns[this.options.columns.length - 1][colIndex];
|
|
7237
|
+
|
|
7238
|
+
if (this.options.onSort) {
|
|
7239
|
+
this.options.onSort(event, column, colIndex);
|
|
7240
|
+
} else {
|
|
7241
|
+
this.internalSort(column, colIndex);
|
|
7242
|
+
}
|
|
7243
|
+
}
|
|
7244
|
+
|
|
7245
|
+
if (event.target.classList.contains('websy-table-cell-content')) {
|
|
7246
|
+
if (this.options.onCellSelect) {
|
|
7247
|
+
this.options.onCellSelect(event, {
|
|
7248
|
+
cellIndex: cellIndex,
|
|
7249
|
+
colIndex: colIndex,
|
|
7250
|
+
rowIndex: rowIndex,
|
|
7251
|
+
cell: (this.currentData[rowIndex] || [])[cellIndex],
|
|
7252
|
+
column: (this.options.columns[this.options.columns.length - 1] || [])[colIndex]
|
|
7253
|
+
});
|
|
7254
|
+
}
|
|
7255
|
+
}
|
|
7224
7256
|
}
|
|
7225
7257
|
}, {
|
|
7226
7258
|
key: "handleMouseDown",
|
|
@@ -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-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 .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}.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}.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-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}.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;top:4px}.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: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 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-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}.websy-search-input-container .search,.websy-search-input-container .clear{position:absolute;top:15px;left:18px;stroke:#000000}.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{height:50px;line-height:50px;text-indent:50px;letter-spacing:.1em;border:1px solid #cccccc;width:100%;font-size:inherit;box-sizing:border-box}.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;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}.websy-form>div{margin:5px 0 15px}.websy-form>button{margin-top:10px}.form-component{position:relative}.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-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-modal-dropdown .websy-dropdown-header{visibility:hidden}.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.scrolling .websy-v-scroll-container,.websy-vis-table-3.scrolling .websy-h-scroll-container{visibility:visible}.websy-vis-table-3:hover .websy-v-scroll-container,.websy-vis-table-3:hover .websy-h-scroll-container{visibility:visible}.websy-vis-table-3 .websy-v-scroll-container{position:absolute;right:0;height:100%;width:10px;visibility:hidden}.websy-vis-table-3 .websy-h-scroll-container{position:absolute;left:0;bottom:0;width:calc(100% - 10px);height:10px;visibility:hidden}.websy-vis-table-3 .websy-scroll-handle{background-color:#cccccc;position:absolute;border-radius:5px}.websy-vis-table-3 .websy-scroll-handle-y{width:100%}.websy-vis-table-3 .websy-scroll-handle-x{height:100%}.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 .websy-table-search-icon{display:flex;cursor:pointer;margin-left:5px}.websy-vis-table-3 .websy-table-header td>div .websy-table-search-icon *{pointer-events:none}.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: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-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}.websy-legend .websy-legend-item{position:relative;padding-left:22px}.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:576px){.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-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%;background-color:#ffffff}.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:576px){.websy-container{width:95vw}.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}}
|
|
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-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 .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}.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}.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-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}.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;top:4px}.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: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 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-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}.websy-search-input-container .search,.websy-search-input-container .clear{position:absolute;top:15px;left:18px;stroke:#000000}.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{height:50px;line-height:50px;text-indent:50px;letter-spacing:.1em;border:1px solid #cccccc;width:100%;font-size:inherit;box-sizing:border-box}.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;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}.websy-form>div{margin:5px 0 15px}.websy-form>button{margin-top:10px}.form-component{position:relative}.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-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-modal-dropdown .websy-dropdown-header{visibility:hidden}.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.scrolling .websy-v-scroll-container,.websy-vis-table-3.scrolling .websy-h-scroll-container{visibility:visible}.websy-vis-table-3:hover .websy-v-scroll-container,.websy-vis-table-3:hover .websy-h-scroll-container{visibility:visible}.websy-vis-table-3 .websy-v-scroll-container{position:absolute;right:0;height:100%;width:10px;visibility:hidden}.websy-vis-table-3 .websy-h-scroll-container{position:absolute;left:0;bottom:0;width:calc(100% - 10px);height:10px;visibility:hidden}.websy-vis-table-3 .websy-scroll-handle{background-color:#cccccc;position:absolute;border-radius:5px}.websy-vis-table-3 .websy-scroll-handle-y{width:100%}.websy-vis-table-3 .websy-scroll-handle-x{height:100%}.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-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}.websy-legend .websy-legend-item{position:relative;padding-left:22px}.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:576px){.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-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%;background-color:#ffffff}.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:576px){.websy-container{width:95vw}.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}}
|