+
+ Custom Report Item allows you to add the functionality that is not natively supported in the RDL or extend the
+ functionality of existing controls in the RDL standard.
+
+
+ This report showcases the one-dimensional and two-dimensional barcode types rendered in our Report Viewer
+ through Custom Report Item.
+
+
+ More information about Barcode can be found in this documentation section.
+
+
+}
diff --git a/Views/DataBar/Index.cshtml b/Views/DataBar/Index.cshtml
new file mode 100644
index 0000000..0265d67
--- /dev/null
+++ b/Views/DataBar/Index.cshtml
@@ -0,0 +1,22 @@
+@inject Globals globals;
+
+@section control {
+
+
+
+ Data bars convey lot of information in a little space, and are mostly used in tables and matrices. In this report, sales data are interpreted to visualize the sales figures in a tabular format.
+
+
+ More information about the Databar report item can be found in this documentation section.
+
+
+}
diff --git a/Views/DynamicChartSeries/Index.cshtml b/Views/DynamicChartSeries/Index.cshtml
index f3a2988..4f328fb 100644
--- a/Views/DynamicChartSeries/Index.cshtml
+++ b/Views/DynamicChartSeries/Index.cshtml
@@ -17,7 +17,7 @@
@section description {
- This demo shows the VisitorsCount, PurchaserCount, AddedToCartCount by dynamically chossing the chart series.
+ This demo shows the VisitorsCount, PurchaserCount, AddedToCartCount by dynamically choosing the chart series.
More information about the Chart report item can be found in this
+
+}
+
+@section description {
+
+
+ Dynamic column tabular report demonstrates to change the number of columns at runtime using ASP.NET Core Bold Report Viewer.
+
+
+
+ Dynamic column is a feature that allows one to store different sets of columns for each row in a table.
+
+ In this table few columns are static and few can be varied, based on the column names selected in the parameter. This feature is achieved by changing the column visibility based on the parameter selected.
+
+
+
+ More information about the Tablix data region can be found in this documentation section.
+
+
+}
diff --git a/Views/ExternalParameterReport/Index.cshtml b/Views/ExternalParameterReport/Index.cshtml
new file mode 100644
index 0000000..1657db0
--- /dev/null
+++ b/Views/ExternalParameterReport/Index.cshtml
@@ -0,0 +1,159 @@
+@inject Globals globals;
+
+@section control {
+
+
+
+}
+@section description {
+
+
+ The Product Line Sales RDL report represents the best performing sales people and stores using Tablix and Chart
+ report items.
+
+
+
+ The sales details are organized by category and sub-category of products using the concept of external
+ report parameters which is designed using ejdropdownlist . It allows users to filter Sub Category based on the selected
+ Category.
+
+ Non cascading parameters namely start date and end date also used in this report.
+
+
+ More information about handling the report items can be found in this documentation section.
+
+
+}
diff --git a/Views/ProductDetails/index.cshtml b/Views/ProductDetails/index.cshtml
new file mode 100644
index 0000000..fb7d60b
--- /dev/null
+++ b/Views/ProductDetails/index.cshtml
@@ -0,0 +1,30 @@
+@inject Globals globals;
+
+@section control {
+
+
+
+}
+
+@section description {
+
+
+ The Product Details report lists the details defined for each product in database using the RDL table report item.
+
+
+ Custom barcode report item is placed in a table cell to display the ProductId
.
+
+ The total price value of each product is calculated based on the OrderQty
and UnitPrice
data fields using expression .
+
+
+ The price values in the product details are formatted in the Currency format to improve the readability of data.
+
+
+
+ More information about the Tablix data region can be found in this documentation section.
+
+
+}
diff --git a/Views/RDLC/Index.cshtml b/Views/RDLC/Index.cshtml
index 8e54df8..b17d8be 100644
--- a/Views/RDLC/Index.cshtml
+++ b/Views/RDLC/Index.cshtml
@@ -2,7 +2,14 @@
@section control {
-
+ @{
+ List
extensions = new List(){
+ new BoldReports.Models.ReportDesigner.ReportItemExtensionsModule{Name="barcode",ClassName="EJBarcode",ImageClass="customitem-barcode",DisplayName="1D Barcode",Category="Barcodes"},
+ new BoldReports.Models.ReportDesigner.ReportItemExtensionsModule{Name="matrixbarcode",ClassName="EJQRBarcode",ImageClass="customitem-qrbarcode",DisplayName="2D Barcode",Category="Barcodes"}
+ };
+ }
+
+
+
+}
+
+@section description {
+
+
+ A sparkline is a small embedded line graph that illustrates a single trend. In this report, sales data are
+ interpreted to visualize the sales trends using Spark Line report items.
+
+
+ More information about RDLC report can be found in this documentation
+ section.
+
+
+}
diff --git a/appsettings.json b/appsettings.json
index 89fb878..11ee1a5 100644
--- a/appsettings.json
+++ b/appsettings.json
@@ -6,7 +6,7 @@
},
"AllowedHosts": "*",
"appSettings": {
- "ExtAssemblies": "BoldReports.Data.WebData;BoldReports.Data.Csv;BoldReports.Data.Excel;",
- "IsOfflineLicense": "false"
+ "ExtAssemblies": "BoldReports.Data.WebData;BoldReports.Data.Csv;BoldReports.Data.Excel;BoldReports.CRI.Barcode;",
+ "IsOfflineLicense": "false"
}
}
diff --git a/bundleconfig.json b/bundleconfig.json
index f289a1d..69c68da 100644
--- a/bundleconfig.json
+++ b/bundleconfig.json
@@ -64,6 +64,8 @@
"wwwroot/scripts/bold-reports/bold.report-viewer.min.js",
"wwwroot/scripts/bold-reports/common/bold.report-designer-widgets.min.js",
"wwwroot/scripts/bold-reports/bold.report-designer.min.js",
+ "wwwroot/scripts/extensions/barcode.js",
+ "wwwroot/scripts/extensions/qrbarcode.js",
"wwwroot/scripts/bold-reports/data-visualization/ej.bulletgraph.min.js",
"wwwroot/scripts/bold-reports/data-visualization/ej.chart.min.js"
],
@@ -112,7 +114,8 @@
"wwwroot/css/bold-reports/bold.widgets.core.material.min.css",
"wwwroot/css/bold-reports/material/bold.theme.min.css",
"wwwroot/css/bold-reports/bold.reportdesigner.core.material.min.css",
- "wwwroot/css/bold-reports/material/bold.reportdesigner.theme.min.css"
+ "wwwroot/css/bold-reports/material/bold.reportdesigner.theme.min.css",
+ "wwwroot/extensions/barcode.css"
]
}
]
\ No newline at end of file
diff --git a/web.config b/web.config
index e93d46f..d8fa8bd 100644
--- a/web.config
+++ b/web.config
@@ -1,5 +1,14 @@
+
+
+
+
+
+
+
+
+
diff --git a/wwwroot/assets/sidebar/landscape.png b/wwwroot/assets/sidebar/landscape.png
index b708816..1b2e072 100644
Binary files a/wwwroot/assets/sidebar/landscape.png and b/wwwroot/assets/sidebar/landscape.png differ
diff --git a/wwwroot/assets/sidebar/portrait.png b/wwwroot/assets/sidebar/portrait.png
index 23e2485..4bc5ca2 100644
Binary files a/wwwroot/assets/sidebar/portrait.png and b/wwwroot/assets/sidebar/portrait.png differ
diff --git a/wwwroot/css/bold-reports/bold.reportdesigner.core.material.min.css b/wwwroot/css/bold-reports/bold.reportdesigner.core.material.min.css
index 4353f7f..8c751a6 100644
--- a/wwwroot/css/bold-reports/bold.reportdesigner.core.material.min.css
+++ b/wwwroot/css/bold-reports/bold.reportdesigner.core.material.min.css
@@ -1,11 +1,11 @@
@charset "UTF-8";
/*!
* filename: ej.reportdesigner.core.material.min.css
-* version : 3.3.23
-* Copyright 2001 - 2021 Syncfusion Inc. All rights reserved.
+* version : 4.1.78
+* Copyright 2001 - 2022 Syncfusion Inc. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
* applicable laws.
*/
-.e-ribbon.e-js .e-header .e-active a,.e-ribbon .e-header>.e-apptab .e-apptabanchor,.e-ribbon .e-expandcollapse span{border-radius:2px}.e-ribbon .e-menu.e-horizontal>.e-list>a,.e-menu.e-horizontal>.e-list>span{line-height:33px}.e-ribbon .e-groupdiv .e-resizebtn{height:auto}@font-face{font-family:'ejreportdesigner';src:url('common-images/reportdesigner/ejreportdesigner.eot?jrva8r');src:url('common-images/reportdesigner/ejreportdesigner.eot?jrva8r#iefix') format('embedded-opentype'),url('common-images/reportdesigner/ejreportdesigner.ttf?jrva8r') format('truetype'),url('common-images/reportdesigner/ejreportdesigner.woff?jrva8r') format('woff'),url('common-images/reportdesigner/ejreportdesigner.svg?jrva8r#ejreportdesigner') format('svg');font-weight:normal;font-style:normal}.e-reportdesigner-add:before{content:""}.e-reportdesigner-close:before{content:""}.e-reportdesigner-code-module:before{content:""}.e-reportdesigner-configuration-dataset:before{content:""}.e-rptdesigner-dsconfig:before{content:""}.e-reportdesigner-configuration-imagemanager:before{content:""}.e-reportdesigner-configuration-parameters:before{content:""}.e-reportdesigner-datasource-odbc:before{content:""}.e-reportdesigner-datasource-oledb:before{content:""}.e-reportdesigner-datasource-oracle:before{content:""}.e-reportdesigner-datasource-sql:before{content:""}.e-reportdesigner-datasource-sqlce:before{content:""}.e-reportdesigner-datasource-xml:before{content:""}.e-reportdesigner-double-drag:before{content:""}.e-reportdesigner-filter:before{content:""}.e-reportdesigner-move:before{content:""}.e-reportdesigner-reference:before{content:""}.e-reportdesigner-search:before{content:""}.e-reportdesigner-search-collapse:before{content:""}.e-reportdesigner-selection:before{content:""}.e-reportdesigner-single-drag:before{content:""}.e-reportdesigner-syncfusion:before{content:""}.e-rptdesigner-toolbar-copy:before{content:""}.e-rptdesigner-toolbar-cut:before{content:""}.e-rptdesigner-toolbar-delete:before{content:""}.e-reportdesigner-toolbar-design:before{content:""}.e-reportdesigner-toolbar-menu:before{content:""}.e-rptdesigner-toolbar-new:before{content:""}.e-rptdesigner-toolbar-open:before{content:""}.e-rptdesigner-toolbar-paste:before{content:""}.e-rptdesigner-toolbar-preview:before{content:""}.e-rptdesigner-toolbar-redo:before{content:""}.e-rptdesigner-toolbar-save:before{content:""}.e-rptdesigner-toolbar-undo:before{content:""}.e-rptdesigner-toolbar-zoomin:before{content:""}.e-rptdesigner-toolbar-zoomout:before{content:""}.e-rptdesigner-toolbar-sendbackward:before{content:""}.e-rptdesigner-toolbar-bringforward:before{content:""}.e-rptdesigner-toolbar-sendtoback:before{content:""}.e-rptdesigner-toolbar-bringtofront:before{content:""}.e-rptdesigner-toolbar-leftalign:before{content:""}.e-rptdesigner-toolbar-center:before{content:""}.e-rptdesigner-toolbar-rightalign:before{content:""}.e-rptdesigner-toolbar-topalign:before{content:""}.e-rptdesigner-toolbar-middle:before{content:""}.e-rptdesigner-toolbar-bottomalign:before{content:""}.e-rptdesigner-toolbar-vertical:before{content:""}.e-rptdesigner-toolbar-horizontal:before{content:""}.e-rptdesigner-toolbar-spacinghorizontal:before{content:""}.e-rptdesigner-toolbar-spacingvertical:before{content:""}.e-rptdesigner-toolbar-sizeToControl:before{content:""}.e-rptdesigner-toolbar-sizeToWidth:before{content:""}.e-rptdesigner-toolbar-sizeToHeight:before{content:""}.e-rptdesigner-toolbar-aligntogrid:before{content:""}.e-rptdesigner-toolbar-sizetogrid:before{content:""}.e-rptdesigner-toolbar-snaptoshape:before{content:""}.e-rptdesigner-toolbar-fullscreen:before{content:""}.e-reportdesigner-variables:before{content:""}.e-reportdesigner-widget-basicshapes:before{content:""}.e-reportdesigner-widget-circle:before{content:""}.e-reportdesigner-widget-gauge .path1:before{content:""}.e-reportdesigner-widget-gauge .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-image .path1:before{content:""}.e-reportdesigner-widget-image .path2:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path1:before{content:""}.e-rptdesigner-widget-databar .path2:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path3:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path4:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path5:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path6:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path7:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path8:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path9:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path10:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path11:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path12:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path13:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path1:before{content:""}.e-rptdesigner-widget-sparkline .path2:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path3:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path4:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path5:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path6:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path7:before{content:"";margin-left:-1em}.e-reportdesigner-widget-line:before{content:""}.e-reportdesigner-widget-map .path1:before{content:""}.e-reportdesigner-widget-map .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-maps:before{content:""}.e-reportdesigner-widget-rectangle:before{content:""}.e-reportdesigner-widget-textbox:before{content:""}.e-reportdesigner-widget-custom:before{content:""}.e-reportdesigner-area-chart .path1:before{content:"";opacity:.5}.e-reportdesigner-area-chart .path2:before{content:"";margin-left:-1em;opacity:.7}.e-reportdesigner-area-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-bar-chart .path1:before{content:""}.e-reportdesigner-bar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-bar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-bar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-bubble-chart .path1:before{content:""}.e-reportdesigner-bubble-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-bubble-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-bubble-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-candle-stick-chart .path1:before{content:""}.e-reportdesigner-candle-stick-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-candle-stick-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-candle-stick-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-column-chart .path1:before{content:""}.e-reportdesigner-column-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-column-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-column-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-doughnut-chart .path1:before{content:""}.e-reportdesigner-doughnut-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-error-bar-chart .path1:before{content:""}.e-reportdesigner-error-bar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-error-bar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-error-bar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-exploded-pie-chart .path1:before{content:""}.e-reportdesigner-exploded-pie-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-funnel-chart .path1:before{content:""}.e-reportdesigner-funnel-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-funnel-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-funnel-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-line-chart:before{content:""}.e-reportdesigner-line-with-markers-chart .path1:before{content:""}.e-reportdesigner-line-with-markers-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-pie-chart .path1:before{content:""}.e-reportdesigner-pie-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-pie-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path1:before{content:""}.e-reportdesigner-polar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-pyramid-chart .path1:before{content:""}.e-reportdesigner-pyramid-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-pyramid-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path1:before{content:""}.e-reportdesigner-radar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path8:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path9:before{content:"";margin-left:-1em}.e-reportdesigner-range-chart .path1:before{content:""}.e-reportdesigner-range-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-range-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-range-column-chart .path1:before{content:""}.e-reportdesigner-range-column-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-range-column-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-range-column-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path1:before{content:""}.e-reportdesigner-scatter-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-area-chart .path1:before{content:""}.e-reportdesigner-smooth-area-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-line-chart:before{content:""}.e-reportdesigner-smooth-line-with-markers-chart .path1:before{content:""}.e-reportdesigner-smooth-line-with-markers-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-line-with-markers-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-line-with-markers-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart .path1:before{content:""}.e-reportdesigner-stacked-area-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart-100 .path1:before{content:""}.e-reportdesigner-stacked-area-chart-100 .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart-100 .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path1:before{content:"";opacity:.35}.e-reportdesigner-stacked-bar-chart .path2:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-bar-chart .path3:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-bar-chart .path4:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-bar-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path1:before{content:""}.e-reportdesigner-stacked-bar-chart-100 .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path4:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path1:before{content:"";opacity:.35}.e-reportdesigner-stacked-column-chart .path2:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-column-chart .path3:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-column-chart .path4:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-column-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path1:before{content:""}.e-reportdesigner-stacked-column-chart-100 .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path4:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stepped-line-chart .path1:before{content:""}.e-reportdesigner-stepped-line-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stock-range-chart:before{content:""}.e-rptdesigner-dataset-boolean:before{content:""}.e-reportdesigner-dataset-bottomarrow:before{content:""}.e-reportdesigner-dataset-char:before{content:""}.e-qrydesigner-table-column-deselect:before{content:""}.e-qrydesigner-table-column-select:before{content:""}.e-rptdesigner-dataset-datetime:before{content:""}.e-reportdesigner-dataset-folder:before{content:""}.e-rptdesigner-dataset-misc:before{content:""}.e-rptdesigner-dataset-number:before{content:""}.e-reportdesigner-dataset-openfolder:before{content:""}.e-reportdesigner-dataset-schema:before{content:""}.e-reportdesigner-dataset-schema-column:before{content:""}.e-rptdesigner-dataset-string:before{content:""}.e-reportdesigner-dataset-table:before{content:""}.e-reportdesigner-dataset-toparrow:before{content:""}.e-rptdesigner-errorinfo:before{content:""}.e-rptdesigner-exp:before{content:""}.e-reportdesigner-backarrow:before{content:""}.e-reportdesigner-dataset-foreignkey:before{content:""}.e-reportdesigner-dataset-primarykey:before{content:""}.e-reportdesigner-dataset-procedure:before{content:""}.e-reportdesigner-dataset-procedure-table:before{content:""}.e-rptdesigner-datasourcelist:before{content:""}.e-reportdesigner-dropdown:before{content:""}.e-reportdesigner-horizontal-browse:before{content:""}.e-reportdesigner-rightarrow:before{content:""}.e-rptdesigner-toolbar-gridlines:before{content:""}.e-rptdesigner-toolbar-grouping:before{content:""}.e-reportdesigner-toolbar-ruler:before{content:""}.e-reportdesigner-toolbar-snapgridlines:before{content:""}.e-reportdesigner-upload:before{content:""}.e-reportdesigner-vertical-browse:before{content:""}.e-reportdesigner-widget-subreport:before{content:""}.e-reportdesigner-widget-indicator .path1:before{content:""}.e-reportdesigner-widget-indicator .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-indicator .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-indicator .path4:before{content:"";margin-left:-1em}.e-reportdesigner-widget-radialgauge .path1:before{content:""}.e-reportdesigner-widget-radialgauge .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-radialgauge .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-lineargauge .path1:before{content:""}.e-reportdesigner-widget-lineargauge .path2:before{content:"";margin-left:-1em}.e-reportdesigner-browse-folder .path1:before{content:""}.e-reportdesigner-browse-folder .path2:before{content:"";margin-left:-1em}.e-reportdesigner-browse-folder .path3:before{content:"";margin-left:-1em}.e-reportdesigner-browse-folder .path4:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path1:before{content:""}.e-reportdesigner-browse-reportfile .path2:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path3:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path4:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path5:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path6:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path7:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path8:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path9:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path10:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path11:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path12:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path13:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path14:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path15:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path16:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path17:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path18:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path19:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path20:before{content:"";margin-left:-1em}.e-reportdesigner-imagemanager-add:before{content:""}.e-reportdesigner-imagemanager-delete:before{content:""}.e-reportdesigner-parameter-edit:before{content:""}.e-reportdesigner-parameter-save:before{content:""}.e-rptdesigner-selection-drag .path1:before{content:""}.e-rptdesigner-selection-drag .path2:before{content:"";margin-left:-1em}.e-rptdesigner-selection-move .path1:before{content:""}.e-rptdesigner-selection-move .path2:before{content:"";margin-left:-1em}.e-rptdesigner-selection-move .path3:before{content:"";margin-left:-1em}.e-reportdesigner-browse-backward:before{content:""}.e-reportdesigner-browse-forward:before{content:""}.e-reportdesigner-browse-reload:before{content:""}.e-reportdesigner-datasource-odata:before{content:""}.e-reportdesigner-datasource-postgresql:before{content:""}.e-reportdesigner-datasource-mysql:before{content:""}.e-reportdesigner-datasource-json:before{content:""}.e-reportdesigner-datasource-csv:before{content:""}.e-reportdesigner-datasource-excel:before{content:""}.e-reportdesigner-datasource-mariadb:before{content:""}.e-reportdesigner-datasource-memsql:before{content:""}.e-reportdesigner-datasource-azuresqldw:before{content:""}.e-reportdesigner-datasource-cdata:before{content:""}.e-reportdesigner-datasource-vertica:before{content:""}.e-reportdesigner-datasource-redshift .path1:before{content:"";margin-right:0}.e-reportdesigner-datasource-redshift .path2:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path3:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path4:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path5:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path6:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-aurora:before{content:""}.e-reportdesigner-datasource-amazonrds .path1:before{content:"";margin-right:-1em}.e-reportdesigner-datasource-amazonrds .path2:before{content:"";margin-left:0}.e-reportdesigner-datasource-amazonrds .path3:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-amazonrds .path4:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-amazonrds .path5:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-gcsql:before{content:""}.e-reportdesigner-datasource-snowflake:before{content:""}.e-reportdesigner-datasource-ssas:before{content:""}.e-reportdesigner-datasource-defaultextesnion:before{content:""}.e-reportdesigner-datasource-webapi:before{content:""}.e-reportdesigner-datasource-shared:before{content:""}.e-reportdesigner-alertinfo:before{content:""}.e-rptdesigner-toolbar-footer:before{content:""}.e-rptdesigner-toolbar-header:before{content:""}.e-reportdesigner-selection-settings .path1:before{content:""}.e-reportdesigner-selection-settings .path2:before{content:""}.e-reportdesigner-selection-settings .path3:before{content:""}.e-reportdesigner-selection-settings .path4:before{content:""}.e-reportdesigner-selection-settings .path5:before{content:""}.e-reportdesigner-selection-settings .path6:before{content:""}.e-reportdesigner-configuration-settings:before{content:""}.e-reportdesigner-minus:before{content:""}.e-reportdesigner-plus:before{content:""}.e-reportdesigner-alert-msg .path1:before{content:""}.e-reportdesigner-alert-msg .path2:before{content:"";margin-left:-1em}.e-reportdesigner-alert-msg .path3:before{content:"";margin-left:-1em}.e-reportdesigner-alert-msg .path4:before{content:"";margin-left:-1em}.e-reportdesigner-alert-info .path1:before{content:""}.e-reportdesigner-alert-info .path2:before{content:"";margin-left:-1em}.e-reportdesigner-alert-info .path3:before{content:"";margin-left:-1em}.e-rptdesigner-data-expand:before{content:""}.e-rptdesigner-data-collapse:before{content:""}.e-rptdesigner-group-colIcon:before{content:""}.e-rptdesigner-group-rowIcon:before{content:""}.e-reportdesigner-widget-tablix .path1:before{content:""}.e-reportdesigner-widget-tablix .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path4:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path5:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path6:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path7:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path8:before{content:"";margin-left:-1em}.e-rptdesigner-group-detailIcon:before{content:""}.e-rptdesigner-group-icon:before{content:""}.e-rptdesigner-grouping-minimize:before{content:""}.e-rptdesigner-grouping-maximize:before{content:""}.e-rptdesigner-rowColumn-advIconSpan:before{content:""}.e-rptdesigner-textbox-editIcon:before{content:""}.e-reportdesigner-widget-grid:before{content:""}.e-reportdesigner-widget-list .path1:before{content:""}.e-reportdesigner-widget-list .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-list .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-list .path4:before{content:"";margin-left:-1em}.e-reportdesigner-toolbar-view:before{content:""}.e-designer-viewCheck:before{content:"";float:left;padding-left:3px;padding-top:1px;visibility:hidden}.e-rptdesigner-dataconfig,.e-rptdesigner-dataconfig-item,.e-rptdesigner-dataconfig-header,.e-rptdesigner-toolbarcontainer,.e-rptdesigner-toolbarcontainer .e-rptdesigner-preview-div,.e-reportdesigner-default-image,.e-rptdesigner-itempanel-parent,.e-rptdesigner-itempanel-autocomplete,.e-rptdesigner-itempanel-container,.e-rptdesigner-dspanel-data,.e-rptdesigner-dataconfig-expandablepanel,.e-rptdesigner-headertag,.e-reportdesigner-designPanel,.e-rptdesigner-dpbodytag,.e-rptdesigner-surfacecontainer,.e-rptdesigner-alertbox .e-footerbar,.e-rptdesigner-dialog .e-footerbar,.e-rptdesigner-ejdialog .e-footerbar,.e-rptdesigner-rowColumn-elementDiv,.e-rptdesigner-rowColumn-containerTable,.e-rptdesigner-datafield-search-box,.e-rptdesigner-datafield-search-container{-webkit-box-sizing:border-box !important;-moz-box-sizing:border-box !important;box-sizing:border-box !important}.e-querydesigner .e-widgeticon span,.e-querydesigner .e-widgeticons span,.e-querydesigner .e-toolbarfonticonbasic span,.e-reportdesigner .e-widgeticon span,.e-reportdesigner .e-widgeticons span,.e-rptdesigner-dialog .e-designer-tile span,.e-reportdesigner .e-toolbarfonticonbasic span,.e-rptdesigner-alertbox .e-widget-content .e-widgeticon span,.e-rptdesigner-new-btn,.e-designer-ejwidgets-updown,.e-reportdesigner-alertinfo,.e-rptdesigner .e-rptviewer-updown,.e-designer-ejwidgets-colorpicker,.e-rptdesigner-ejwidgets-splitbtn,.e-designer-ejwidgets-dataConfig,.e-toolbarfonticonbasic,.e-rptdesigner-acrdn-nav-icon,.e-designer-panel-icon,.e-designer-tile,.e-reportdesigner .e-widgeticon,.e-query-selection,.e-toolbarPreview,.e-rptdesigner-headericon,.e-designer-switchind-icon,.e-reportdesigner .e-widgeticons,.e-reportdesigner-double-drag,.e-rptdesigner-dataconfig-icon,.e-query-datatype,.e-dataset-widgeticon,.e-rptdesigner-error-icon,.e-designer-content-icon,.e-rptdesigner-browse-icon,.e-designer-ejwidgets:not(.e-rptdesigner-filter) .e-icon.e-search:before,.e-reportdesigner-imagemanager-add:before,.e-reportdesigner-imagemanager-delete:before,.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-up:before,.e-rptdesigner-ejwidgets-splitbtn .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-colorpicker .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-colorpicker .e-drp-btn .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets .e-input-group-icon.e-ddl-icon:before,.e-designer-ejwidgets-dataConfig .e-icon.e-arrow-sans-down:before,.e-rptdesigner-new-btn .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-drpdown .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-up:before,.e-reportdesigner .e-toolbarsmallfonticonsettings,.e-reportdesigner .e-reporticons,.e-rptdesigner-codeinfo,.e-designer-viewCheckIcon{font-family:'ejreportdesigner' !important}.e-toolbarfonticonbasic,.e-rptdesigner-acrdn-nav-icon,.e-designer-panel-icon,.e-designer-tile,.e-widgeticon,.e-query-selection,.e-query-datatype,.e-query-treeview,.e-rptdesigner-headericon,.e-reportdesigner-double-drag,.e-widgeticons,.e-imagemanagericon,.e-rptdesigner-dataconfig-icon,.e-toolbarPreview,.e-dataset-widgeticon,.e-rptdesigner-error-icon,.e-reportdesigner-alertinfo,.e-designer-content-icon,.e-toolbarsmallfonticonsettings,.e-reportdesigner .e-reporticons{speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;cursor:default;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.e-rptdesigner-txtoverflow,.e-designer-newparam-btn,.e-rptdesigner-dataset-cancelbtn,.e-designer-li-text,.e-reportdesigner-treeText,.e-rptdesigner-param-text,.e-rptdesigner-report-caption,.e-designer-param-tab,.e-designer-codemodule-tab,.e-rptdesigner-paramdrag-label,.e-rptdesigner-da-dragLabel,.e-rptdesigner-da-dataLable,.e-rptdesigner-drag-div,.e-rptdesigner-drag-label,.e-designer-setparam-btn,.e-rptdesigner-format-prevwChild,.e-rptdesigner-headerRowSpan,.e-rptdesigner-headerColumn,.e-rptdesigner-rowColumn-fieldNameDiv,.e-rptdesigner-prop-dataAlert-caption,.e-rptdesigner-okbtn,.e-rptdesigner-cancelbtn{overflow:hidden !important;white-space:nowrap !important;-ms-text-overflow:ellipsis !important;-o-text-overflow:ellipsis !important;text-overflow:ellipsis !important}.e-designer-viewCheckIcon{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:16px}.e-designer-content-icon,.e-rptdesigner-data-icon,.e-designer-tile,.e-query-datatype,.e-query-selection,.e-query-treeview{cursor:pointer}.e-rptdesigner-new-btn-footer{height:1px !important}.e-designer-textarea,.e-designer-textbox{padding-bottom:4px;padding-top:4px;padding-right:4px}.e-rptdesigner-toolbarcontainer,.e-rptdesigner-ejdialog,.e-rptdesigner-dialog,.e-rptdesigner-alertbox,.e-reportdesigner .e-userselect *:not(input):not(textarea),.e-reportdesigner .e-data-table *:not(input):not(textarea){-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.e-reportdesigner .content-iframe-body,.e-reportdesigner .content-iframe-body *{-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;user-select:text !important}.e-reportdesigner .e-reportdesigner-designer-configuration .e-atc,.e-reportdesigner .e-numeric,.e-reportdesigner .e-percent,.e-reportdesigner .e-currency,.e-reportdesigner .e-mask,.e-reportdesigner .e-ddl{height:28px}.e-rptdesigner-back-btn{margin:2px 7px 2px 2px !important}.e-rptdesigner-button,.e-rptdesigner-okbtn,.e-rptdesigner-cancelbtn{border-radius:4px !important}.e-rptdesigner-connect-btn{margin:2px 2px 2px 7px !important}.e-rptdesigner-treeIcon{float:left;vertical-align:middle;margin-top:5px}.e-rptdesigner-cursor,.e-reportdesigner-dataset-colum,.e-designer-title-label,.e-rptdesigner-param-text{cursor:default !important}.e-designer-newparam-btn,.e-designer-newds-btn,.e-designer-dsconnect-btn{line-height:normal !important;height:29px !important;width:154px !important}.e-rptdesigner-new-btn{line-height:normal !important;height:29px !important;width:86px !important}.e-designer-newparam-btn .e-icon,.e-designer-newds-btn .e-icon,.e-designer-alert-okbtn .e-icon,.e-rptdesigner-alert-cancelbtn .e-icon,.e-qrydesigner-addbtn .e-icon{padding:4px !important}.e-rptdesigner-new-btn .e-icon{padding:3px !important}.e-designer-content{line-height:1}.e-designer-content-label,.e-designer-content-label .e-input,.e-designer-content-label .e-corner{-moz-border-radius:3px !important;-webkit-border-radius:3px !important;border-radius:3px !important}.e-rptdesigner-datasource-list,.e-reportdesigner-param-list{padding:0}.e-rptdesigner-param-text{display:inline-block !important;line-height:normal !important}.e-rptdesigner-param-text{vertical-align:middle !important}.e-designer-li-text{vertical-align:top !important;display:inline-block !important}.e-rptdesigner-header{line-height:1;letter-spacing:.5px}.e-rptdesigner-format-input,.e-rptdesigner-link-input{padding-top:1px}.e-rptdesigner-format-input,.e-rptdesigner-link-input{width:232px !important}.e-rptdesigner-format-btn,.e-rptdesigner-browse-btn{cursor:pointer;height:30px;width:24px}.e-rptdesigner-browse-icon{display:table-cell;vertical-align:middle;text-align:center}.e-rptdesigner-browse-icon:not(.e-rptdesigner-browse-rpt){width:24px;height:30px}.e-rptdesigner-browse-icon.e-rptdesigner-browse-rpt{width:20px;height:26px}.e-widgeticon-drag{font-size:45px !important;opacity:.6}.e-rptdesigner-empty-msg{font-size:11px;text-align:center;vertical-align:top;padding-top:20px}.e-rptdesigner-box-sizing,.e-rptdesigner-pg-tag{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.e-reportdesigner .e-rptdesigner-dataset-container .e-textbox{padding-right:1em !important}.e-reportdesigner .e-rptdesigner-dataset-container .e-textarea{padding-right:1.25em !important}.e-rptdesigner-data-new,.e-rptdesigner-data-shared{width:100% !important}.e-rptdesigner-data-new .e-designer-importdata-btn{margin-left:0 !important}.e-rptdesigner-data-shared .e-designer-importdata-btn{margin-right:0 !important}.e-rptdesigner.e-toolbarTooltip{min-width:auto}.e-rptdesigner.e-toolbarTooltip .e-tipContainer .e-tipcontent{padding:2px 8px 2px 8px}.e-reportdesigner-reportitem-resizeicon{position:absolute;background-image:url('common-images/reportdesigner/resizeicon.png');float:left;display:block;width:8px;height:8px;background-position:-5px -5px}.e-reportdesigner-reportitem-customicon.e-moveicon{position:absolute;background-image:url('common-images/reportdesigner/moveicon.png');-ms-background-size:cover;background-size:cover;float:left;display:block;width:15px;height:15px;cursor:move}.e-reportdesigner-reportitem-customicon.e-settingsicon{position:absolute;background-image:url('common-images/reportdesigner/settingicon.png');-ms-background-size:cover;background-size:cover;float:left;display:block;width:15px;height:15px;cursor:default}.e-rptdesigner-dataassign-search input:focus,.e-reportdesigner-li,.e-rptdesigner-alert-anchor,.e-reportdesigner .content-iframe-body:focus,.e-rptdesigner-tab-focus,.e-reportdesigner .e-button.e-btn,.e-rptdesigner-dialog .e-button.e-btn{outline:0 none !important}.e-reportdesigner .content-iframe-body br{display:none !important}.e-reportdesigner .content-iframe-body-rtl{direction:rtl;text-align:right}.e-reportdesigner .content-iframe-body span{height:auto;white-space:pre-wrap}.e-reportdesigner-default-image{background-image:url('common-images/reportdesigner/defaultimage.png');background-repeat:no-repeat;background-position-x:center;background-position-y:center;background-color:#fff}.e-reportdesigner-image{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.e-rptdesigner-toolbarcontainer .e-rel-position{cursor:default !important}.e-rptdesigner-toolbarcontainer .e-rel-position{margin-top:8.5px}.e-rptdesigner-toolbarcontainer .e-icon.e-toolbar-res-arrow{padding:0 !important}.e-rptdesigner-previewbtn{width:120px !important;padding-right:13px !important}.e-rptdesigner-exp{margin-top:2px !important}.e-querydesigner-dsname,.e-querydesigner-dataset-name{padding:2px 12px !important}.e-querydesigner-dsname,.e-querydesigner-dataset-name{height:33px !important}.e-rptdesigner-toolbarcontainer{vertical-align:middle;cursor:default;border:0 solid}.e-rptdesigner-toolbarcontainer{-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important}.e-rptdesigner-toolbarcontainer:not(.e-responsive-toolbar){height:48px !important}.e-rptdesigner-toolbarul-begin{padding-left:5px}.e-rptdesigner-toolbarul label,.e-querydesigner-toolbarul label{font-weight:inherit !important}.e-rptdesigner-toolbarul{padding-left:3.5px}.e-rptdesigner-toolbarul{height:34px;padding-right:4px}.e-rptdesigner-toolbarul{margin-right:4px !important;margin-top:5.5px !important;margin-bottom:5.5px !important}.e-rptdesigner-toolbarli{border-width:0 !important;float:left}.e-rptdesigner-toolbarli{width:21px;height:21px;padding:7px !important}.e-rptdesigner-toolbarli.e-designer-toolbar-align{display:block}.e-rptdesigner-toolbarli.e-designer-toolbar-align .e-rptdesigner-toolbar-icon{width:100%;height:100%;display:inline-block !important;text-align:center !important;position:relative !important}.e-rptdesigner-toolbarli.e-designer-toolbar-align .e-rptdesigner-toolbar-icon{margin-top:3px}.e-rptdesigner-toolbar-save::before{margin:0 !important}.e-rptdesigner-splitbtn-span{display:inline-table}.e-rptdesigner-splitbtn-span{margin:0 !important}.e-rptdesigner-splitbtn{padding-right:12px !important}.e-rptdesigner-splitter-div{position:absolute;height:100%}.e-rptdesigner-splitter-icon{padding-top:8px !important}.e-rptdesigner-splitter-icon{padding-top:4px !important}.e-rptdesigner-preview-div{float:right}.e-rptdesigner-preview-div{width:130px}.e-rptdesigner-preview{float:right;margin-right:5px;margin-top:4.5px;margin-bottom:5.5px}.e-rptdesigner-toolbarul-preview{float:right !important}.e-rptdesigner-toolbar-zoom{text-align:center;float:left;margin:9px 6px;width:30px}.e-rptdesigner-toolbar-icon{display:block;height:20px;width:20px;background-repeat:no-repeat;margin-left:0;margin-top:0}.e-rptdesigner-toolbarcontainer .e-toolbarPreview{display:table-cell;padding:3px;vertical-align:middle}.e-rptdesigner-ejdesigner{margin:5.5px}.e-reportdesigner .e-toolbarClose{font-size:9px !important;padding-top:4.1px !important}.e-designer-label{line-height:1;margin-bottom:0 !important}.e-rptdesigner-zoomout-li{margin-right:0 !important}.e-designer-menuItem-uncheck::before{visibility:hidden !important}.e-designer-menuItem-check::before{visibility:visible !important}.e-rptdesigner-btnText-div{display:table;width:50px}.e-rptdesigner-btnText{display:table-cell;vertical-align:middle;text-align:center;font-size:12px;font-weight:normal !important}.e-reportdesigner-atc-boxshadow{box-shadow:none !important}.e-rptdesigner-itempanel-parent{float:left}.e-rptdesigner-itempanel-autocomplete{float:left;margin:5px}.e-rptdesigner-itempanel-autocomplete{border-radius:0}.e-rptdesigner-itempanel-textbox,.e-rptdesigner-datasearch-textbox{text-align:left;float:left;height:24px !important;border-radius:4px;margin-left:1px !important;margin-top:1px !important}.e-rptdesigner-itempanel-searcharea{margin-top:8px !important;float:right}.e-rptdesigner-itempanel-emptymsgdiv{width:100%;height:100%}.e-rptdesigner-itempanel-elementdiv{width:100%}.e-rptdesigner-itempanel-headerText{float:left;margin-left:14px;margin-top:6px;text-overflow:ellipsis;overflow:hidden;width:95px;white-space:nowrap}.e-rptdesigner-itempanel-expandcollapseicon{float:right;position:relative;top:1px}.e-rptdesigner-itempanel-container{height:75px;width:100%}.e-rptdesigner-itempanel-itemdiv{width:79.5px;height:74px;cursor:default;float:left;vertical-align:middle;text-align:center;box-sizing:border-box !important}.e-rptdesigner-itempanel-textitem{width:70px;height:30px;margin-top:4px;overflow:hidden;text-overflow:ellipsis;cursor:default}.e-rptdesigner-itempanel-dragelements{width:74.5px;height:75px;cursor:default;float:left;vertical-align:middle;text-align:center}.e-itempanel-header:hover{cursor:pointer !important}.e-rptdesigner-item-info-container .e-rptdesigner-item-header,.e-rptdesigner-item-info-container .e-rptdesigner-datareq-header,.e-rptdesigner-item-info-container .e-rptdesigner-item-desc{margin-bottom:5px}.e-rptdesigner-item-info-container .e-rptdesigner-item-header,.e-rptdesigner-item-info-container .e-rptdesigner-datareq-header{font-weight:bold}.e-reportdesigner .e-rptdesigner-expandcollapse{min-width:25px;min-height:25px;position:absolute;border-radius:50%;z-index:10;display:inline-block;padding:0;margin:6.5px 0}.e-reportdesigner .e-rptdesigner-expandcollapse-icon{cursor:pointer;display:block;width:25px;height:25px;line-height:19px}.e-itempanel-expandcollapse-tooltip .e-tipContainer .e-tipcontent{padding-top:4px}.e-reportdesigner .e-rptdesigner-itempanel-expand:before{content:""}.e-reportdesigner .e-rptdesigner-itempanel-collapse:before{content:""}.e-rptdesigner-dsicon{margin:1px 9px !important}.e-rptdesigner-ds-drag{float:right;margin-right:5px;margin-top:1.5px}.e-rptdesigner-dstitle-text{margin-top:2px;height:15px}.e-rptdesigner-dssize,.e-rptdesigner-dstype-list,.e-rptdesigner-dsgroup{width:100%;height:100%}.e-rptdesigner-dspanel{width:100%;overflow:hidden}.e-designer-hint-newdatasource{background-image:url('common-images/reportdesigner/datasource.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-dspanel-footer{overflow:hidden;margin:0 auto;text-align:center}.e-rptdesigner-dspanel-separator{margin:8px;margin-bottom:12px}.e-rptdesigner-dsconfig-separator{margin:8px;margin-bottom:4px}.e-rptdesigner-dspanel-header{overflow:hidden;padding:8.5px 7px 7px 0;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.e-rptdesigner-dsconfig{padding:4px 5px;margin:3px 6px;float:left}.e-rptdesigner-dspanel-menu{float:right;padding:7px 4px}.e-rptdesigner-dspanel-list{border-top-width:1px;padding:0 3px}.e-rptdesigner-dspanel-ullist{width:auto;height:auto}.e-designer-dsconnect-btn{white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis}.e-designer-dslist-label{padding:0 10px;display:inline-block}.e-rptdesigner-dstype-list{padding:10px 0}.e-rptdesigner-dspanel-data{width:100%;float:left;clear:none}.e-rptdesigner-dspanel-new{padding:10px 10px}.e-rptdesigner-dspanel-exist{padding:0 10px}.e-rptdesigner-dspanel-existlabel{font-size:13px;font-weight:600}.e-rptdesigner-dspanel-radio{-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.e-reportdesigner .e-radiobtn-wrap{line-height:normal !important}.e-rptdesigner-dsheader{overflow:auto;margin-left:6px}.e-rptdesigner-dsconfig-table{width:100%;margin-left:5px}.e-rptdesigner-dsconfig-button{height:100%;display:block;overflow:hidden;float:left}.e-rptdesigner-dsgroup{padding:10px 0 10px 9px;margin:0 auto;display:inline-block}.e-rptdesigner-dsanchor{padding:14px 0 !important}.e-reportdesigner-datasourceTypes{border:1px solid transparent;background-color:transparent;float:left;padding:6px;display:table-cell;text-align:center;line-height:normal;vertical-align:middle;height:90px;width:95px}.e-designer-switchind-icon{margin-left:5px}.e-designer-constr-textarea{padding-bottom:5px;padding-top:5px;padding-right:5px;overflow-y:auto !important;resize:vertical}.e-designer-dsconfig-table{margin-left:5px;display:table !important}.e-designer-existing-tbl{display:table !important}.e-designer-dsconfig-table,.e-designer-dsconfig-table table,.e-designer-exp-table,.e-rptdesigner-dsheader table,.e-rptdesigner-table-dialog,.e-rptdesigner-table-dialog table,.e-designer-param-table,.e-designer-preview-data-table,.e-designer-param-table table,.e-designer-existing-tbl,.e-designer-sharedconfig-table,.e-designer-sharedconfig-table table,.e-rptdesigner-designbutton .e-btn-span,.e-rptdesigner-rowColumn-headerTable,.e-rptdesigner-rowColumn-containerTable{border-spacing:2px !important;border-collapse:separate !important}.e-rptdesigner-btn-secondary{box-sizing:border-box;cursor:pointer;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;letter-spacing:.3px;transition:all .1s linear;height:26px !important;margin-left:-54px !important}.e-rptdesigner-btn-secondary{height:25px !important;margin-left:-53px !important}.e-rptdesigner-datasource-ellipses{display:block;margin-left:auto;margin-right:auto;overflow:hidden;text-overflow:ellipsis}.e-rptdesigner-dsdrag-icon{display:inline-block;padding:1.5px 0 1.5px 9px;float:left}.e-rptdesigner-connection-disclaimer-msg{float:left;font-size:12px;margin:2px 0 2px 4px;cursor:pointer;text-decoration:underline}.e-rptdesigner-connection-disclaimer-text{font-size:12px;margin:2px 0 2px 12px;text-align:left;float:left}.e-rptdesigner-dataconfig-item{padding:7.5px;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer !important}.e-rptdesigner-dataconfig-expandablepanel{width:463px;height:100%;overflow:hidden;float:left}.e-rptdesigner-dataconfig-arrow{height:20px !important;width:10px !important}.e-rptdesigner-dataconfig-arrow{top:3px !important}.e-rptdesigner-hint-nodata{background-image:url('common-images/reportdesigner/nodata.png');background-position:center;background-repeat:no-repeat;background-size:contain;height:60px}.e-rptdesigner-dataConfigAlertContainer{width:464px;vertical-align:middle;overflow:hidden;display:none}.e-rptdesigner-alertMsg{text-align:center;padding-bottom:20px}.e-rptdesigner-data-collapse,.e-rptdesigner-data-expand{display:block !important;-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important;font-size:9px !important;padding:4px 7px}.e-designer-property-tooltip{height:auto;width:auto;position:absolute;z-index:10008}.e-rptdesigner-prop-border{width:86px !important}.e-rptdesigner-prop-border input{position:absolute}.e-rptdesigner-colorpicker{width:50px !important}.e-rptdesigner-prop-margin{margin-left:5px !important}.e-rptdesigner-error-indicator{float:right;padding:2px 19px}.e-rptdesigner-surfacecontainer{border-left-width:1px;float:left}.e-rptdesigner-dpOuterline{margin:10px;position:relative}.e-rptdesigner-horizonline{margin:0;position:absolute}.e-rptdesigner-headertag{position:relative}.e-reportdesigner-designArea{float:left;box-sizing:border-box !important;-webkit-box-sizing:border-box !important;-moz-box-sizing:border-box !important}.e-reportdesigner-designPanel{width:100%;overflow:auto;border:0 solid;border-left-width:1px !important}.e-rptdesigner-pg-tag{width:40px;height:16px;max-width:40px;z-index:10;position:absolute;padding:2px 12px}.e-rptdesigner-headerwatermark,.e-rptdesigner-footerwatermark{border-top-right-radius:10px}.e-rptdesigner-headerwatermark{bottom:0}.e-rptdesigner-dpbodytag{position:relative}.e-rptdesigner-footerwatermark{top:0}.e-rptdesigner-designselector{position:absolute;z-index:1010;pointer-events:none}.e-rptdesigner-dpresizer{z-index:1000;position:relative}.e-rptdesigner-dpxyresizer{position:relative;border-width:0}.e-rptdesigner-dpadorner-div{position:absolute;box-sizing:content-box !important;-moz-box-sizing:content-box !important;-webkit-box-sizing:content-box !important}.e-designer-areaborder{width:100%;height:100%;left:0 !important;top:0 !important;display:block;position:absolute !important;pointer-events:none;box-sizing:border-box !important;-moz-box-sizing:border-box !important;-webkit-box-sizing:border-box !important}.e-designer-licensetag{pointer-events:none}.e-designer-licensetag-text{z-index:10;top:50%;left:50%;-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);vertical-align:middle;overflow:hidden;overflow-wrap:break-word;text-align:center}.e-rptdesigner-dataassign-sep,.e-rptdesigner-da-searchtxtbx,.e-rptdesigner-da-dragicon,.e-rptdesigner-da-dragLabel{float:left}.e-rptdesigner-da-searchroot,.e-rptdesigner-da-searchicon,.e-rptdesigner-da-settingsicon,.e-rptdesigner-da-closeicon{float:right}.e-rptdesigner-dataassign input.e-input{margin-top:2px;height:15px;border-radius:5px}.e-rptdesigner-dataassign-roottag{overflow:hidden}.e-rptdesigner-dataassign-sep{width:1px;border:0 Solid;margin-top:-16px;margin-left:9px}.e-rptdesigner-da-searchroot{margin:3px}.e-rptdesigner-da-searchtxtbx{border-radius:5px;padding-left:5px}.e-reportdesigner-contextmenu-icon-align{padding:2px 5px 5px 5px !important}.e-reportdesigner-viewmenu-icon-align{margin:1px 4px !important}.e-reportdesigner-search.e-rptdesigner-da-searchicon{margin-top:-14px;font-size:10px !important}.e-reportdesigner-close.e-rptdesigner-da-searchicon{margin-top:-14px;font-size:9px !important}.e-rptdesigner-da-dataLable{margin:3px;margin-bottom:0}.e-rptdesigner-da-categoryList{margin:3px;margin-top:5px;border-radius:5px;overflow:auto}.e-rptdesigner-da-emptyLabel{margin:6px}.e-rptdesigner-da-dragDiv{margin:6px;border-radius:2px}.e-rptdesigner-da-dragicon{margin-right:5px;margin-left:5px;margin-top:7.5px}.e-rptdesigner-da-dragLabel{margin-top:5px}.e-rptdesigner-da-closeicon{margin-right:5px;margin-top:7px}.e-rptdesigner-da-settingsicon{margin-right:5px;margin-top:5.5px;margin-left:5px}.e-rptdesigner-da-dragLabel,.e-rptdesigner-da-closeicon,.e-rptdesigner-da-settingsicon{vertical-align:middle}.e-rptdesigner-format-bodyDiv,.e-rptdesigner-format-table,.e-rptdesigner-formattext-table{width:100%}.e-rptdesigner-format-bodyDiv{padding-top:6px;border-radius:2px;overflow:auto}.e-rptdesigner-format-headDiv{float:left;padding-left:12px;padding-top:7px}.e-rptdesigner-format-subDiv{float:right;padding-left:13px;padding-top:5px}.e-rptdesigner-format-prevwDiv{margin-left:5px}.e-rptdesigner-format-typeDiv{padding-bottom:4px}.e-rptdesigner-format-prevwChild{text-align:center;vertical-align:middle;padding-left:8px;padding-top:65px}.e-rptdesigner-format-table{padding-bottom:10px}.e-rptdesigner-format-expBtn{cursor:pointer;margin-top:6px}.e-rptdesigner-formattext-table{margin:8px 0}.e-rptdesigner-formattext-row{height:22.5px}.e-rptdesigner-formattext-caption{float:right}.e-reportdesigner-designer-configuration .e-radiobtn-wrap .e-radsmaller,.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap .e-radsmaller{height:11px;width:11px}.e-reportdesigner-designer-configuration .e-chkbox-wrap .e-chkbox-small>span{height:12px;width:12px}.e-reportdesigner-designer-configuration .e-tab .e-header li{letter-spacing:.5px}.e-reportdesigner-designer-configuration .e-tab>.e-header .e-icon{margin-top:-9px}.e-reportdesigner-designer-configuration .e-tab .e-header li a{font-weight:600}.e-reportdesigner-designer-configuration .e-tab .e-active-content{padding:0}.e-reportdesigner-designer-configuration .e-tab.e-js .e-header>.e-bottom-line.e-active,.e-reportdesigner-designer-configuration .e-tab.e-js .e-header>.e-bottom-line.e-active:hover{padding-bottom:0 !important}.e-reportdesigner-designer-configuration .e-tab.e-js>.e-content{border-width:0}.e-reportdesigner-designer-configuration .e-icon{cursor:pointer !important}.e-reportdesigner-designer-configuration .e-tab .e-header .e-margine-top:hover{border-top:0 none !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-icon{font-family:'ejreportdesigner' !important;font-size:17px !important}.e-reportdesigner .e-reportviewer-toolbarcontainer{vertical-align:middle;border:0 solid}.e-reportdesigner .e-reportviewer-toolbarcontainer:not(.e-responsive-toolbar){height:48px !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-toolbarli:not(.e-reportviewer-ejdropdownlist):not(.e-reportviewer-tbpage){margin-left:12px;margin-right:12px !important;width:21px !important;height:21px !important;padding:7px !important;padding-top:10px !important;padding-left:10px !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-toolbarli.e-reportviewer-tbpage,.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-toolbarli.e-reportviewer-ejdropdownlist{background-color:transparent !important;border:0 !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-print:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-export:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-preview:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-pagesetup:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotofirst:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotoprevious:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotonext:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotolast:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-documentmap:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotoparent:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-zoomout:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-zoomin:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-pagefit:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-refresh:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-stop:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-exportsetup:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-parameter:before{content:"" !important}.e-reportdesigner .e-reportviewer .e-reportviewer-icon.e-reportviewer-close{content:"" !important;font-family:'ej-webfont' !important}.e-rptdesigner-linkparam-table{border-spacing:0 !important}.e-rptdesigner-linkparam-container{padding:5px 3px;margin-top:4px;margin-bottom:2px}.e-rptdesigner-linkparam-container-div{padding:4px 8px}.e-rptdesigner-linkparam-padding{padding-left:10px}.e-rptdesigner-linkparam-errorColum{padding-right:5px}.e-rptdesigner-linkparam-delColum{padding-right:5px;padding-top:5px}.e-rptdesigner-filter-container,.e-rptdesigner-codemodule-container,.e-rptdesigner-datafield-container,.e-rptdesigner-field-container,.e-rptdesigner-customfield-container{padding:4px 0;margin:0 0 4px 0}.e-rptdesigner-filter-div,.e-rptdesigner-codemodule-div,.e-rptdesigner-datafield-div,.e-rptdesigner-field-div,.e-rptdesigner-customfield-div{padding-right:8px;padding-left:8px;padding-top:4px;padding-bottom:4px}.e-rptdesigner-filter-table,.e-rptdesigner-codemodule-table,.e-rptdesigner-datafield-table,.e-rptdesigner-field-table,.e-rptdesigner-customfield-table{padding:3px}.e-rptdesigner-browse-path{margin-top:1px}.e-rptdesigner-browse-content{margin-top:.5px}.e-rptdesigner-input-field-div{padding-bottom:9px}.e-rptdesigner-report-table{margin:8px 0}.e-rptdesigner-enable-chkbx{margin-left:2px}.e-rptdesigner-config-table{margin:8px 0}.e-rptdesigner-report-caption{float:right;margin-right:4px}.e-rptdesigner-report-margin,.e-rptdesigner-report-chckbox{margin-left:4px}.e-rptdesigner-report-url{margin:8px 0}.e-rptdesigner-report-exp{padding-left:10px}.e-reportdesigner-browse-icon{display:inline-block}.e-rptdesigner-report-browseicon{margin-top:6px}.e-designer-setparam-btn{margin-left:4px}.e-rptdesigner-dataset-footer{overflow:hidden !important;margin:0 auto !important;text-align:center !important}.e-rptdesigner-dataset-header{padding:8.5px 7px 7px 0 !important}.e-rptdesigner-dataset-headericon{float:left !important;padding:7px 11px !important}.e-rptdesigner-dataset-headermenu{float:right !important;padding:7px 4px !important}.e-reportdesigner .e-split-add-btn-separator{width:1px;height:25px;padding-right:1px;vertical-align:middle;display:table-cell}.e-reportdesigner .e-rptdesigner-field-add-btn{max-width:36px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.e-split .e-rptdesigner-field-data-button.e-left-btn .e-icon,.e-split .e-rptdesigner-field-data-button.e-left-btn .e-icon:before{height:16px !important;width:16px !important;font-size:16px !important}.e-rptdesigner-dataset-dragicon{display:inline-block;margin:6px 0 !important;float:left;vertical-align:middle}.e-rptdesigner-datasourcelist.e-rptdesigner-drag-iconType{font-size:13px !important;margin:6px 10px !important}.e-rptdesigner-createFileInternalContainer{margin:0 0 20px 15px}.e-rptdesigner-newdialog-parent{padding:2px}.e-rptdesigner-newdialog-container{width:100%;height:80px}.e-rptdesigner-newdialog-labelcell{padding-bottom:5px}.e-rptdesigner-newdialog-labelTxt{font-weight:600}.e-rptdesigner-inputPath{padding-left:8px;border-radius:2px;height:28px;width:295px}.e-rptdesigner-credential-label{padding-bottom:2px}.e-rptdesigner-credential-alert{margin-bottom:2px}.e-rptdesigner-credential-labelAlert{margin-bottom:3px}.e-rptdesigner-credential-connect{margin-left:80px}.e-rptdesigner-alertbox .e-widget-content{padding:24px 20px 24px 15px !important}.e-rptdesigner-alertbox .e-footerbar{padding:9px 20px !important;height:auto !important;display:inline-table !important;width:100%}.e-rptdesigner-alertbox>.e-dialog-scroller,.e-designer-tablix-alert>.e-dialog-scroller{border-bottom:none !important}.e-rptdesigner-alert-iconcont{float:left;vertical-align:middle;text-align:center;line-height:1}.e-rptdesigner-alert-anchor{margin-bottom:18px;margin-top:18px;margin-left:57px;text-decoration:none}.e-rptdesigner-alert-msgcont{word-wrap:break-word;overflow-y:hidden;margin:24px 0 0 5px}.e-reportdesigner .e-rptdesigner-expeditor-ellipses{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.e-reportdesigner .e-rptdesigner-expeditor-button{float:right}.e-reportdesigner .e-reportdesigner-exp-description{padding-left:10px;line-height:1.5 !important}.e-rptdesigner-param-width,.e-rptdesigner-param-rootDiv,.e-rptdesigner-param-listDiv,.e-rptdesigner-param-list-childDiv,.e-rptdesigner-param-headerDiv,.e-rptdesigner-param-bodyDiv,.e-rptdesigner-param-basicPanel,.e-rptdesigner-param-footer,.e-rptdesigner-param-basicDiv,.e-rptdesigner-param-panelDiv,.e-rptdesigner-param-fieldBody{width:100%}.e-rptdesigner-param-footer,.e-rptdesigner-param-panelDiv,.e-rptdesigner-param-header,.e-rptdesigner-param-headerDiv,.e-rptdesigner-param-headermarkup,.e-rptdesigner-param-btnDiv{overflow:hidden}.e-rptdesigner-paramlist-typeicon,.e-rptdesigner-param-headericon,.e-rptdesigner-param-btnDiv,.e-rptdesigner-paramlist-dragicon{float:left}.e-rptdesigner-param-rootDiv,.e-rptdesigner-param-listDiv,.e-rptdesigner-param-list-childDiv{height:100%}.e-rptdesigner-param-listDiv{position:relative}.e-rptdesigner-param-bodyDiv{margin-left:1px}.e-rptdesigner-param-footer{margin:0 auto;text-align:center}.e-rptdesigner-param-header{padding:8.5px 7px 7px 0}.e-rptdesigner-param-headericon{padding:7px 11px}.e-rptdesigner-param-list{border-top-width:1px;padding:0 3px}.e-rptdesigner-param-separator{margin:8px;margin-bottom:12px}.e-rptdesigner-param-newbtn{padding-right:3px}.e-rptdesigner-param-headermarkup{padding:8.5px 7px 7px 0}.e-rptdesigner-param-panelSep{margin:8px;margin-bottom:9px}.e-rptdesigner-param-btn{height:32px !important;width:110px !important}.e-rptdesigner-param-basicDiv{margin-left:7px;margin-bottom:6px}.e-rptdesigner-param-anchorcol{padding-top:10px}.e-rptdesigner-param-anchorlink{margin:3px;margin-top:4px;margin-left:5px}.e-rptdesigner-paramlist-li{padding:0 !important;list-style:none}.e-rptdesigner-paramlist-dragicon{padding:6.5px 5px !important}.e-rptdesigner-paramlist-typeicon{padding:2px 2px !important}.e-rptdesigner-paramlist-typeicon{line-height:normal !important}.e-rptdesigner-paramlist-text{padding-left:5px !important;margin:4px 0 !important}.e-rptdesigner-paramlist-edit{padding-top:5px;margin-right:5px;float:right}.e-designer-hint-newparameter{background-image:url('common-images/reportdesigner/parameter.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-editlayout-container{padding:4px 0}.e-designer-editlayout-label{padding-top:14px;font-size:14px !important;font-weight:600 !important;margin-left:11px}.e-designer-parametername{max-width:174px;text-align:center;display:table-cell;vertical-align:middle;padding-left:4px;padding-right:4px}.e-designer-layout-row{padding:0 5px;display:table}.e-designer-layout-column{left:0;display:table-cell;top:0;width:185px;height:40px;max-width:186px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:hidden}.e-designer-parametername-div{height:100%;width:183px;display:table}.e-rptdesigner-drag-helper-div{border-radius:1px !important;margin:6px !important}.e-rptdesigner-drag-helper-div .e-rptdesigner-paramdrag-label{text-align:center;overflow:hidden !important;text-overflow:ellipsis !important;padding-top:10px !important}.e-designer-layout-cancel{margin-right:3px !important}.e-designer-editlayout-table{border-collapse:separate !important}.e-rptdesigner-avail-div,.e-rptdesigner-code-div{width:100%}.e-rptdesigner-avail-table,.e-rptdesigner-code-table{margin-top:6px;margin-left:9px}.e-rptdesigner-avail-table .e-radiobtn-wrap .e-spanicon.e-radsmaller,.e-rptdesigner-code-table .e-radiobtn-wrap .e-spanicon.e-radsmaller,.e-designer-radio .e-spanicon.e-radsmaller{margin-top:4px !important}.e-rptdesigner-avail-table .e-radiobtn-wrap .e-radsmaller.e-rad-active .e-rad-icon.e-icon,.e-rptdesigner-code-table .e-radiobtn-wrap .e-radsmaller.e-rad-active .e-rad-icon.e-icon,.e-reportdesigner-designer-configuration .e-radiobtn-wrap .e-radsmaller .e-rad-icon,.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap .e-radsmaller .e-rad-icon{margin-left:-.5px;margin-top:-1px}.e-designer-radio .e-radsmaller .e-rad-icon{margin-left:-.5px !important;margin-top:-1px !important}.e-designer-radio,.e-designer-radiobtn{margin-bottom:0 !important}.e-designer-radio .e-text,.e-rptdesigner-avail-div .e-radiobtn-wrap.e-radsmall .e-text,.e-rptdesigner-default-div .e-radiobtn-wrap.e-radsmall .e-text{line-height:17px}.e-designer-radio .e-text,.e-rptdesigner-avail-div .e-radiobtn-wrap.e-radsmall .e-text,.e-rptdesigner-default-div .e-radiobtn-wrap.e-radsmall .e-text{line-height:18px !important}.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap.e-radsmall .e-text{line-height:15px}.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap.e-radsmall .e-text{line-height:14px !important}.e-designer-radiobtn .e-text{line-height:11px !important}.e-designer-prop-checkbox .e-chkbox-small>span{top:1.5px !important}.e-rptdesigner-paramquery-div{height:100%;overflow:auto;margin-left:8px}.e-rptdesigner-paramquery-label{font-weight:600}.e-rptdesigner-availField-div{height:100%;margin-top:0;padding:0 12px;overflow:auto}.e-rptdesigner-availField-container{margin:0 0 4px 0;padding:5px 0}.e-rptdesigner-availField-containdiv{padding:4px !important}.e-rptdesigner-paramnone-div{border-radius:2px;margin:0 0 0 12px;padding:5px 0}.e-rptdesigner-param-tab-list,.e-rptdesigner-codemodule-tab-list{height:48px !important}.e-designer-hint-newdataset{background-image:url('common-images/reportdesigner/dataset.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-dataset-footer,.e-rptdesigner-shared-footerbtn,.e-rptdesigner-shared-header{overflow:hidden !important}.e-rptdesigner-dataset-footer{margin:0 auto !important;text-align:center !important}.e-rptdesigner-dataset-header{padding:8.5px 7px 7px 0 !important}.e-rptdesigner-dataset-headericon{float:left !important;padding:7px 11px !important}.e-rptdesigner-dataset-headermenu{float:right !important;padding:7px 4px !important}.e-rptdesigner-data-footerbtn{margin:8px !important;margin-bottom:12px !important}.e-rptdesigner-data-treeview{padding:0 3px !important}.e-rptdesigner-data-nodetag{margin:0 !important}.e-rptdesigner-shared-footerTag{margin:0 auto !important;text-align:center !important}.e-rptdesigner-shared-header{display:inline-block !important;padding:8.5px 7px 7px 0 !important}.e-rptdesigner-shared-footer{margin:8px !important;margin-bottom:9px !important}.e-rptdesigner-shared-footerbtn{overflow:hidden !important;float:left !important}.e-rptdesigner-field-data-button{padding:0 !important}.e-rptdesigner-fieldadd-div{position:absolute !important;margin-right:6.5px !important;height:100% !important;margin-top:-13px !important}.e-rptdesigner-split-icon{padding-top:3.5px !important}.e-rptdesigner-split-menu{border-radius:4px !important}.e-rptdesigner-datalist-icon{padding:6px 4px 4px !important}.e-rptdesigner-data-schema{padding:4px !important}.e-rptdesigner-datalist-anchor{margin-top:9px !important;float:right !important}.e-rptdesigner-datalist-close{float:right !important;margin-right:8px !important;margin-top:-2px !important}.e-rptdesigner-datalist-edit{float:right !important;margin-right:5px !important}.e-rptdesigner-list-dragIcon{padding:10px 4px 0 14px !important;float:left !important}.e-rptdesigner-list-iconType{padding:7px 4px !important}.e-reportdesigner-nodeTag{list-style:none outside none !important;padding:0}.e-reportdesigner-nodeContent{position:relative;z-index:10;height:30px;white-space:nowrap;display:block;margin-left:3px;cursor:default}.e-reportdesigner-treeText{display:inline-block;margin-left:4px;cursor:default}.e-reportdesigner-treeRow{margin-left:26px;width:100%;position:relative;left:0;height:34px;margin-top:-36px;cursor:default}.e-querydesigner .e-reportdesigner-treeView a,.e-reportdesigner .e-reportdesigner-treeView a{text-decoration:none}.e-split.e-drop .e-rptdesigner-field-data-button .e-rptdesigner-fieldadd-div .e-rptdesigner-split-icon.e-icon,.e-split.e-drop .e-rptdesigner-field-data-button .e-rptdesigner-fieldadd-div .e-rptdesigner-split-icon.e-icon:before{height:14px !important;width:14px !important}.e-rptdesigner-shared-table{margin-left:3px !important}.e-rptdesigner-shared-column,.e-rptdesigner-shared-row{float:left !important}.e-rptdesigner-shared-label{padding-top:6px !important}.e-designer-hint-newimagemanager{background-image:url('common-images/reportdesigner/image.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-imagetitle{overflow:hidden;padding:8.5px 7px 7px 0}.e-rptdesigner-imageicon{float:left;padding:7px 11px}.e-rptdesigner-img-separator{margin:8px;margin-bottom:12px}.e-rptdesigner-img-addbutton{padding-right:3px}.e-rptdesigner-imaglist-container{height:100%;margin:10px;margin-top:0;margin-right:0}.e-rptdesigner-img-container{width:100%;height:100%}.e-rptdesigner-img-divhover{margin:10px;float:left;vertical-align:middle;text-align:center;position:absolute}.e-rptdesigner-img-childdivhover{opacity:.5}.e-rptdesigner-img-addicon{position:absolute;left:27.5px;top:20.5px}.e-rptdesigner-img-deleteicon{position:absolute;left:70.5px;top:54.5px}.e-rptdesigner-img-itemdiv{margin:8px;float:left;vertical-align:middle;text-align:center}.e-rptdesigner-add-icon{display:table-cell !important;vertical-align:middle !important}.e-rptdesigner-dialog-border,.e-rptdesigner-table-dialog{border-radius:2px !important}.e-rptdesigner-okbtn{height:28px !important;width:80px !important;float:right !important}.e-rptdesigner-cancelbtn{height:28px !important;width:80px !important;margin-left:10px !important;float:right !important}.e-rptdesigner-border .e-select{border-left-width:.5px !important}.e-rptdesigner-dialog-height{height:auto !important}.e-rptdesigner-codedialog-height{height:364 !important}.e-rptdesigner-dialog-cursor{cursor:pointer !important}.e-rptdesigner-add-btn{vertical-align:top !important;font-weight:700 !important;line-height:18px !important}.e-rptdesigner-add-label{font-weight:700 !important;cursor:default;vertical-align:top}.e-rptdesigner-dialog-addbtn{float:right;cursor:pointer;display:table;line-height:normal !important}.e-reportdesigner .e-rptdesigner-dialog-addbtn .e-icon,.e-reportdesigner .e-rptdesigner-dialog-addbtn .e-icon::before{height:11px !important}.e-rptdesigner-dragicon{display:block}.e-rptdesigner-ejdialog .e-widget-content{padding:.5em 0 !important}.e-rptdesigner-ejdialog .e-close::before,.e-rptdesigner-dialog .e-close::before,.e-rptdesigner-alertbox .e-close::before{content:"" !important}.e-rptdesigner-ejdialog .e-close::before,.e-rptdesigner-dialog .e-close::before,.e-rptdesigner-alertbox .e-close::before{margin-top:-3px;margin-right:5px}.e-rptdesigner-dialog .e-footerbar,.e-rptdesigner-ejdialog .e-footerbar{padding:9px 12px !important;height:auto !important;display:inline-table !important;width:100%}.e-rptdesigner-dialog .e-titlebar,.e-rptdesigner-ejdialog .e-titlebar,.e-rptdesigner-alertbox .e-titlebar{padding:11.5px .7em !important}.e-rptdesigner-dialog .e-widget-content{padding:.5em 12px !important}.e-rptdesigner-dialog .e-widget-content{line-height:normal !important}.e-rptdesigner-dialog.e-flat-mode .e-widget-content{padding:0 !important}.e-reportdesigner .e-designer-ejwidgets.e-ddl input.e-input{box-shadow:none !important}.e-reportdesigner .e-dialog{outline:0 none !important}.e-designer-ejwidgets:not(.e-rptdesigner-filter) .e-icon.e-search:before{content:"" !important}.e-designer-ejwidgets .e-icon.e-search:before{margin-right:3px !important;margin-top:.5px !important;padding-top:1px !important}.e-designer-ejwidgets .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-dataConfig .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-drpdown .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets .e-input-group-icon.e-ddl-icon:before{content:"" !important}.e-designer-ejwidgets-dataConfig .e-icon.e-arrow-sans-down{margin-top:-7px !important;height:8px !important;width:100% !important}.e-rptdesigner-datasetname-list{top:63.5px !important}.e-designer-ejwidgets-colorpicker:not(.e-popup){width:36px !important;height:28px !important}.e-designer-ejwidgets-colorpicker .e-color-container{width:70%}.e-designer-ejwidgets-colorpicker .e-select{width:30%}.e-designer-ejwidgets-colorpicker .e-selected-color{margin-left:-3px !important;margin-top:-2px !important}.e-designer-ejwidgets-colorpicker .e-icon.e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-colorpicker .e-drp-btn .e-icon.e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-colorpicker.e-active .e-in-wrap .e-icon,.e-designer-ejwidgets-colorpicker .e-in-wrap .e-icon{margin-top:-4px !important;-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;-webkit-transform:none !important;transform:none !important}.e-rptdesigner-ejwidgets-splitbtn .e-icon.e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-updown .e-select{width:40px !important}.e-designer-ejwidgets-updown .e-padding{padding:0 !important}.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-up:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-up:before{content:"" !important;-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.e-rptdesigner-new-btn .e-icon.e-arrow-sans-down:before{content:"" !important;-moz-transform:none;-webkit-transform:none;-ms-transform:none;-o-transform:none;transform:none}.e-reportdesigner-designer .e-colorwidget .e-selected-color{width:15px;height:15px}.e-rptdesigner-error-icon,.e-reportdesigner-alertinfo{cursor:pointer}.e-rptdesigner-error-radius{border-radius:2px}.e-rptdesigner-error-tip{opacity:2}.e-rptdesigner-error-content{padding:4px 6px 6px;line-height:1.8}.e-rptdesigner-delete-icon{float:right}.e-designer-top-tip.e-tooltip-wrap,.e-designer-right-tip.e-tooltip-wrap{height:auto;width:218px !important;position:absolute;display:none;z-index:6;opacity:2 !important;font-weight:400 !important;padding:3px !important}.e-designer-bottom-tip.e-tooltip-wrap{height:auto;max-width:210px !important;position:absolute;display:none;z-index:6;padding:3px !important}.e-designer-bottom-tip .e-tipContainer,.e-designer-top-tip .e-tipContainer,.e-designer-right-tip .e-tipContainer{padding:2px !important}.e-designer-bottom-tip .e-arrowTip{height:10px;width:20px;left:15%;display:block}.e-designer-bottom-tip .e-arrowTipInner{left:1px;top:0}.e-designer-top-tip .e-arrowTip{height:10px;width:20px !important;left:20px;top:-10px;display:block}.e-designer-top-tip .e-arrowTipInner{left:1px;top:1px}.e-designer-right-tip .e-arrowTip{height:20px;left:100%;top:10px;display:block}.e-designer-right-tip .e-arrowTipInner{left:0;top:1px}.e-reportdesigner-scroller.e-autohide .e-content{width:100% !important}.e-reportdesigner-scroller .e-scrollbar .e-icon{font-size:8px !important;cursor:pointer}.e-reportdesigner-scroller:not(.e-rptdesigner-scrollsize) .e-vscrollbar{width:12px !important}.e-rptdesigner-scrollsize .e-vscrollbar{width:9px !important}.e-reportdesigner-scroller .e-hscrollbar{height:12px !important;bottom:2px !important}.e-reportdesigner-scroll-index .e-scrollbar{z-index:1000}.e-reportdesigner-dsscroller{padding-bottom:10px}.e-reportdesigner-full-screen{bottom:0;height:100% !important;left:0;position:fixed;right:0;top:0;padding:0;margin:0;width:100% !important;z-index:999}.e-reportdesigner-document-full-screen{overflow:hidden !important}.e-rptdesigner-drag-element{margin:8px}.e-rptdesigner-drag-div{border-radius:1px !important;z-index:50 !important;margin:6px !important}.e-rptdesigner-drag-iconType{margin-top:4px !important}.e-rptdesigner-drag-iconType,.e-rptdesigner-paramdrag-iconType{margin-right:3px !important;margin-left:15px !important;float:left !important}.e-rptdesigner-paramdrag-iconType{margin-top:1px !important}.e-rptdesigner-drag-label{padding:4px 0 !important}.e-rptdesigner-drag-label,.e-rptdesigner-paramdrag-label{margin-left:2px !important;vertical-align:middle !important}.e-rptdesigner-paramdrag-label{padding:4px 0 !important}.e-rptdesigner-dragconfig-iconType{margin-right:3px;margin-left:23px;margin-top:5px;float:left}.e-rptdesigner-exp-cont{cursor:default;float:right}.e-rptdesigner-exp-menu{height:6px;width:6px;margin-top:10px;cursor:default;padding:1px}.e-designer-menu-defaulticon{height:14px;margin-left:3px !important;margin-top:-2px !important}.e-designer-menu-expressionicon{height:14px;margin-left:3px !important;margin-top:1px !important}.e-designer-menu .e-list>a.e-menulink{min-width:0 !important}.e-designer-menu .e-list>a.e-menulink .e-icon.e-arrowhead-right{margin-top:3px !important}.e-designer-menu .e-list{padding:2px !important}.e-rptdesigner-padding-property .e-rptdesigner-exp-cont{margin-top:26px !important}.e-reportdesigner-treeText{font-size:14px}.e-rptdesigner-tablix-cell-menu{padding-left:5px}.e-designer-menu.e-tablix-cell-menu .e-menulink{padding-left:30px !important}.e-rptdesigner-group-line.e-rptdesigner-group-detailIcon{font-size:7px !important;width:7px;height:7px}.e-rptdesigner-rowColumn-container{overflow:hidden;border:0 solid;border-left-width:1px;border-top-width:1px}.e-rptdesigner-rowColumn-openCloseIcon{float:right;margin-right:8px}.e-rptdesigner-rowColumn-rowIconSpan{float:left;padding:0 5px}.e-rptdesigner-rowColumn-headerDiv{display:block;width:100%;height:29px}.e-rptdesigner-rowColumn-headerTable{height:29px}.e-rptdesigner-headerRow{width:50%}.e-rptdesigner-headerRowSpan,.e-rptdesigner-headerColumn{max-width:95px}.e-rptdesigner-rowColumn-rowDiv{position:relative !important;margin:4px 2px 4px 4px;float:left}.e-rptdesigner-rowColumn-columnDiv{position:relative !important;margin:4px 4px 4px 2px;float:right}.e-rptdesigner-rowColumn-containerTable{border-radius:2px !important;height:28px !important;width:100%;display:table;table-layout:fixed !important}.e-rptdesigner-grplabelDiv{padding-right:5px;vertical-align:middle;display:table-cell !important;overflow:hidden !important;white-space:nowrap !important;text-overflow:ellipsis !important}.e-rptdesigner-rowColumn-fieldNameDiv{padding:1.5px 3px;vertical-align:middle;display:block;width:100%}.e-rptdesigner-rowColumn-menuDiv{display:table-cell;width:23px;vertical-align:middle !important}.e-rptdesigner-rowColumn-groupIcon{padding:1.5px 0;padding-left:4px;display:table-cell !important;width:13px}.e-rptdesigner-rowColumn-groupIcon-size{font-size:13px !important;vertical-align:middle !important}.e-rptdesigner-rowColumn-elementDiv{padding:1px 2px 1px 0}.e-rptdesigner-rowColumn-menuIcon{display:block;margin-left:6px;height:13px !important;vertical-align:middle !important;padding-top:2px !important}.e-rptdesigner-rowColumn-advIconSpan{float:right;font-size:17px;margin-left:5px;margin-right:10px}.e-rptdesigner-group-rowIcon,.e-rptdesigner-group-colIcon,.e-rptdesigner-grouping-minimize,.e-rptdesigner-grouping-maximize{font-size:15px !important}.e-rptdesigner-rowColumn-advIconSpan{font-size:17px !important}.e-rptdesigner-groupPanel-resizer{width:100%;height:1px;cursor:n-resize}.e-rptdesigner-groupPanel-resize-helper{height:3px;position:absolute;cursor:n-resize;z-index:1000}.e-rptdesigner-group-rowIcon{padding-left:5px}.e-rptdesigner-tablix-group-row{padding-top:2px;padding-bottom:2px}.e-rptdesigner-tablix-group-topContainer{padding-top:5px;padding-bottom:5px}.e-rptdesigner-tablix-group-bottomContainer{padding-left:4px;padding-top:5px;padding-bottom:5px}.e-rptdesigner-tablix-alert-contentDiv{height:auto;margin:5px;margin-bottom:10px}.e-rptdesigner-tablix-alert-radioBtn{height:auto;margin:8px;margin-left:15px}.e-rptdesigner-tablix-addText-textareaDiv{margin-top:10px;margin-bottom:5px;height:54px}.e-rptdesigner-tablixdataassignmenu{height:auto !important;width:210px;position:absolute;display:none;z-index:2000001}.e-rptdesigner-tablix-searchicon{float:right;margin-top:-18.5px !important;font-size:10px !important}.e-rptdesigner-menu-item{display:block;position:relative;font-size:14px}.e-rptdesigner-menu-item{padding:15px 0 15px 18px !important}.e-rptdesigner-menu-item>a{display:block;font-size:14px}.e-rptdesigner-menu-separator{display:block;position:relative;height:1px !important}.e-rptdesigner-menu-ejdropdowncontrol{display:block;position:relative}.e-rptdesigner-menu-ejdropdowncontrol{padding:15px 0 0 14px !important}.e-rptdesigner-menu-ejsearchcontrol{display:block;position:relative}.e-rptdesigner-menu-ejsearchcontrol{padding:15px 0 15px 14px !important}.e-rptdesigner-menu-ejlistcontrol{display:block;position:relative;height:179px}.e-rptdesigner-menu-ejlistcontrol>div{border:none !important}.e-rptdesigner-fieldList>li{font-size:14px !important}.e-rptdesigner-fieldList>li{padding:16px 0 16px 18px !important}.e-rptdesigner-noFieldDispTag{font-size:12px;vertical-align:middle;text-align:center;display:table-cell;width:100%;height:100%}.e-rptdesigner-noRecords{display:table;width:100%;height:100%;position:absolute;top:0}.e-rptdesigner-document-scroll{overflow:scroll !important}.e-rptdesigner-tablix-content-icon{margin-right:5px !important;line-height:1;cursor:default}.e-rptdesigner-tablix-content-icon{padding:3px 6px !important}.e-rptdesigner-prop-dataAlert{height:50px}.e-rptdesigner-prop-dataAlert-rightCell{width:227px;padding-left:15px}.e-rptdesigner-prop-dataAlert-rightCell{margin-top:2px}.e-rptdesigner-prop-dataAlert-iconDiv{padding-left:10px;margin-top:1px}.e-rptdesigner-prop-dataAlert-btn{width:130px !important;max-width:130px !important}.e-rptdesigner-prop-dataAlert-btnDiv{padding-right:11px;float:right}.e-rptdesigner-prop-dataAlert-caption{font-weight:600}.e-rptdesigner-prop-padding-label-parent{float:left;padding:29px 0}.e-rptdesigner-prop-textarea-label-parent{float:left;padding:17px 0}.e-rptdesigner-prop-label{font-size:12px;float:right;padding-right:10px}.e-rptdesigner-prop-content-container{padding:7px 0}.e-rptdesigner-prop-item-container{padding:7px 10px}.e-rptdesigner-prop-item-checkbox,.e-rptdesigner-prop-label-parent{float:left;padding:7px 0}.e-rptdesigner-expEle-container{height:27px;width:25px;float:right;cursor:default}.e-rptdesigner-subProp-text{font-size:10px;padding-bottom:5px}.e-rptdesigner-subProp-padding-container{padding-top:5px}.e-rptdesigner-prop-padding-exp{padding:22px 0}.e-rptdesigner-prop-textarea-exp{padding:15px 0}.e-rptdesigner-prop-textbox-exp{padding:2px 0;-webkit-appearance:none !important;-moz-appearance:none !important}.e-rptdesigner-prop-advc .e-rptdesigner-txtoverflow,.e-rptdesigner-acrdn-header .e-header-row-txt,.e-rptdesigner-polygon-prop .e-rptdesigner-txtoverflow{padding:4px 12px;font-size:13px;min-width:400px;float:left}.e-rptdesigner-codeinfo:before{content:""}.e-rptdesigner-codeinfo{font-size:14px !important;margin-top:4px;margin-left:8px}.e-rptdesigner-codeinfo-div{display:inline-block;float:right;margin-left:5px;width:25px}.e-rptdesigner-datasearch-textbox{text-align:left}.e-rptdesigner-datasearch-textbox{border-radius:0}.e-rptdesigner-datafield-search-box{height:29px}.e-rptdesigner-datafield-search-box{border-radius:0}.e-rptdesigner-datafield-search-box .e-designer-searchIcon{margin-top:7px;margin-right:12px;font-size:12px}.e-rptdesigner-datafield-search-container{height:52px;padding:10px 8px 12px 8px}.e-designer-ejwidgets.e-input-group .e-clear-icon{padding-bottom:5px !important}.e-designer-ejwidgets.e-input-group .e-combobox{height:26px !important;margin-top:1px !important}.e-designer-ejwidgets .e-input-group-icon.e-ddl-icon{padding:8px 0 8px 5px !important}.e-designer-combobox .e-dropdownbase.e-nodata{height:30px !important;font-size:12px !important;padding:6px 16px !important}.e-reportdesigner .e-publish-content-row{width:100%;display:inline-block;margin-bottom:18px}.e-reportdesigner .e-publish-content-row:first-child{margin-top:26px}.e-reportdesigner .e-publish-content-row .e-publish-labelwrap{float:left;line-height:30px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap{float:left}.e-reportdesigner .e-publish-content-row .e-publish-labelwrap{width:20%}.e-reportdesigner .e-publish-label{float:right;padding-right:20px;line-height:30px}.e-reportdesigner .e-publish-desc-err{height:17px;font-size:12px;line-height:16px;margin-top:6px}.e-reportdesigner .e-publish-desc-row{margin-bottom:4px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-wrap{width:89.9%;height:100%;float:left}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap{width:48px;height:100%;float:left;line-height:60px;cursor:pointer}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap{width:76%;height:auto;display:inline-block}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap .e-publish-category-add{height:28px;text-align:center;line-height:inherit;width:38px;padding:0 5px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap .e-publish-category-plusicon{width:30px;height:30px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap .e-publish-category-plusicon:before{content:"";font-size:48.85px;display:inline-block;line-height:1px}.e-reportdesigner .e-publish-contentwrap.e-publish-contentwrap-div.e-mark-public-chk-box{padding-top:8px;padding-bottom:8px}.e-reportdesigner .e-designer-select-category .e-select{margin-right:12px}.e-reportdesigner .e-designer-select-category .e-select .e-icon.e-arrow-sans-down:before{font-size:15px !important;margin-top:-1px !important}.e-reportdesigner .e-designer-select-category .e-in-wrap{border-radius:4px 0 0 4px}.e-reportdesigner .e-add-category-dialog .e-designer-constr-textarea{height:55px}.e-designer-addcategory-div{padding:15px 0}.e-designer-addcategory-label{padding-right:20px;float:right}.e-reportdesigner .e-publish-err{display:none;height:16px}.e-reportdesigner .e-designer-publish-category-msg{width:60%}.e-reportdesigner .e-designer-categoryErrWrap{position:absolute;margin-right:5px;float:left;height:30px;width:calc(-140%);display:none}.e-reportdesigner .e-mark-public-info{padding-left:5px;font-size:11px;border-radius:4px}.e-reportdesigner .e-mark-public-info-span{height:14px;line-height:14px;float:left}.e-designer-select-category .e-designer-ejwidgets.e-ddl .e-select{border-left-width:0 !important}.e-reportdesigner .e-map-field-container .e-header,.e-reportdesigner .e-rptvariables-field-container .e-header,.e-reportdesigner .e-indicatorstates-field-container .e-header,.e-reportdesigner .e-secondary-panel-container.e-header{margin-left:1px !important}.e-reportdesigner .e-rptdesigner-data-collapse.e-designer-collection-panel,.e-reportdesigner .e-rptdesigner-data-collapse.e-designer-secondary-panel{font-size:16px !important;float:left;margin:5px;padding:7px 8px 7px 7px !important;display:inline-block !important}.e-reportdesigner .e-rptdesigner-map-collection-title,.e-reportdesigner .e-rptvariables-title,.e-reportdesigner .e-indicatorstates-title,.e-reportdesigner .e-rptdesigner-secondary-panel-title{padding:10px 0;width:320px;float:left;font-size:13px;font-weight:600}.e-reportdesigner .e-rptdesigner-secondary-panel-title{width:400px !important}.e-reportdesigner .e-rptdesigner-map-collection-polygonText{padding:12px 0;width:370px;float:left;font-size:12px}.e-reportdesigner .e-rptdesigner-map-addbtn-container,.e-reportdesigner .e-rptvariables-addbtn-container,.e-reportdesigner .e-indicatorstates-addbtn-container{padding:11px !important;float:right;cursor:pointer}.e-reportdesigner .e-rptdesigner-map-collection-addicon,.e-reportdesigner .e-rptvariables-addicon,.e-reportdesigner .e-indicatorstates-addicon{padding:3px 0 !important}.e-reportdesigner .e-rptdesigner-markerstyle,.e-reportdesigner .e-rptdesigner-bindingfield,.e-reportdesigner .e-rptdesigner-bucket,.e-reportdesigner .e-rptvariables,.e-reportdesigner .e-indicatorstates{padding-top:4px !important}.e-reportdesigner .e-rptvariables-delete{padding-top:8px;padding-left:17px}.e-reportdesigner .e-rptvariables-textbox-exp{padding-left:15px;margin-top:-3px}.e-reportdesigner .e-rptdesigner-polygon-header{padding:0 22px !important}.e-reportdesigner .e-rptdesigner-polygon-header .e-rptdesigner-delete-icon{font-size:15px !important}.e-reportdesigner .e-rptdesigner-edit-polygon{padding:6px 5px;float:left;display:inline-block;width:16px}.e-reportdesigner .e-rptdesigner-edit-polygon .e-reportdesigner-parameter-edit{display:inline-block;font-size:15px !important;padding:6px 0;cursor:pointer}.e-reportdesigner .e-rptdesigner-polygon-header:hover .e-reportdesigner-parameter-edit{display:block !important}.e-reportdesigner .e-rptdesigner-polygon-prop{width:100%;float:left}.e-reportdesigner .e-map-field-container .e-textbox{padding-right:1em !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-preview:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-join:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-exp:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-filter:before{content:""}.e-qrydesigner-schemainfo:before{content:""}.e-qrydesigner-search:before{content:""}.e-qrydesigner-close:before{content:""}.e-reportdesigner-single-drag:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-param:before{content:""}.e-qrydesigner-update-icon:before{content:""}.e-qrydesigner-webapi:before{content:""}.e-qrydesigner-webapi-rawdata:before{content:""}.e-querydesigner-toolbarcontainer .e-icon.e-toolbar-res-arrow{padding:0 !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-preview,.e-querydesigner-toolbarcontainer .e-qrydesigner-join,.e-querydesigner-toolbarcontainer .e-qrydesigner-exp{margin-top:3px !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-preview,.e-querydesigner-toolbarcontainer .e-qrydesigner-join,.e-querydesigner-toolbarcontainer .e-qrydesigner-exp{margin-top:-2px !important;margin-left:-2px}.e-querydesigner-toolbarcontainer .e-qrydesigner-param{margin-top:1px !important}.e-qrydesigner-switcher{margin:5.5px !important}.e-qrydesigner-code-switcher{display:table;float:right;margin-left:6px}.e-qrydesigner-code-switcher{padding:7px 0;margin-top:1.5px !important}.e-qrydesigner-switch-text-parent{display:table-cell !important;vertical-align:middle !important}.e-querydesigner-toolbarcontainer .e-toolbarfonticonbasic,.e-qrydesigner-update-icon{font-family:'ejreportdesigner' !important}.e-querydesigner-dataset-text{border-radius:2px;line-height:normal}.e-reportdesigner-dataset-selection .e-input,.e-querydesigner-dataset-text{padding-left:10px}.e-querydesigner-toolbarcontainer{display:block;border-width:0;border-radius:0 !important}.e-querydesigner-toolbarcontainer{-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important}.e-querydesigner-toolbarcontainer:not(.e-responsive-toolbar){height:48px !important}.e-querydesigner-toolbarcontainer .e-rel-position{cursor:default !important}.e-querydesigner-toolbarcontainer .e-rel-position{margin-top:8.5px}.e-querydesigner-toolbarcontainer .e-rptdesigner-toolbarli{margin-left:12px;margin-right:12px !important}.e-qrydesigner-auto-preview{margin-top:3px}.e-querydesigner-filter-check-parent{padding-bottom:0 !important}.e-querydesigner-filter-check-parent .e-qrydesigner-param-assign.e-check-small{margin-top:4.5px !important}.e-qrydesigner-auto-preview-div{margin-top:2px !important}.e-qrydesigner-queryparam-datatype-parent{width:68px !important}.e-qrydesigner-queryparam-null-parent{width:35px !important}.e-qrydesigner-queryparam-value-parent{width:161px !important}.e-qrydesigner-auto-preview-div .e-chkbox-wrap .e-chkbox-small>span{height:12px !important;width:12px !important;top:2px !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-switch{position:relative;display:inline-block;width:38px;height:21px;margin:0}.e-querydesigner-toolbarcontainer .e-qrydesigner-switch input{display:none}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider{position:absolute;cursor:default;top:0;left:0;right:0;bottom:0;-webkit-transition:.4s;-moz-transition:.4s;-o-transition:.4s;transition:.4s}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider:before{position:absolute;content:"";height:14px;width:14px;left:1px;bottom:3.5px;-webkit-transition:.4s;transition:.4s}.e-querydesigner-toolbarcontainer input:focus+.e-qrydesigner-slider{box-shadow:0 0 1px #2196f3}.e-querydesigner-toolbarcontainer input:checked+.e-qrydesigner-slider:before{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);-moz-transform:translateX(22px);-o-transform:translateX(22px);transform:translateX(22px)}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider.round{border-radius:34px}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider.round:before{border-radius:50%}.e-designer-hint-newtable{background-image:url('common-images/reportdesigner/dragtable.png');background-position:7% 48%;background-repeat:no-repeat}.e-querydesigner{width:100%}.e-qrydesigner-schema{height:100%;float:left}.e-qrydesigner-drag-surface{display:block;overflow:auto;position:relative;width:100%;height:100%}.e-qrydesigner-schema-area{width:100%;height:100%}.e-qrydesigner-schema-scroll{margin-top:5px !important;width:100%}.e-qrydesigner-schema-header{margin:8px 6px !important}.e-qrydesigner-search-cont{border-width:0 !important}.e-qrydesigner-search-cont>.e-qrydesigner-search{text-align:center;vertical-align:middle}.e-qrydesigner-search-cont>.e-qrydesigner-close{vertical-align:middle;text-align:center;font-size:10px}.e-querydesigner .e-splitter .e-splitbar.e-v-bar{height:0 !important}.e-querydesigner .e-splitter .e-splitbar.e-h-bar{width:3px !important}.e-querydesigner .e-splitter .e-splitbar.e-v-bar>.e-collapse,.e-querydesigner .e-splitter .e-splitbar.e-v-bar>.e-expand,.e-querydesigner .e-splitter .e-splitbar.e-h-bar>.e-collapse,.e-querydesigner .e-splitter .e-splitbar.e-h-bar>.e-expand{display:none !important}.e-querydesigner .e-data-table{padding:1px}.e-qrydesigner-toolbar-name{margin-top:4px}.e-qrydesigner-toolbar-table,.e-qrydesigner-exp-table{border-spacing:0 !important}.e-qrydesigner-exp-table td,.e-qrydesigner-exp-table th{padding:0 !important}.e-qrydesigner-exp-innertable{border-spacing:1.5px !important;border-collapse:collapse !important}.e-qrydesigner-datatable .e-icon.e-plus,.e-qrydesigner-datatable .e-icon.e-minus{cursor:pointer}.e-qrydesigner-datatable .e-icon.e-plus,.e-qrydesigner-datatable .e-icon.e-minus{margin-top:11px}.e-qrydesigner-datatable .e-icon.e-plus,.e-qrydesigner-datatable .e-icon.e-minus,.e-reportdesigner-dataset-selection .e-select .e-icon,.e-reportdesigner-dataset-selection.e-popactive .e-select .e-icon{-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;-webkit-transform:none !important;transform:none !important}.e-reportdesigner-dataset-selection .e-select .e-arrow-sans-down{margin-top:-5px}.e-qrydesigner-datatable .e-icon.e-plus:before{font-family:ejreportdesigner !important;content:"" !important;font-size:12px !important;margin-right:3px !important;margin-top:.5px !important}.e-qrydesigner-datatable .e-icon.e-minus:before{font-family:ejreportdesigner !important;content:"" !important;font-size:12px !important;margin-right:3px !important;margin-top:0 !important}.e-qrydesigner-dataheader{vertical-align:middle;text-align:center;margin-left:11px;margin-top:-5px;display:inline-block}.e-qrydesigner-treeview{display:inline-block;vertical-align:middle;margin-top:-3px;margin-left:1px;margin-right:5px !important;font-size:17px !important;width:17px !important}.e-qrydesigner-treeview .e-chk-image .e-icon .e-checkmark{margin-top:1px !important}.e-qrydesigner-empty-msg{font-size:11px;text-align:center;vertical-align:top;padding-top:20px}.e-qrydesigner-dragheader{height:45px;width:100%;padding-left:5px;box-shadow:none;border-radius:3px}.e-qrydesigner-table-close{display:table-cell !important;vertical-align:middle !important;float:right !important}.e-qrydesigner-table-close{padding:10px 7px 10px 0 !important}.e-qrydesigner-table-selectall{float:right;vertical-align:middle}.e-qrydesigner-table-selectall{padding:10px 7px 10px 0 !important}.e-qrydesigner-table-settings{vertical-align:middle;float:right}.e-qrydesigner-table-settings{padding:12px 7px 10px 0}.e-qrydesigner-table-header{overflow:hidden;vertical-align:middle;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.e-qrydesigner-table-header{padding:10px 0 10px 10px !important}.e-qrydesigner-table-boxshadow{height:40px !important;padding-left:8px !important;margin-top:2px}.e-qrydesigner-query-table{position:absolute}.e-qrydesigner-query-table{width:230px}.e-query-selection{float:left;padding:2px}.e-query-datatype{float:left;padding:1px 10px 1px 7px}.e-querydesigner .e-data-table .e-list{padding:0 12px !important}.e-querydesigner .e-query-text{-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-left:1px}.e-querydesigner .e-query-text{margin-top:1px}.e-designer-loadbtn{width:80px !important;margin-left:10px}.e-designer-loadbtn{height:18px !important;margin-top:-1px}.e-qrydesigner-table-separator{margin:0 6px}.e-qrydesigner-dialog{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.e-qrydesigner-add-label{font-weight:700 !important;cursor:default;vertical-align:top}.e-qrydesigner-add-icon{display:table-cell !important;vertical-align:middle !important}.e-qrydesigner-add-btn{vertical-align:top !important;font-weight:700 !important}.e-qrydesigner-dialog-border,.e-qrydesigner-table-dialog{border-radius:2px !important}.e-qrydesigner-okbtn{height:28px !important;width:80px !important;float:right !important}.e-qrydesigner-cancelbtn{height:28px !important;width:80px !important;margin-left:10px !important;float:right !important}.e-qrydesigner-okbtn,.e-qrydesigner-cancelbtn{border-radius:4px !important}.e-qrydesigner-table-dialog,.e-qrydesigner-table-dialog table{border-spacing:2px !important;border-collapse:separate !important}.e-qrydesigner-border .e-select{border-left-width:.5px !important}.e-qrydesigner-dialog .e-close::before{content:"" !important}.e-qrydesigner-dialog .e-close::before{margin-top:-3px;margin-right:5px}.e-qrydesigner-dialog .e-footerbar{padding:9px 12px !important;height:auto !important;display:inline-table !important;width:100%}.e-qrydesigner-dialog .e-titlebar{padding:11.5px .7em !important}.e-qrydesigner-dialog .e-widget-content{padding:.5em 12px !important}.e-qrydesigner-dialog-height{height:auto !important}.e-qrydesigner-dialog-addbtn{float:right;cursor:pointer;display:table}.e-qrydesigner-dialog-cursor{cursor:pointer !important}.e-qrydesigner-dialog.e-flat-mode .e-widget-content{padding:0 !important}.e-qrydesigner-delete-icon{float:right}.e-qrydesigner-qryjoiner-width,.e-qrydesigner-storeparameter-width{width:100%}.e-qrydesigner-ellipses{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.e-qrydesigner-exp-datacontainer{margin-left:12px}.e-qrydesigner-exp-emptydiv{margin-left:10px}.e-qrydesigner-exp-txtbx{margin-top:2px;margin-bottom:5px}.e-qrydesigner-exp-textarea{margin-top:6px}.e-qrydesigner-exp-innertable{border-spacing:1.5px !important;border-collapse:collapse !important}.e-qrydesigner-exp-categoryIntable{margin-top:6px;margin-bottom:2px}.e-qrydesigner-exp-optionDiv{margin-top:6px}.e-qrydesigner-exp-optionInput{margin-top:5px}.e-qrydesigner-exp-sepdiv1{margin:25px 10px 0 -3px}.e-qrydesigner-exp-colLable{margin-left:6px}.e-qrydesigner-exp-dataDiv{margin-left:6px;margin-top:6px}.e-qrydesigner-exp-sepdiv2{margin:-10px 10px 0 -3px}.e-qrydesigner-exp-catDesc{margin-right:10px}.e-qrydesigner-exp-desccontent{text-align:justify;margin-top:8px}.e-qrydesigner-exp-example{float:left;word-wrap:break-word;margin-top:8px}.e-qrydesigner-explist-container{border-top-width:1px !important;padding:3px !important}.e-qrydesigner-explist-licontainer{padding:0 !important;list-style:none !important}.e-qrydesigner-explist-txtspan{vertical-align:middle !important;padding-left:2px !important;margin-top:-2px !important;line-height:normal !important;margin-left:5px !important;overflow:hidden !important;white-space:nowrap !important;text-overflow:ellipsis !important}.e-qrydesigner-explist-iconspan{margin-top:2px;float:right;margin-right:12px;cursor:pointer}.e-qrydesigner-textarea{resize:none !important;overflow:auto !important}.e-qrydesigner-textarea,.e-qrydesigner-textbox{padding-bottom:5px;padding-top:5px;padding-right:5px}.e-qrydesigner-explist-lianchor{padding:14px 0 !important}.e-qrydesigner-exp-saveenable{opacity:1 !important}.e-qrydesigner-exp-savedisable{opacity:.5 !important}.e-qrydesigner-queryfilter-row{padding-top:10px}.e-qrydesigner-queryfilter-container{padding:5px 0}.e-qrydesigner-queryfilter-container-div{padding:4px}.e-qrydesigner-queryfilter-field-table{padding-bottom:2px;padding-top:2px}.e-qrydesigner-queryfilter-bool-table{padding-bottom:3px;padding-top:3px}.e-qrydesigner-queryparam-container{margin:5px 0}.e-qrydesigner-queryparam-div,.e-qrydesigner-queryparam-container-div{padding:4px 8px}.e-qrydesigner-queryparam-container-div{padding-bottom:0 !important}.e-qrydesigner-queryparam-label{font-weight:600}.e-qrydesigner-dataparam-table{border-spacing:0 !important}.e-qrydesigner-dataparam-container{padding:5px 3px;margin-top:6px;margin-bottom:2px}.e-qrydesigner-dataparam-container-div{padding:4px 8px}.e-qrydesigner-dataparam-padding{padding-left:10px}.e-qrydesigner-dataparam-errorColum{padding-right:5px}.e-qrydesigner-dataparam-delColum{padding-right:5px;padding-top:5px}.e-qrydesigner-txtoverflow,.e-qrydesigner-exp-savebtn,.e-qrydesigner-exp-closebtn,.e-qrydesigner-loadMoreBtn,.e-qrydesigner-okbtn,.e-qrydesigner-cancelbtn{overflow:hidden !important;white-space:nowrap !important;-ms-text-overflow:ellipsis !important;-o-text-overflow:ellipsis !important;text-overflow:ellipsis !important}.e-qrydesigner-cursor,.e-qrydesigner-title-label{cursor:default !important}.e-qrydesigner-exp-td,.e-qrydesigner-dragheader,.e-qrydesigner-dialog .e-footerbar{-webkit-box-sizing:border-box !important;-moz-box-sizing:border-box !important;box-sizing:border-box !important}.e-rptdesigner-autopreview{padding-top:1px !important}.e-querydesigner .e-query-editor .CodeMirror{height:100% !important}.e-querydesigner .e-grid.scroll .e-gridcontent{overflow-x:scroll !important;overflow-y:scroll !important}.e-querydesigner .e-grid.scroll .e-gridheader div:first-child{border-right-width:1px;overflow-y:hidden;overflow-x:hidden}.e-querydesigner .e-grid.scroll .e-gridheader{padding-right:17px;overflow-y:hidden;overflow-x:hidden}.e-querydesigner .e-qrydesigner-schemainfo{font-size:14px;position:absolute;float:right;padding-left:7px;padding-top:8px}.e-querydesigner .e-qrydesigner-schema-header.e-schemainfo{border:0 none;border-radius:0}.e-querydesigner .e-qrydesigner-toolbar-table.e-schemainfo{border-radius:4px;display:inline-table;vertical-align:middle}.e-querydesigner .e-qrydesigner-toolbar-table.e-schemainfo{border-bottom:1px solid #cecece;border-collapse:collapse}.e-querydesigner .e-qrydesigner-toolbar-table.e-schemainfo td{padding:1px}.e-querydesigner .e-qrydesigner-schema-area .e-qrydesigner-datatable .e-icon.e-lazy-load.e-plus:before,.e-querydesigner .e-qrydesigner-schema-area .e-qrydesigner-datatable .e-icon.e-lazy-load.e-minus:before{content:"" !important}
\ No newline at end of file
+.e-ribbon.e-js .e-header .e-active a,.e-ribbon .e-header>.e-apptab .e-apptabanchor,.e-ribbon .e-expandcollapse span{border-radius:2px}.e-ribbon .e-menu.e-horizontal>.e-list>a,.e-menu.e-horizontal>.e-list>span{line-height:33px}.e-ribbon .e-groupdiv .e-resizebtn{height:auto}@font-face{font-family:'ejreportdesigner';src:url('common-images/reportdesigner/ejreportdesigner.eot?jrva8r');src:url('common-images/reportdesigner/ejreportdesigner.eot?jrva8r#iefix') format('embedded-opentype'),url('common-images/reportdesigner/ejreportdesigner.ttf?jrva8r') format('truetype'),url('common-images/reportdesigner/ejreportdesigner.woff?jrva8r') format('woff'),url('common-images/reportdesigner/ejreportdesigner.svg?jrva8r#ejreportdesigner') format('svg');font-weight:normal;font-style:normal}.e-reportdesigner-add:before{content:""}.e-reportdesigner-close:before{content:""}.e-reportdesigner-code-module:before{content:""}.e-reportdesigner-configuration-dataset:before{content:""}.e-rptdesigner-dsconfig:before{content:""}.e-reportdesigner-configuration-imagemanager:before{content:""}.e-reportdesigner-configuration-parameters:before{content:""}.e-reportdesigner-datasource-odbc:before{content:""}.e-reportdesigner-datasource-oledb:before{content:""}.e-reportdesigner-datasource-oracle:before{content:""}.e-reportdesigner-datasource-sql:before{content:""}.e-reportdesigner-datasource-sqlce:before{content:""}.e-reportdesigner-datasource-xml:before{content:""}.e-reportdesigner-double-drag:before{content:""}.e-reportdesigner-filter:before{content:""}.e-reportdesigner-move:before{content:""}.e-reportdesigner-reference:before{content:""}.e-reportdesigner-search:before{content:""}.e-reportdesigner-search-collapse:before{content:""}.e-reportdesigner-selection:before{content:""}.e-reportdesigner-single-drag:before{content:""}.e-reportdesigner-syncfusion:before{content:""}.e-rptdesigner-toolbar-copy:before{content:""}.e-rptdesigner-toolbar-cut:before{content:""}.e-rptdesigner-toolbar-delete:before{content:""}.e-reportdesigner-toolbar-design:before{content:""}.e-reportdesigner-toolbar-menu:before{content:""}.e-rptdesigner-toolbar-new:before{content:""}.e-rptdesigner-toolbar-open:before{content:""}.e-rptdesigner-toolbar-paste:before{content:""}.e-rptdesigner-toolbar-preview:before{content:""}.e-rptdesigner-toolbar-redo:before{content:""}.e-rptdesigner-toolbar-save:before{content:""}.e-rptdesigner-toolbar-undo:before{content:""}.e-rptdesigner-toolbar-zoomin:before{content:""}.e-rptdesigner-toolbar-zoomout:before{content:""}.e-rptdesigner-toolbar-sendbackward:before{content:""}.e-rptdesigner-toolbar-bringforward:before{content:""}.e-rptdesigner-toolbar-sendtoback:before{content:""}.e-rptdesigner-toolbar-bringtofront:before{content:""}.e-rptdesigner-toolbar-leftalign:before{content:""}.e-rptdesigner-toolbar-center:before{content:""}.e-rptdesigner-toolbar-rightalign:before{content:""}.e-rptdesigner-toolbar-topalign:before{content:""}.e-rptdesigner-toolbar-middle:before{content:""}.e-rptdesigner-toolbar-bottomalign:before{content:""}.e-rptdesigner-toolbar-vertical:before{content:""}.e-rptdesigner-toolbar-horizontal:before{content:""}.e-rptdesigner-toolbar-spacinghorizontal:before{content:""}.e-rptdesigner-toolbar-spacingvertical:before{content:""}.e-rptdesigner-toolbar-sizeToControl:before{content:""}.e-rptdesigner-toolbar-sizeToWidth:before{content:""}.e-rptdesigner-toolbar-sizeToHeight:before{content:""}.e-rptdesigner-toolbar-aligntogrid:before{content:""}.e-rptdesigner-toolbar-sizetogrid:before{content:""}.e-rptdesigner-toolbar-snaptoshape:before{content:""}.e-rptdesigner-toolbar-fullscreen:before{content:""}.e-reportdesigner-variables:before{content:""}.e-reportdesigner-widget-basicshapes:before{content:""}.e-reportdesigner-widget-circle:before{content:""}.e-reportdesigner-widget-gauge .path1:before{content:""}.e-reportdesigner-widget-gauge .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-image .path1:before{content:""}.e-reportdesigner-widget-image .path2:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path1:before{content:""}.e-rptdesigner-widget-databar .path2:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path3:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path4:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path5:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path6:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path7:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path8:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path9:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path10:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path11:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path12:before{content:"";margin-left:-1em}.e-rptdesigner-widget-databar .path13:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path1:before{content:""}.e-rptdesigner-widget-sparkline .path2:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path3:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path4:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path5:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path6:before{content:"";margin-left:-1em}.e-rptdesigner-widget-sparkline .path7:before{content:"";margin-left:-1em}.e-reportdesigner-widget-line:before{content:""}.e-reportdesigner-widget-map .path1:before{content:""}.e-reportdesigner-widget-map .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-maps:before{content:""}.e-reportdesigner-widget-rectangle:before{content:""}.e-reportdesigner-widget-textbox:before{content:""}.e-reportdesigner-widget-custom:before{content:""}.e-reportdesigner-area-chart .path1:before{content:"";opacity:.5}.e-reportdesigner-area-chart .path2:before{content:"";margin-left:-1em;opacity:.7}.e-reportdesigner-area-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-bar-chart .path1:before{content:""}.e-reportdesigner-bar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-bar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-bar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-bubble-chart .path1:before{content:""}.e-reportdesigner-bubble-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-bubble-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-bubble-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-candle-stick-chart .path1:before{content:""}.e-reportdesigner-candle-stick-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-candle-stick-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-candle-stick-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-column-chart .path1:before{content:""}.e-reportdesigner-column-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-column-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-column-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-doughnut-chart .path1:before{content:""}.e-reportdesigner-doughnut-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-error-bar-chart .path1:before{content:""}.e-reportdesigner-error-bar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-error-bar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-error-bar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-exploded-pie-chart .path1:before{content:""}.e-reportdesigner-exploded-pie-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-funnel-chart .path1:before{content:""}.e-reportdesigner-funnel-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-funnel-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-funnel-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-line-chart:before{content:""}.e-reportdesigner-line-with-markers-chart .path1:before{content:""}.e-reportdesigner-line-with-markers-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-line-with-markers-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-pie-chart .path1:before{content:""}.e-reportdesigner-pie-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-pie-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path1:before{content:""}.e-reportdesigner-polar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-polar-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-pyramid-chart .path1:before{content:""}.e-reportdesigner-pyramid-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-pyramid-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path1:before{content:""}.e-reportdesigner-radar-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path8:before{content:"";margin-left:-1em}.e-reportdesigner-radar-chart .path9:before{content:"";margin-left:-1em}.e-reportdesigner-range-chart .path1:before{content:""}.e-reportdesigner-range-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-range-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-range-column-chart .path1:before{content:""}.e-reportdesigner-range-column-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-range-column-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-range-column-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path1:before{content:""}.e-reportdesigner-scatter-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-scatter-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-area-chart .path1:before{content:""}.e-reportdesigner-smooth-area-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-line-chart:before{content:""}.e-reportdesigner-smooth-line-with-markers-chart .path1:before{content:""}.e-reportdesigner-smooth-line-with-markers-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-line-with-markers-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-smooth-line-with-markers-chart .path4:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart .path1:before{content:""}.e-reportdesigner-stacked-area-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart-100 .path1:before{content:""}.e-reportdesigner-stacked-area-chart-100 .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-area-chart-100 .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path1:before{content:"";opacity:.35}.e-reportdesigner-stacked-bar-chart .path2:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-bar-chart .path3:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-bar-chart .path4:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-bar-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path1:before{content:""}.e-reportdesigner-stacked-bar-chart-100 .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path4:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-bar-chart-100 .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path1:before{content:"";opacity:.35}.e-reportdesigner-stacked-column-chart .path2:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-column-chart .path3:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-column-chart .path4:before{content:"";margin-left:-1em;opacity:.35}.e-reportdesigner-stacked-column-chart .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path1:before{content:""}.e-reportdesigner-stacked-column-chart-100 .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path3:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path4:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path5:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path6:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path7:before{content:"";margin-left:-1em}.e-reportdesigner-stacked-column-chart-100 .path8:before{content:"";margin-left:-1em}.e-reportdesigner-stepped-line-chart .path1:before{content:""}.e-reportdesigner-stepped-line-chart .path2:before{content:"";margin-left:-1em}.e-reportdesigner-stock-range-chart:before{content:""}.e-rptdesigner-dataset-boolean:before{content:""}.e-reportdesigner-dataset-bottomarrow:before{content:""}.e-reportdesigner-dataset-char:before{content:""}.e-qrydesigner-table-column-deselect:before{content:""}.e-qrydesigner-table-column-select:before{content:""}.e-rptdesigner-dataset-datetime:before{content:""}.e-reportdesigner-dataset-folder:before{content:""}.e-rptdesigner-dataset-misc:before{content:""}.e-rptdesigner-dataset-number:before{content:""}.e-reportdesigner-dataset-openfolder:before{content:""}.e-reportdesigner-dataset-schema:before{content:""}.e-reportdesigner-dataset-schema-column:before{content:""}.e-rptdesigner-dataset-string:before{content:""}.e-reportdesigner-dataset-table:before{content:""}.e-reportdesigner-dataset-toparrow:before{content:""}.e-rptdesigner-errorinfo:before{content:""}.e-rptdesigner-exp:before{content:""}.e-reportdesigner-backarrow:before{content:""}.e-reportdesigner-dataset-foreignkey:before{content:""}.e-reportdesigner-dataset-primarykey:before{content:""}.e-reportdesigner-dataset-procedure:before{content:""}.e-reportdesigner-dataset-procedure-table:before{content:""}.e-rptdesigner-datasourcelist:before{content:""}.e-reportdesigner-dropdown:before{content:""}.e-reportdesigner-horizontal-browse:before{content:""}.e-reportdesigner-rightarrow:before{content:""}.e-rptdesigner-toolbar-gridlines:before{content:""}.e-rptdesigner-toolbar-grouping:before{content:""}.e-reportdesigner-toolbar-ruler:before{content:""}.e-reportdesigner-toolbar-snapgridlines:before{content:""}.e-reportdesigner-upload:before{content:""}.e-reportdesigner-vertical-browse:before{content:""}.e-reportdesigner-widget-subreport:before{content:""}.e-reportdesigner-widget-indicator .path1:before{content:""}.e-reportdesigner-widget-indicator .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-indicator .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-indicator .path4:before{content:"";margin-left:-1em}.e-reportdesigner-widget-radialgauge .path1:before{content:""}.e-reportdesigner-widget-radialgauge .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-radialgauge .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-lineargauge .path1:before{content:""}.e-reportdesigner-widget-lineargauge .path2:before{content:"";margin-left:-1em}.e-reportdesigner-browse-folder .path1:before{content:""}.e-reportdesigner-browse-folder .path2:before{content:"";margin-left:-1em}.e-reportdesigner-browse-folder .path3:before{content:"";margin-left:-1em}.e-reportdesigner-browse-folder .path4:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path1:before{content:""}.e-reportdesigner-browse-reportfile .path2:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path3:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path4:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path5:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path6:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path7:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path8:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path9:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path10:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path11:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path12:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path13:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path14:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path15:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path16:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path17:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path18:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path19:before{content:"";margin-left:-1em}.e-reportdesigner-browse-reportfile .path20:before{content:"";margin-left:-1em}.e-reportdesigner-imagemanager-add:before{content:""}.e-reportdesigner-imagemanager-delete:before{content:""}.e-reportdesigner-parameter-edit:before{content:""}.e-reportdesigner-parameter-save:before{content:""}.e-rptdesigner-selection-drag .path1:before{content:""}.e-rptdesigner-selection-drag .path2:before{content:"";margin-left:-1em}.e-rptdesigner-selection-move .path1:before{content:""}.e-rptdesigner-selection-move .path2:before{content:"";margin-left:-1em}.e-rptdesigner-selection-move .path3:before{content:"";margin-left:-1em}.e-reportdesigner-browse-backward:before{content:""}.e-reportdesigner-browse-forward:before{content:""}.e-reportdesigner-browse-reload:before{content:""}.e-reportdesigner-datasource-odata:before{content:""}.e-reportdesigner-datasource-postgresql:before{content:""}.e-reportdesigner-datasource-mysql:before{content:""}.e-reportdesigner-datasource-json:before{content:""}.e-reportdesigner-datasource-csv:before{content:""}.e-reportdesigner-datasource-excel:before{content:""}.e-reportdesigner-datasource-mariadb:before{content:""}.e-reportdesigner-datasource-memsql:before{content:""}.e-reportdesigner-datasource-azuresqldw:before{content:""}.e-reportdesigner-datasource-cdata:before{content:""}.e-reportdesigner-datasource-vertica:before{content:""}.e-reportdesigner-datasource-redshift .path1:before{content:"";margin-right:0}.e-reportdesigner-datasource-redshift .path2:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path3:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path4:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path5:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-redshift .path6:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-aurora:before{content:""}.e-reportdesigner-datasource-amazonrds .path1:before{content:"";margin-right:-1em}.e-reportdesigner-datasource-amazonrds .path2:before{content:"";margin-left:0}.e-reportdesigner-datasource-amazonrds .path3:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-amazonrds .path4:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-amazonrds .path5:before{content:"";margin-left:-1em}.e-reportdesigner-datasource-gcsql:before{content:""}.e-reportdesigner-datasource-snowflake:before{content:""}.e-reportdesigner-datasource-ssas:before{content:""}.e-reportdesigner-datasource-defaultextesnion:before{content:""}.e-reportdesigner-datasource-webapi:before{content:""}.e-reportdesigner-datasource-shared:before{content:""}.e-reportdesigner-alertinfo:before{content:""}.e-rptdesigner-toolbar-footer:before{content:""}.e-rptdesigner-toolbar-header:before{content:""}.e-reportdesigner-selection-settings .path1:before{content:""}.e-reportdesigner-selection-settings .path2:before{content:""}.e-reportdesigner-selection-settings .path3:before{content:""}.e-reportdesigner-selection-settings .path4:before{content:""}.e-reportdesigner-selection-settings .path5:before{content:""}.e-reportdesigner-selection-settings .path6:before{content:""}.e-reportdesigner-configuration-settings:before{content:""}.e-reportdesigner-minus:before{content:""}.e-reportdesigner-plus:before{content:""}.e-reportdesigner-alert-msg .path1:before{content:""}.e-reportdesigner-alert-msg .path2:before{content:"";margin-left:-1em}.e-reportdesigner-alert-msg .path3:before{content:"";margin-left:-1em}.e-reportdesigner-alert-msg .path4:before{content:"";margin-left:-1em}.e-reportdesigner-alert-info .path1:before{content:""}.e-reportdesigner-alert-info .path2:before{content:"";margin-left:-1em}.e-reportdesigner-alert-info .path3:before{content:"";margin-left:-1em}.e-rptdesigner-data-expand:before{content:""}.e-rptdesigner-data-collapse:before{content:""}.e-rptdesigner-group-colIcon:before{content:""}.e-rptdesigner-group-rowIcon:before{content:""}.e-reportdesigner-widget-tablix .path1:before{content:""}.e-reportdesigner-widget-tablix .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path4:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path5:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path6:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path7:before{content:"";margin-left:-1em}.e-reportdesigner-widget-tablix .path8:before{content:"";margin-left:-1em}.e-rptdesigner-group-detailIcon:before{content:""}.e-rptdesigner-group-icon:before{content:""}.e-rptdesigner-grouping-minimize:before{content:""}.e-rptdesigner-grouping-maximize:before{content:""}.e-rptdesigner-rowColumn-advIconSpan:before{content:""}.e-rptdesigner-textbox-editIcon:before{content:""}.e-reportdesigner-widget-grid:before{content:""}.e-reportdesigner-widget-list .path1:before{content:""}.e-reportdesigner-widget-list .path2:before{content:"";margin-left:-1em}.e-reportdesigner-widget-list .path3:before{content:"";margin-left:-1em}.e-reportdesigner-widget-list .path4:before{content:"";margin-left:-1em}.e-reportdesigner-toolbar-view:before{content:""}.e-designer-viewCheck:before{content:"";float:left;padding-left:3px;padding-top:1px;visibility:hidden}.e-rptdesigner-dataconfig,.e-rptdesigner-dataconfig-item,.e-rptdesigner-dataconfig-header,.e-rptdesigner-toolbarcontainer,.e-rptdesigner-toolbarcontainer .e-rptdesigner-preview-div,.e-reportdesigner-default-image,.e-rptdesigner-itempanel-parent,.e-rptdesigner-itempanel-autocomplete,.e-rptdesigner-itempanel-container,.e-rptdesigner-dspanel-data,.e-rptdesigner-dataconfig-expandablepanel,.e-rptdesigner-headertag,.e-reportdesigner-designPanel,.e-rptdesigner-dpbodytag,.e-rptdesigner-surfacecontainer,.e-rptdesigner-alertbox .e-footerbar,.e-rptdesigner-dialog .e-footerbar,.e-rptdesigner-ejdialog .e-footerbar,.e-rptdesigner-rowColumn-elementDiv,.e-rptdesigner-rowColumn-containerTable,.e-rptdesigner-datafield-search-box,.e-rptdesigner-datafield-search-container{-webkit-box-sizing:border-box !important;-moz-box-sizing:border-box !important;box-sizing:border-box !important}.e-querydesigner .e-widgeticon span,.e-querydesigner .e-widgeticons span,.e-querydesigner .e-toolbarfonticonbasic span,.e-reportdesigner .e-widgeticon span,.e-reportdesigner .e-widgeticons span,.e-rptdesigner-dialog .e-designer-tile span,.e-reportdesigner .e-toolbarfonticonbasic span,.e-rptdesigner-alertbox .e-widget-content .e-widgeticon span,.e-rptdesigner-new-btn,.e-designer-ejwidgets-updown,.e-reportdesigner-alertinfo,.e-rptdesigner .e-rptviewer-updown,.e-designer-ejwidgets-colorpicker,.e-rptdesigner-ejwidgets-splitbtn,.e-designer-ejwidgets-dataConfig,.e-toolbarfonticonbasic,.e-rptdesigner-acrdn-nav-icon,.e-designer-panel-icon,.e-designer-tile,.e-reportdesigner .e-widgeticon,.e-query-selection,.e-toolbarPreview,.e-rptdesigner-headericon,.e-designer-switchind-icon,.e-reportdesigner .e-widgeticons,.e-reportdesigner-double-drag,.e-rptdesigner-dataconfig-icon,.e-query-datatype,.e-dataset-widgeticon,.e-rptdesigner-error-icon,.e-designer-content-icon,.e-rptdesigner-browse-icon,.e-designer-ejwidgets:not(.e-rptdesigner-filter) .e-icon.e-search:before,.e-reportdesigner-imagemanager-add:before,.e-reportdesigner-imagemanager-delete:before,.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-up:before,.e-rptdesigner-ejwidgets-splitbtn .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-colorpicker .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-colorpicker .e-drp-btn .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets .e-input-group-icon.e-ddl-icon:before,.e-designer-ejwidgets-dataConfig .e-icon.e-arrow-sans-down:before,.e-rptdesigner-new-btn .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-drpdown .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-up:before,.e-reportdesigner .e-toolbarsmallfonticonsettings,.e-reportdesigner .e-reporticons,.e-rptdesigner-codeinfo,.e-designer-viewCheckIcon{font-family:'ejreportdesigner' !important}.e-toolbarfonticonbasic,.e-rptdesigner-acrdn-nav-icon,.e-designer-panel-icon,.e-designer-tile,.e-widgeticon,.e-query-selection,.e-query-datatype,.e-query-treeview,.e-rptdesigner-headericon,.e-reportdesigner-double-drag,.e-widgeticons,.e-imagemanagericon,.e-rptdesigner-dataconfig-icon,.e-toolbarPreview,.e-dataset-widgeticon,.e-rptdesigner-error-icon,.e-reportdesigner-alertinfo,.e-designer-content-icon,.e-toolbarsmallfonticonsettings,.e-reportdesigner .e-reporticons{speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;cursor:default;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.e-rptdesigner-txtoverflow,.e-designer-newparam-btn,.e-rptdesigner-dataset-cancelbtn,.e-designer-li-text,.e-reportdesigner-treeText,.e-rptdesigner-param-text,.e-rptdesigner-report-caption,.e-designer-param-tab,.e-designer-codemodule-tab,.e-rptdesigner-paramdrag-label,.e-rptdesigner-da-dragLabel,.e-rptdesigner-da-dataLable,.e-rptdesigner-drag-div,.e-rptdesigner-drag-label,.e-designer-setparam-btn,.e-rptdesigner-format-prevwChild,.e-rptdesigner-headerRowSpan,.e-rptdesigner-headerColumn,.e-rptdesigner-rowColumn-fieldNameDiv,.e-rptdesigner-prop-dataAlert-caption,.e-rptdesigner-okbtn,.e-rptdesigner-cancelbtn{overflow:hidden !important;white-space:nowrap !important;-ms-text-overflow:ellipsis !important;-o-text-overflow:ellipsis !important;text-overflow:ellipsis !important}.e-designer-viewCheckIcon{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:16px}.e-designer-content-icon,.e-rptdesigner-data-icon,.e-designer-tile,.e-query-datatype,.e-query-selection,.e-query-treeview{cursor:pointer}.e-rptdesigner-new-btn-footer{height:1px !important}.e-designer-textarea,.e-designer-textbox{padding-bottom:4px;padding-top:4px;padding-right:4px}.e-rptdesigner-toolbarcontainer,.e-rptdesigner-ejdialog,.e-rptdesigner-dialog,.e-rptdesigner-alertbox,.e-reportdesigner .e-userselect *:not(input):not(textarea),.e-reportdesigner .e-data-table *:not(input):not(textarea){-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.e-reportdesigner .content-iframe-body,.e-reportdesigner .content-iframe-body *{-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;user-select:text !important}.e-reportdesigner .e-reportdesigner-designer-configuration .e-atc,.e-reportdesigner .e-numeric,.e-reportdesigner .e-percent,.e-reportdesigner .e-currency,.e-reportdesigner .e-mask,.e-reportdesigner .e-ddl{height:28px}.e-rptdesigner-back-btn{margin:2px 7px 2px 2px !important}.e-rptdesigner-button,.e-rptdesigner-okbtn,.e-rptdesigner-cancelbtn{border-radius:4px !important}.e-rptdesigner-connect-btn{margin:2px 2px 2px 7px !important}.e-rptdesigner-treeIcon{float:left;vertical-align:middle;margin-top:5px}.e-rptdesigner-cursor,.e-reportdesigner-dataset-colum,.e-designer-title-label,.e-rptdesigner-param-text{cursor:default !important}.e-designer-newparam-btn,.e-designer-newds-btn,.e-designer-dsconnect-btn{line-height:normal !important;height:29px !important;width:154px !important}.e-rptdesigner-new-btn{line-height:normal !important;height:29px !important;width:86px !important}.e-designer-newparam-btn .e-icon,.e-designer-newds-btn .e-icon,.e-designer-alert-okbtn .e-icon,.e-rptdesigner-alert-cancelbtn .e-icon,.e-qrydesigner-addbtn .e-icon{padding:4px !important}.e-rptdesigner-new-btn .e-icon{padding:3px !important}.e-designer-content{line-height:1}.e-designer-content-label,.e-designer-content-label .e-input,.e-designer-content-label .e-corner{-moz-border-radius:3px !important;-webkit-border-radius:3px !important;border-radius:3px !important}.e-rptdesigner-datasource-list,.e-reportdesigner-param-list{padding:0}.e-rptdesigner-param-text{display:inline-block !important;line-height:normal !important}.e-rptdesigner-param-text{vertical-align:middle !important}.e-designer-li-text{vertical-align:top !important;display:inline-block !important}.e-rptdesigner-header{line-height:1;letter-spacing:.5px}.e-rptdesigner-format-input,.e-rptdesigner-link-input{padding-top:1px}.e-rptdesigner-format-input,.e-rptdesigner-link-input{width:232px !important}.e-rptdesigner-format-btn,.e-rptdesigner-browse-btn{cursor:pointer;height:30px;width:24px}.e-rptdesigner-browse-icon{display:table-cell;vertical-align:middle;text-align:center}.e-rptdesigner-browse-icon:not(.e-rptdesigner-browse-rpt){width:24px;height:30px}.e-rptdesigner-browse-icon.e-rptdesigner-browse-rpt{width:20px;height:26px}.e-widgeticon-drag{font-size:45px !important;opacity:.6}.e-rptdesigner-empty-msg{font-size:11px;text-align:center;vertical-align:top;padding-top:20px}.e-rptdesigner-box-sizing,.e-rptdesigner-pg-tag{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.e-reportdesigner .e-rptdesigner-dataset-container .e-textbox{padding-right:1em !important}.e-reportdesigner .e-rptdesigner-dataset-container .e-textarea{padding-right:1.25em !important}.e-rptdesigner-data-new,.e-rptdesigner-data-shared{width:100% !important}.e-rptdesigner-data-new .e-designer-importdata-btn{margin-left:0 !important}.e-rptdesigner-data-shared .e-designer-importdata-btn{margin-right:0 !important}.e-rptdesigner.e-toolbarTooltip{min-width:auto}.e-rptdesigner.e-toolbarTooltip .e-tipContainer .e-tipcontent{padding:2px 8px 2px 8px}.e-reportdesigner-reportitem-resizeicon{position:absolute;background-image:url('common-images/reportdesigner/resizeicon.png');float:left;display:block;width:8px;height:8px;background-position:-5px -5px}.e-reportdesigner-reportitem-customicon.e-moveicon{position:absolute;background-image:url('common-images/reportdesigner/moveicon.png');-ms-background-size:cover;background-size:cover;float:left;display:block;width:15px;height:15px;cursor:move}.e-reportdesigner-reportitem-customicon.e-settingsicon{position:absolute;background-image:url('common-images/reportdesigner/settingicon.png');-ms-background-size:cover;background-size:cover;float:left;display:block;width:15px;height:15px;cursor:default}.e-rptdesigner-dataassign-search input:focus,.e-reportdesigner-li,.e-rptdesigner-alert-anchor,.e-reportdesigner .content-iframe-body:focus,.e-rptdesigner-tab-focus,.e-reportdesigner .e-button.e-btn,.e-rptdesigner-dialog .e-button.e-btn{outline:0 none !important}.e-reportdesigner .content-iframe-body br{display:none !important}.e-reportdesigner .content-iframe-body-rtl{direction:rtl;text-align:right}.e-reportdesigner .content-iframe-body span{height:auto;white-space:pre-wrap}.e-reportdesigner-default-image{background-image:url('common-images/reportdesigner/defaultimage.png');background-repeat:no-repeat;background-position-x:center;background-position-y:center;background-color:#fff}.e-reportdesigner-image{position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.e-rptdesigner-toolbarcontainer .e-rel-position{cursor:default !important}.e-rptdesigner-toolbarcontainer .e-rel-position{margin-top:8.5px}.e-rptdesigner-toolbarcontainer .e-icon.e-toolbar-res-arrow{padding:0 !important}.e-rptdesigner-previewbtn{width:120px !important;padding-right:13px !important}.e-rptdesigner-exp{margin-top:2px !important}.e-querydesigner-dsname,.e-querydesigner-dataset-name{padding:2px 12px !important}.e-querydesigner-dsname,.e-querydesigner-dataset-name{height:33px !important}.e-rptdesigner-toolbarcontainer{vertical-align:middle;cursor:default;border:0 solid}.e-rptdesigner-toolbarcontainer{-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important}.e-rptdesigner-toolbarcontainer:not(.e-responsive-toolbar){height:48px !important}.e-rptdesigner-toolbarul-begin{padding-left:5px}.e-rptdesigner-toolbarul label,.e-querydesigner-toolbarul label{font-weight:inherit !important}.e-rptdesigner-toolbarul{padding-left:3.5px}.e-rptdesigner-toolbarul{height:34px;padding-right:4px}.e-rptdesigner-toolbarul{margin-right:4px !important;margin-top:5.5px !important;margin-bottom:5.5px !important}.e-rptdesigner-toolbarli{border-width:0 !important;float:left}.e-rptdesigner-toolbarli{width:21px;height:21px;padding:7px !important}.e-rptdesigner-toolbarli.e-designer-toolbar-align{display:block}.e-rptdesigner-toolbarli.e-designer-toolbar-align .e-rptdesigner-toolbar-icon{width:100%;height:100%;display:inline-block !important;text-align:center !important;position:relative !important}.e-rptdesigner-toolbarli.e-designer-toolbar-align .e-rptdesigner-toolbar-icon{margin-top:3px}.e-rptdesigner-toolbar-save::before{margin:0 !important}.e-rptdesigner-splitbtn-span{display:inline-table}.e-rptdesigner-splitbtn-span{margin:0 !important}.e-rptdesigner-splitbtn{padding-right:12px !important}.e-rptdesigner-splitter-div{position:absolute;height:100%}.e-rptdesigner-splitter-icon{padding-top:8px !important}.e-rptdesigner-splitter-icon{padding-top:4px !important}.e-rptdesigner-preview-div{float:right}.e-rptdesigner-preview-div{width:130px}.e-rptdesigner-preview{float:right;margin-right:5px;margin-top:4.5px;margin-bottom:5.5px}.e-rptdesigner-toolbarul-preview{float:right !important}.e-rptdesigner-toolbar-zoom{text-align:center;float:left;margin:9px 6px;width:30px}.e-rptdesigner-toolbar-icon{display:block;height:20px;width:20px;background-repeat:no-repeat;margin-left:0;margin-top:0}.e-rptdesigner-toolbarcontainer .e-toolbarPreview{display:table-cell;padding:3px;vertical-align:middle}.e-rptdesigner-ejdesigner{margin:5.5px}.e-reportdesigner .e-toolbarClose{font-size:9px !important;padding-top:4.1px !important}.e-designer-label{line-height:1;margin-bottom:0 !important}.e-rptdesigner-zoomout-li{margin-right:0 !important}.e-designer-menuItem-uncheck::before{visibility:hidden !important}.e-designer-menuItem-check::before{visibility:visible !important}.e-rptdesigner-btnText-div{display:table;width:50px}.e-rptdesigner-btnText{display:table-cell;vertical-align:middle;text-align:center;font-size:12px;font-weight:normal !important}.e-reportdesigner-atc-boxshadow{box-shadow:none !important}.e-rptdesigner-itempanel-parent{float:left}.e-rptdesigner-itempanel-autocomplete{float:left;margin:5px}.e-rptdesigner-itempanel-autocomplete{border-radius:0}.e-rptdesigner-itempanel-textbox,.e-rptdesigner-datasearch-textbox{text-align:left;float:left;height:24px !important;border-radius:4px;margin-left:1px !important;margin-top:1px !important}.e-rptdesigner-itempanel-searcharea{margin-top:8px !important;float:right}.e-rptdesigner-itempanel-emptymsgdiv{width:100%;height:100%}.e-rptdesigner-itempanel-elementdiv{width:100%}.e-rptdesigner-itempanel-headerText{float:left;margin-left:14px;margin-top:6px;text-overflow:ellipsis;overflow:hidden;width:95px;white-space:nowrap}.e-rptdesigner-itempanel-expandcollapseicon{float:right;position:relative;top:1px}.e-rptdesigner-itempanel-container{height:75px;width:100%}.e-rptdesigner-itempanel-itemdiv{width:79.5px;height:74px;cursor:default;float:left;vertical-align:middle;text-align:center;box-sizing:border-box !important}.e-rptdesigner-itempanel-textitem{width:70px;height:30px;margin-top:4px;overflow:hidden;text-overflow:ellipsis;cursor:default}.e-rptdesigner-itempanel-dragelements{width:74.5px;height:75px;cursor:default;float:left;vertical-align:middle;text-align:center}.e-itempanel-header:hover{cursor:pointer !important}.e-rptdesigner-item-info-container .e-rptdesigner-item-header,.e-rptdesigner-item-info-container .e-rptdesigner-datareq-header,.e-rptdesigner-item-info-container .e-rptdesigner-item-desc{margin-bottom:5px}.e-rptdesigner-item-info-container .e-rptdesigner-item-header,.e-rptdesigner-item-info-container .e-rptdesigner-datareq-header{font-weight:bold}.e-reportdesigner .e-rptdesigner-expandcollapse{min-width:25px;min-height:25px;position:absolute;border-radius:50%;z-index:10;display:inline-block;padding:0;margin:6.5px 0}.e-reportdesigner .e-rptdesigner-expandcollapse-icon{cursor:pointer;display:block;width:25px;height:25px;line-height:19px}.e-itempanel-expandcollapse-tooltip .e-tipContainer .e-tipcontent{padding-top:4px}.e-reportdesigner .e-rptdesigner-itempanel-expand:before{content:""}.e-reportdesigner .e-rptdesigner-itempanel-collapse:before{content:""}.e-rptdesigner-dsicon{margin:1px 9px !important}.e-rptdesigner-ds-drag{float:right;margin-right:5px;margin-top:1.5px}.e-rptdesigner-dstitle-text{margin-top:2px;height:15px}.e-rptdesigner-dssize,.e-rptdesigner-dstype-list,.e-rptdesigner-dsgroup{width:100%;height:100%}.e-rptdesigner-dspanel{width:100%;overflow:hidden}.e-designer-hint-newdatasource{background-image:url('common-images/reportdesigner/datasource.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-dspanel-footer{overflow:hidden;margin:0 auto;text-align:center}.e-rptdesigner-dspanel-separator{margin:8px;margin-bottom:12px}.e-rptdesigner-dsconfig-separator{margin:8px;margin-bottom:4px}.e-rptdesigner-dspanel-header{overflow:hidden;padding:8.5px 7px 7px 0;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.e-rptdesigner-dsconfig{padding:4px 5px;margin:3px 6px;float:left}.e-rptdesigner-dspanel-menu{float:right;padding:7px 4px}.e-rptdesigner-dspanel-list{border-top-width:1px;padding:0 3px}.e-rptdesigner-dspanel-ullist{width:auto;height:auto}.e-designer-dsconnect-btn{white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis}.e-designer-dslist-label{padding:0 10px;display:inline-block}.e-rptdesigner-dstype-list{padding:10px 0}.e-rptdesigner-dspanel-data{width:100%;float:left;clear:none}.e-rptdesigner-dspanel-new{padding:10px 10px}.e-rptdesigner-dspanel-exist{padding:0 10px}.e-rptdesigner-dspanel-existlabel{font-size:13px;font-weight:600}.e-rptdesigner-dspanel-radio{-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.e-reportdesigner .e-radiobtn-wrap{line-height:normal !important}.e-rptdesigner-dsheader{overflow:auto;margin-left:6px}.e-rptdesigner-dsconfig-table{width:100%;margin-left:5px}.e-rptdesigner-dsconfig-button{height:100%;display:block;overflow:hidden;float:left}.e-rptdesigner-dsgroup{padding:10px 0 10px 9px;margin:0 auto;display:inline-block}.e-rptdesigner-dsanchor{padding:14px 0 !important}.e-reportdesigner-datasourceTypes{border:1px solid transparent;background-color:transparent;float:left;padding:6px;display:table-cell;text-align:center;line-height:normal;vertical-align:middle;height:90px;width:95px}.e-designer-switchind-icon{margin-left:5px}.e-designer-constr-textarea{padding-bottom:5px;padding-top:5px;padding-right:5px;overflow-y:auto !important;resize:vertical}.e-designer-dsconfig-table{margin-left:5px;display:table !important}.e-designer-existing-tbl{display:table !important}.e-designer-dsconfig-table,.e-designer-dsconfig-table table,.e-designer-exp-table,.e-rptdesigner-dsheader table,.e-rptdesigner-table-dialog,.e-rptdesigner-table-dialog table,.e-designer-param-table,.e-designer-preview-data-table,.e-designer-param-table table,.e-designer-existing-tbl,.e-designer-sharedconfig-table,.e-designer-sharedconfig-table table,.e-rptdesigner-designbutton .e-btn-span,.e-rptdesigner-rowColumn-headerTable,.e-rptdesigner-rowColumn-containerTable{border-spacing:2px !important;border-collapse:separate !important}.e-rptdesigner-btn-secondary{box-sizing:border-box;cursor:pointer;padding:0 12px;position:relative;text-align:center;vertical-align:middle;white-space:nowrap;letter-spacing:.3px;transition:all .1s linear;height:26px !important;margin-left:-54px !important}.e-rptdesigner-btn-secondary{height:25px !important;margin-left:-53px !important}.e-rptdesigner-datasource-ellipses{display:block;margin-left:auto;margin-right:auto;overflow:hidden;text-overflow:ellipsis}.e-rptdesigner-dsdrag-icon{display:inline-block;padding:1.5px 0 1.5px 9px;float:left}.e-rptdesigner-connection-disclaimer-msg{float:left;font-size:12px;margin:2px 0 2px 4px;cursor:pointer;text-decoration:underline}.e-rptdesigner-connection-disclaimer-text{font-size:12px;margin:2px 0 2px 12px;text-align:left;float:left}.e-rptdesigner-dataconfig-item{padding:7.5px;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer !important}.e-rptdesigner-dataconfig-expandablepanel{width:463px;height:100%;overflow:hidden;float:left}.e-rptdesigner-dataconfig-arrow{height:20px !important;width:10px !important}.e-rptdesigner-dataconfig-arrow{top:3px !important}.e-rptdesigner-hint-nodata{background-image:url('common-images/reportdesigner/nodata.png');background-position:center;background-repeat:no-repeat;background-size:contain;height:60px}.e-rptdesigner-dataConfigAlertContainer{width:464px;vertical-align:middle;overflow:hidden;display:none}.e-rptdesigner-alertMsg{text-align:center;padding-bottom:20px}.e-rptdesigner-data-collapse,.e-rptdesigner-data-expand{display:block !important;-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important;font-size:9px !important;padding:4px 7px}.e-designer-property-tooltip{height:auto;width:auto;position:absolute;z-index:10008}.e-rptdesigner-prop-border{width:86px !important}.e-rptdesigner-prop-border input{position:absolute}.e-rptdesigner-colorpicker{width:50px !important}.e-rptdesigner-prop-margin{margin-left:5px !important}.e-rptdesigner-error-indicator{float:right;padding:2px 19px}.e-rptdesigner-surfacecontainer{border-left-width:1px;float:left}.e-rptdesigner-dpOuterline{margin:10px;position:relative}.e-rptdesigner-horizonline{margin:0;position:absolute}.e-rptdesigner-headertag{position:relative}.e-reportdesigner-designArea{float:left;box-sizing:border-box !important;-webkit-box-sizing:border-box !important;-moz-box-sizing:border-box !important}.e-reportdesigner-designPanel{width:100%;overflow:auto;border:0 solid;border-left-width:1px !important}.e-rptdesigner-pg-tag{width:40px;height:16px;max-width:40px;z-index:10;position:absolute;padding:2px 12px}.e-rptdesigner-headerwatermark,.e-rptdesigner-footerwatermark{border-top-right-radius:10px}.e-rptdesigner-headerwatermark{bottom:0}.e-rptdesigner-dpbodytag{position:relative}.e-rptdesigner-footerwatermark{top:0}.e-rptdesigner-designselector{position:absolute;z-index:1010;pointer-events:none}.e-rptdesigner-dpresizer{z-index:1000;position:relative}.e-rptdesigner-dpxyresizer{position:relative;border-width:0}.e-rptdesigner-dpadorner-div{position:absolute;box-sizing:content-box !important;-moz-box-sizing:content-box !important;-webkit-box-sizing:content-box !important}.e-designer-areaborder{width:100%;height:100%;left:0 !important;top:0 !important;display:block;position:absolute !important;pointer-events:none;box-sizing:border-box !important;-moz-box-sizing:border-box !important;-webkit-box-sizing:border-box !important}.e-designer-licensetag{pointer-events:none}.e-designer-licensetag-text{z-index:10;top:50%;left:50%;-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);vertical-align:middle;overflow:hidden;overflow-wrap:break-word;text-align:center}.e-rptdesigner-dataassign-sep,.e-rptdesigner-da-searchtxtbx,.e-rptdesigner-da-dragicon,.e-rptdesigner-da-dragLabel{float:left}.e-rptdesigner-da-searchroot,.e-rptdesigner-da-searchicon,.e-rptdesigner-da-settingsicon,.e-rptdesigner-da-closeicon{float:right}.e-rptdesigner-dataassign input.e-input{margin-top:2px;height:15px;border-radius:5px}.e-rptdesigner-dataassign-roottag{overflow:hidden}.e-rptdesigner-dataassign-sep{width:1px;border:0 Solid;margin-top:-16px;margin-left:9px}.e-rptdesigner-da-searchroot{margin:3px}.e-rptdesigner-da-searchtxtbx{border-radius:5px;padding-left:5px}.e-reportdesigner-contextmenu-icon-align{padding:2px 5px 5px 5px !important}.e-reportdesigner-viewmenu-icon-align{margin:1px 4px !important}.e-chart-aggregate-menu li.e-designer-viewCheck.e-designer-viewCheckIcon .e-menulink{padding:1px 14px 1px 5px !important}.e-reportdesigner-search.e-rptdesigner-da-searchicon{margin-top:-14px;font-size:10px !important}.e-reportdesigner-close.e-rptdesigner-da-searchicon{margin-top:-14px;font-size:9px !important}.e-rptdesigner-da-dataLable{margin:3px;margin-bottom:0}.e-rptdesigner-da-categoryList{margin:3px;margin-top:5px;border-radius:5px;overflow:auto}.e-rptdesigner-da-emptyLabel{margin:6px}.e-rptdesigner-da-dragDiv{margin:6px;border-radius:2px}.e-rptdesigner-da-dragicon{margin-right:5px;margin-left:5px;margin-top:7.5px}.e-rptdesigner-da-dragLabel{margin-top:5px}.e-rptdesigner-da-closeicon{margin-right:5px;margin-top:7px}.e-rptdesigner-da-settingsicon{margin-right:5px;margin-top:5.5px;margin-left:5px}.e-rptdesigner-da-dragLabel,.e-rptdesigner-da-closeicon,.e-rptdesigner-da-settingsicon{vertical-align:middle}.e-rptdesigner-format-bodyDiv,.e-rptdesigner-format-table,.e-rptdesigner-formattext-table{width:100%}.e-rptdesigner-format-bodyDiv{padding-top:6px;border-radius:2px;overflow:auto}.e-rptdesigner-format-headDiv{float:left;padding-left:12px;padding-top:7px}.e-rptdesigner-format-subDiv{float:right;padding-left:13px;padding-top:5px}.e-rptdesigner-format-prevwDiv{margin-left:5px}.e-rptdesigner-format-typeDiv{padding-bottom:4px}.e-rptdesigner-format-prevwChild{text-align:center;vertical-align:middle;padding-left:8px;padding-top:65px}.e-rptdesigner-format-table{padding-bottom:10px}.e-rptdesigner-format-expBtn{cursor:pointer;margin-top:6px}.e-rptdesigner-formattext-table{margin:8px 0}.e-rptdesigner-formattext-row{height:22.5px}.e-rptdesigner-formattext-caption{float:right}.e-reportdesigner-designer-configuration .e-radiobtn-wrap .e-radsmaller,.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap .e-radsmaller{height:11px;width:11px}.e-reportdesigner-designer-configuration .e-chkbox-wrap .e-chkbox-small>span{height:12px;width:12px}.e-reportdesigner-designer-configuration .e-tab .e-header li{letter-spacing:.5px}.e-reportdesigner-designer-configuration .e-tab>.e-header .e-icon{margin-top:-9px}.e-reportdesigner-designer-configuration .e-tab .e-header li a{font-weight:600}.e-reportdesigner-designer-configuration .e-tab .e-active-content{padding:0}.e-reportdesigner-designer-configuration .e-tab.e-js .e-header>.e-bottom-line.e-active,.e-reportdesigner-designer-configuration .e-tab.e-js .e-header>.e-bottom-line.e-active:hover{padding-bottom:0 !important}.e-reportdesigner-designer-configuration .e-tab.e-js>.e-content{border-width:0}.e-reportdesigner-designer-configuration .e-icon{cursor:pointer !important}.e-reportdesigner-designer-configuration .e-tab .e-header .e-margine-top:hover{border-top:0 none !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-icon{font-family:'ejreportdesigner' !important;font-size:17px !important}.e-reportdesigner .e-reportviewer-toolbarcontainer{vertical-align:middle;border:0 solid}.e-reportdesigner .e-reportviewer-toolbarcontainer:not(.e-responsive-toolbar){height:48px !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-toolbarli:not(.e-reportviewer-ejdropdownlist):not(.e-reportviewer-tbpage){margin-left:12px;margin-right:12px !important;width:21px !important;height:21px !important;padding:7px !important;padding-top:10px !important;padding-left:10px !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-toolbarli.e-reportviewer-tbpage,.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-toolbarli.e-reportviewer-ejdropdownlist{background-color:transparent !important;border:0 !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-print:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-export:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-preview:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-pagesetup:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotofirst:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotoprevious:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotonext:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotolast:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-documentmap:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-gotoparent:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-zoomout:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-zoomin:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-pagefit:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-refresh:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-stop:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-exportsetup:before{content:"" !important}.e-rptdesigner.e-reportviewer-toolbarcontainer .e-reportviewer-parameter:before{content:"" !important}.e-reportdesigner .e-reportviewer .e-reportviewer-icon.e-reportviewer-close{content:"" !important;font-family:'ej-webfont' !important}.e-rptdesigner-linkparam-table{border-spacing:0 !important}.e-rptdesigner-linkparam-container{padding:5px 3px;margin-top:4px;margin-bottom:2px}.e-rptdesigner-linkparam-container-div{padding:4px 8px}.e-rptdesigner-linkparam-padding{padding-left:10px}.e-rptdesigner-linkparam-errorColum{padding-right:5px}.e-rptdesigner-linkparam-delColum{padding-right:5px;padding-top:5px}.e-rptdesigner-filter-container,.e-rptdesigner-codemodule-container,.e-rptdesigner-datafield-container,.e-rptdesigner-field-container,.e-rptdesigner-customfield-container{padding:4px 0;margin:0 0 4px 0}.e-rptdesigner-filter-div,.e-rptdesigner-codemodule-div,.e-rptdesigner-datafield-div,.e-rptdesigner-field-div,.e-rptdesigner-customfield-div{padding-right:8px;padding-left:8px;padding-top:4px;padding-bottom:4px}.e-rptdesigner-filter-table,.e-rptdesigner-codemodule-table,.e-rptdesigner-datafield-table,.e-rptdesigner-field-table,.e-rptdesigner-customfield-table{padding:3px}.e-rptdesigner-browse-path{margin-top:1px}.e-rptdesigner-browse-content{margin-top:.5px}.e-rptdesigner-input-field-div{padding-bottom:9px}.e-rptdesigner-report-table{margin:8px 0}.e-rptdesigner-enable-chkbx{margin-left:2px}.e-rptdesigner-config-table{margin:8px 0}.e-rptdesigner-report-caption{float:right;margin-right:4px}.e-rptdesigner-report-margin,.e-rptdesigner-report-chckbox{margin-left:4px}.e-rptdesigner-report-url{margin:8px 0}.e-rptdesigner-report-exp{padding-left:10px}.e-reportdesigner-browse-icon{display:inline-block}.e-rptdesigner-report-browseicon{margin-top:6px}.e-designer-setparam-btn{margin-left:4px}.e-rptdesigner-dataset-footer{overflow:hidden !important;margin:0 auto !important;text-align:center !important}.e-rptdesigner-dataset-header{padding:8.5px 7px 7px 0 !important}.e-rptdesigner-dataset-headericon{float:left !important;padding:7px 11px !important}.e-rptdesigner-dataset-headermenu{float:right !important;padding:7px 4px !important}.e-reportdesigner .e-split-add-btn-separator{width:1px;height:25px;padding-right:1px;vertical-align:middle;display:table-cell}.e-reportdesigner .e-rptdesigner-field-add-btn{max-width:36px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.e-split .e-rptdesigner-field-data-button.e-left-btn .e-icon,.e-split .e-rptdesigner-field-data-button.e-left-btn .e-icon:before{height:16px !important;width:16px !important;font-size:16px !important}.e-rptdesigner-dataset-dragicon{display:inline-block;margin:6px 0 !important;float:left;vertical-align:middle}.e-rptdesigner-datasourcelist.e-rptdesigner-drag-iconType{font-size:13px !important;margin:6px 10px !important}.e-rptdesigner-createFileInternalContainer{margin:0 0 20px 15px}.e-rptdesigner-newdialog-parent{padding:2px}.e-rptdesigner-newdialog-container{width:100%;height:80px}.e-rptdesigner-newdialog-labelcell{padding-bottom:5px}.e-rptdesigner-newdialog-labelTxt{font-weight:600}.e-rptdesigner-inputPath{padding-left:8px;border-radius:2px;height:28px;width:295px}.e-rptdesigner-credential-label{padding-bottom:2px}.e-rptdesigner-credential-alert{margin-bottom:2px}.e-rptdesigner-credential-labelAlert{margin-bottom:3px}.e-rptdesigner-credential-connect{margin-left:80px}.e-rptdesigner-alertbox .e-widget-content{padding:24px 20px 24px 15px !important}.e-rptdesigner-alertbox .e-footerbar{padding:9px 20px !important;height:auto !important;display:inline-table !important;width:100%}.e-rptdesigner-alertbox>.e-dialog-scroller,.e-designer-tablix-alert>.e-dialog-scroller{border-bottom:none !important}.e-rptdesigner-alert-iconcont{float:left;vertical-align:middle;text-align:center;line-height:1}.e-rptdesigner-alert-anchor{margin-bottom:18px;margin-top:18px;margin-left:57px;text-decoration:none}.e-rptdesigner-alert-msgcont{word-wrap:break-word;overflow-y:hidden;margin:24px 0 0 5px}.e-reportdesigner .e-rptdesigner-expeditor-ellipses{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.e-reportdesigner .e-rptdesigner-expeditor-button{float:right}.e-reportdesigner .e-reportdesigner-exp-description{padding-left:10px;line-height:1.5 !important}.e-rptdesigner-param-width,.e-rptdesigner-param-rootDiv,.e-rptdesigner-param-listDiv,.e-rptdesigner-param-list-childDiv,.e-rptdesigner-param-headerDiv,.e-rptdesigner-param-bodyDiv,.e-rptdesigner-param-basicPanel,.e-rptdesigner-param-footer,.e-rptdesigner-param-basicDiv,.e-rptdesigner-param-panelDiv,.e-rptdesigner-param-fieldBody{width:100%}.e-rptdesigner-param-footer,.e-rptdesigner-param-panelDiv,.e-rptdesigner-param-header,.e-rptdesigner-param-headerDiv,.e-rptdesigner-param-headermarkup,.e-rptdesigner-param-btnDiv{overflow:hidden}.e-rptdesigner-paramlist-typeicon,.e-rptdesigner-param-headericon,.e-rptdesigner-param-btnDiv,.e-rptdesigner-paramlist-dragicon{float:left}.e-rptdesigner-param-rootDiv,.e-rptdesigner-param-listDiv,.e-rptdesigner-param-list-childDiv{height:100%}.e-rptdesigner-param-listDiv{position:relative}.e-rptdesigner-param-bodyDiv{margin-left:1px}.e-rptdesigner-param-footer{margin:0 auto;text-align:center}.e-rptdesigner-param-header{padding:8.5px 7px 7px 0}.e-rptdesigner-param-headericon{padding:7px 11px}.e-rptdesigner-param-list{border-top-width:1px;padding:0 3px}.e-rptdesigner-param-separator{margin:8px;margin-bottom:12px}.e-rptdesigner-param-newbtn{padding-right:3px}.e-rptdesigner-param-headermarkup{padding:8.5px 7px 7px 0}.e-rptdesigner-param-panelSep{margin:8px;margin-bottom:9px}.e-rptdesigner-param-btn{height:32px !important;width:110px !important}.e-rptdesigner-param-basicDiv{margin-left:7px;margin-bottom:6px}.e-rptdesigner-param-anchorcol{padding-top:10px}.e-rptdesigner-param-anchorlink{margin:3px;margin-top:4px;margin-left:5px}.e-rptdesigner-paramlist-li{padding:0 !important;list-style:none}.e-rptdesigner-paramlist-dragicon{padding:6.5px 5px !important}.e-rptdesigner-paramlist-typeicon{padding:2px 2px !important}.e-rptdesigner-paramlist-typeicon{line-height:normal !important}.e-rptdesigner-paramlist-text{padding-left:5px !important;margin:4px 0 !important}.e-rptdesigner-paramlist-edit{padding-top:5px;margin-right:5px;float:right}.e-designer-hint-newparameter{background-image:url('common-images/reportdesigner/parameter.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-editlayout-container{padding:4px 0}.e-designer-editlayout-label{padding-top:14px;font-size:14px !important;font-weight:600 !important;margin-left:11px}.e-designer-parametername{max-width:174px;text-align:center;display:table-cell;vertical-align:middle;padding-left:4px;padding-right:4px}.e-designer-layout-row{padding:0 5px;display:table}.e-designer-layout-column{left:0;display:table-cell;top:0;width:185px;height:40px;max-width:186px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;overflow:hidden}.e-designer-parametername-div{height:100%;width:183px;display:table}.e-rptdesigner-drag-helper-div{border-radius:1px !important;margin:6px !important}.e-rptdesigner-drag-helper-div .e-rptdesigner-paramdrag-label{text-align:center;overflow:hidden !important;text-overflow:ellipsis !important;padding-top:10px !important}.e-designer-layout-cancel{margin-right:3px !important}.e-designer-editlayout-table{border-collapse:separate !important}.e-rptdesigner-avail-div,.e-rptdesigner-code-div{width:100%}.e-rptdesigner-avail-table,.e-rptdesigner-code-table{margin-top:6px;margin-left:9px}.e-rptdesigner-avail-table .e-radiobtn-wrap .e-spanicon.e-radsmaller,.e-rptdesigner-code-table .e-radiobtn-wrap .e-spanicon.e-radsmaller,.e-designer-radio .e-spanicon.e-radsmaller{margin-top:4px !important}.e-rptdesigner-avail-table .e-radiobtn-wrap .e-radsmaller.e-rad-active .e-rad-icon.e-icon,.e-rptdesigner-code-table .e-radiobtn-wrap .e-radsmaller.e-rad-active .e-rad-icon.e-icon,.e-reportdesigner-designer-configuration .e-radiobtn-wrap .e-radsmaller .e-rad-icon,.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap .e-radsmaller .e-rad-icon{margin-left:-.5px;margin-top:-1px}.e-designer-radio .e-radsmaller .e-rad-icon{margin-left:-.5px !important;margin-top:-1px !important}.e-designer-radio,.e-designer-radiobtn{margin-bottom:0 !important}.e-designer-radio .e-text,.e-rptdesigner-avail-div .e-radiobtn-wrap.e-radsmall .e-text,.e-rptdesigner-default-div .e-radiobtn-wrap.e-radsmall .e-text{line-height:17px}.e-designer-radio .e-text,.e-rptdesigner-avail-div .e-radiobtn-wrap.e-radsmall .e-text,.e-rptdesigner-default-div .e-radiobtn-wrap.e-radsmall .e-text{line-height:18px !important}.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap.e-radsmall .e-text{line-height:15px}.e-rptdesigner-tablix-alert-radioBtn .e-radiobtn-wrap.e-radsmall .e-text{line-height:14px !important}.e-designer-radiobtn .e-text{line-height:11px !important}.e-designer-prop-checkbox .e-chkbox-small>span{top:1.5px !important}.e-rptdesigner-paramquery-div{height:100%;overflow:auto;margin-left:8px}.e-rptdesigner-paramquery-label{font-weight:600}.e-rptdesigner-availField-div{height:100%;margin-top:0;padding:0 12px;overflow:auto}.e-rptdesigner-availField-container{margin:0 0 4px 0;padding:5px 0}.e-rptdesigner-availField-containdiv{padding:4px !important}.e-rptdesigner-paramnone-div{border-radius:2px;margin:0 0 0 12px;padding:5px 0}.e-rptdesigner-param-tab-list,.e-rptdesigner-codemodule-tab-list{height:48px !important}.e-designer-hint-newdataset{background-image:url('common-images/reportdesigner/dataset.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-dataset-footer,.e-rptdesigner-shared-footerbtn,.e-rptdesigner-shared-header{overflow:hidden !important}.e-rptdesigner-dataset-footer{margin:0 auto !important;text-align:center !important}.e-rptdesigner-dataset-header{padding:8.5px 7px 7px 0 !important}.e-rptdesigner-dataset-headericon{float:left !important;padding:7px 11px !important}.e-rptdesigner-dataset-headermenu{float:right !important;padding:7px 4px !important}.e-rptdesigner-data-footerbtn{margin:8px !important;margin-bottom:12px !important}.e-rptdesigner-data-treeview{padding:0 3px !important}.e-rptdesigner-data-nodetag{margin:0 !important}.e-rptdesigner-shared-footerTag{margin:0 auto !important;text-align:center !important}.e-rptdesigner-shared-header{display:inline-block !important;padding:8.5px 7px 7px 0 !important}.e-rptdesigner-shared-footer{margin:8px !important;margin-bottom:9px !important}.e-rptdesigner-shared-footerbtn{overflow:hidden !important;float:left !important}.e-rptdesigner-field-data-button{padding:0 !important}.e-rptdesigner-fieldadd-div{position:absolute !important;margin-right:6.5px !important;height:100% !important;margin-top:-13px !important}.e-rptdesigner-split-icon{padding-top:3.5px !important}.e-rptdesigner-split-menu{border-radius:4px !important}.e-rptdesigner-datalist-icon{padding:6px 4px 4px !important}.e-rptdesigner-data-schema{padding:4px !important}.e-rptdesigner-datalist-anchor{margin-top:9px !important;float:right !important}.e-rptdesigner-datalist-close{float:right !important;margin-right:8px !important;margin-top:-2px !important}.e-rptdesigner-datalist-edit{float:right !important;margin-right:5px !important}.e-rptdesigner-list-dragIcon{padding:10px 4px 0 14px !important;float:left !important}.e-rptdesigner-list-iconType{padding:7px 4px !important}.e-reportdesigner-nodeTag{list-style:none outside none !important;padding:0}.e-reportdesigner-nodeContent{position:relative;z-index:10;height:30px;white-space:nowrap;display:block;margin-left:3px;cursor:default}.e-reportdesigner-treeText{display:inline-block;margin-left:4px;cursor:default}.e-reportdesigner-treeRow{margin-left:26px;width:100%;position:relative;left:0;height:34px;margin-top:-36px;cursor:default}.e-querydesigner .e-reportdesigner-treeView a,.e-reportdesigner .e-reportdesigner-treeView a{text-decoration:none}.e-split.e-drop .e-rptdesigner-field-data-button .e-rptdesigner-fieldadd-div .e-rptdesigner-split-icon.e-icon,.e-split.e-drop .e-rptdesigner-field-data-button .e-rptdesigner-fieldadd-div .e-rptdesigner-split-icon.e-icon:before{height:14px !important;width:14px !important}.e-rptdesigner-shared-table{margin-left:3px !important}.e-rptdesigner-shared-column,.e-rptdesigner-shared-row{float:left !important}.e-rptdesigner-shared-label{padding-top:6px !important}.e-designer-hint-newimagemanager{background-image:url('common-images/reportdesigner/image.png');background-position:50% 100%;background-repeat:no-repeat}.e-rptdesigner-imagetitle{overflow:hidden;padding:8.5px 7px 7px 0}.e-rptdesigner-imageicon{float:left;padding:7px 11px}.e-rptdesigner-img-separator{margin:8px;margin-bottom:12px}.e-rptdesigner-img-addbutton{padding-right:3px}.e-rptdesigner-imaglist-container{height:100%;margin:10px;margin-top:0;margin-right:0}.e-rptdesigner-img-container{width:100%;height:100%}.e-rptdesigner-img-divhover{margin:10px;float:left;vertical-align:middle;text-align:center;position:absolute}.e-rptdesigner-img-childdivhover{opacity:.5}.e-rptdesigner-img-addicon{position:absolute;left:27.5px;top:20.5px}.e-rptdesigner-img-deleteicon{position:absolute;left:70.5px;top:54.5px}.e-rptdesigner-img-itemdiv{margin:8px;float:left;vertical-align:middle;text-align:center}.e-rptdesigner-add-icon{display:table-cell !important;vertical-align:middle !important}.e-rptdesigner-dialog-border,.e-rptdesigner-table-dialog{border-radius:2px !important}.e-rptdesigner-okbtn{height:28px !important;width:80px !important;float:right !important}.e-rptdesigner-cancelbtn{height:28px !important;width:80px !important;margin-left:10px !important;float:right !important}.e-rptdesigner-border .e-select{border-left-width:.5px !important}.e-rptdesigner-dialog-height{height:auto !important}.e-rptdesigner-codedialog-height{height:364 !important}.e-rptdesigner-dialog-cursor{cursor:pointer !important}.e-rptdesigner-add-btn{vertical-align:top !important;font-weight:700 !important;line-height:18px !important}.e-rptdesigner-add-label{font-weight:700 !important;cursor:default;vertical-align:top}.e-rptdesigner-dialog-addbtn{float:right;cursor:pointer;display:table;line-height:normal !important}.e-reportdesigner .e-rptdesigner-dialog-addbtn .e-icon,.e-reportdesigner .e-rptdesigner-dialog-addbtn .e-icon::before{height:11px !important}.e-rptdesigner-dragicon{display:block}.e-rptdesigner-ejdialog .e-widget-content{padding:.5em 0 !important}.e-rptdesigner-ejdialog .e-close::before,.e-rptdesigner-dialog .e-close::before,.e-rptdesigner-alertbox .e-close::before{content:"" !important}.e-rptdesigner-ejdialog .e-close::before,.e-rptdesigner-dialog .e-close::before,.e-rptdesigner-alertbox .e-close::before{margin-top:-3px;margin-right:5px}.e-rptdesigner-dialog .e-footerbar,.e-rptdesigner-ejdialog .e-footerbar{padding:9px 12px !important;height:auto !important;display:inline-table !important;width:100%}.e-rptdesigner-dialog .e-titlebar,.e-rptdesigner-ejdialog .e-titlebar,.e-rptdesigner-alertbox .e-titlebar{padding:11.5px .7em !important}.e-rptdesigner-dialog .e-widget-content{padding:.5em 12px !important}.e-rptdesigner-dialog .e-widget-content{line-height:normal !important}.e-rptdesigner-dialog.e-flat-mode .e-widget-content{padding:0 !important}.e-reportdesigner .e-designer-ejwidgets.e-ddl input.e-input{box-shadow:none !important}.e-reportdesigner .e-dialog{outline:0 none !important}.e-designer-ejwidgets:not(.e-rptdesigner-filter) .e-icon.e-search:before{content:"" !important}.e-designer-ejwidgets .e-icon.e-search:before{margin-right:3px !important;margin-top:.5px !important;padding-top:1px !important}.e-designer-ejwidgets .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets-dataConfig .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-drpdown .e-icon.e-arrow-sans-down:before,.e-designer-ejwidgets .e-input-group-icon.e-ddl-icon:before{content:"" !important}.e-designer-ejwidgets-dataConfig .e-icon.e-arrow-sans-down{margin-top:-7px !important;height:8px !important;width:100% !important}.e-rptdesigner-datasetname-list{top:63.5px !important}.e-designer-ejwidgets-colorpicker:not(.e-popup){width:36px !important;height:28px !important}.e-designer-ejwidgets-colorpicker .e-color-container{width:70%}.e-designer-ejwidgets-colorpicker .e-select{width:30%}.e-designer-ejwidgets-colorpicker .e-selected-color{margin-left:-3px !important;margin-top:-2px !important}.e-designer-ejwidgets-colorpicker .e-icon.e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-colorpicker .e-drp-btn .e-icon.e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-colorpicker.e-active .e-in-wrap .e-icon,.e-designer-ejwidgets-colorpicker .e-in-wrap .e-icon{margin-top:-4px !important;-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;-webkit-transform:none !important;transform:none !important}.e-rptdesigner-ejwidgets-splitbtn .e-icon.e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-updown .e-select{width:40px !important}.e-designer-ejwidgets-updown .e-padding{padding:0 !important}.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-down:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-down:before{content:"" !important}.e-designer-ejwidgets-updown .e-icon.e-arrow-sans-up:before,.e-rptdesigner .e-rptviewer-updown .e-arrow-sans-up:before{content:"" !important;-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.e-rptdesigner-new-btn .e-icon.e-arrow-sans-down:before{content:"" !important;-moz-transform:none;-webkit-transform:none;-ms-transform:none;-o-transform:none;transform:none}.e-reportdesigner-designer .e-colorwidget .e-selected-color{width:15px;height:15px}.e-rptdesigner-error-icon,.e-reportdesigner-alertinfo{cursor:pointer}.e-rptdesigner-error-radius{border-radius:2px}.e-rptdesigner-error-tip{opacity:2}.e-rptdesigner-error-content{padding:4px 6px 6px;line-height:1.8}.e-rptdesigner-delete-icon{float:right}.e-designer-top-tip.e-tooltip-wrap,.e-designer-right-tip.e-tooltip-wrap{height:auto;width:218px !important;position:absolute;display:none;z-index:6;opacity:2 !important;font-weight:400 !important;padding:3px !important}.e-designer-bottom-tip.e-tooltip-wrap{height:auto;max-width:210px !important;position:absolute;display:none;z-index:6;padding:3px !important}.e-designer-bottom-tip .e-tipContainer,.e-designer-top-tip .e-tipContainer,.e-designer-right-tip .e-tipContainer{padding:2px !important}.e-designer-bottom-tip .e-arrowTip{height:10px;width:20px;left:15%;display:block}.e-designer-bottom-tip .e-arrowTipInner{left:1px;top:0}.e-designer-top-tip .e-arrowTip{height:10px;width:20px !important;left:20px;top:-10px;display:block}.e-designer-top-tip .e-arrowTipInner{left:1px;top:1px}.e-designer-right-tip .e-arrowTip{height:20px;left:100%;top:10px;display:block}.e-designer-right-tip .e-arrowTipInner{left:0;top:1px}.e-reportdesigner-scroller.e-autohide .e-content{width:100% !important}.e-reportdesigner-scroller .e-scrollbar .e-icon{font-size:8px !important;cursor:pointer}.e-reportdesigner-scroller:not(.e-rptdesigner-scrollsize) .e-vscrollbar{width:12px !important}.e-rptdesigner-scrollsize .e-vscrollbar{width:9px !important}.e-reportdesigner-scroller .e-hscrollbar{height:12px !important;bottom:2px !important}.e-reportdesigner-scroll-index .e-scrollbar{z-index:1000}.e-reportdesigner-dsscroller{padding-bottom:10px}.e-reportdesigner-full-screen{bottom:0;height:100% !important;left:0;position:fixed;right:0;top:0;padding:0;margin:0;width:100% !important;z-index:999}.e-reportdesigner-document-full-screen{overflow:hidden !important}.e-rptdesigner-drag-element{margin:8px}.e-rptdesigner-drag-div{border-radius:1px !important;z-index:50 !important;margin:6px !important}.e-rptdesigner-drag-iconType{margin-top:4px !important}.e-rptdesigner-drag-iconType,.e-rptdesigner-paramdrag-iconType{margin-right:3px !important;margin-left:15px !important;float:left !important}.e-rptdesigner-paramdrag-iconType{margin-top:1px !important}.e-rptdesigner-drag-label{padding:4px 0 !important}.e-rptdesigner-drag-label,.e-rptdesigner-paramdrag-label{margin-left:2px !important;vertical-align:middle !important}.e-rptdesigner-paramdrag-label{padding:4px 0 !important}.e-rptdesigner-dragconfig-iconType{margin-right:3px;margin-left:23px;margin-top:5px;float:left}.e-rptdesigner-exp-cont{cursor:default;float:right}.e-rptdesigner-exp-menu{height:6px;width:6px;margin-top:10px;cursor:default;padding:1px}.e-designer-menu-defaulticon{height:14px;margin-left:3px !important;margin-top:-2px !important}.e-designer-menu-expressionicon{height:14px;margin-left:3px !important;margin-top:1px !important}.e-designer-menu .e-list>a.e-menulink{min-width:0 !important}.e-designer-menu .e-list>a.e-menulink .e-icon.e-arrowhead-right{margin-top:3px !important}.e-designer-menu .e-list{padding:2px !important}.e-rptdesigner-padding-property .e-rptdesigner-exp-cont{margin-top:26px !important}.e-reportdesigner-treeText{font-size:14px}.e-rptdesigner-tablix-cell-menu{padding-left:5px}.e-designer-menu.e-tablix-cell-menu .e-menulink{padding-left:30px !important}.e-rptdesigner-group-line.e-rptdesigner-group-detailIcon{font-size:7px !important;width:7px;height:7px}.e-rptdesigner-rowColumn-container{overflow:hidden;border:0 solid;border-left-width:1px;border-top-width:1px}.e-rptdesigner-rowColumn-openCloseIcon{float:right;margin-right:8px}.e-rptdesigner-rowColumn-rowIconSpan{float:left;padding:0 5px}.e-rptdesigner-rowColumn-headerDiv{display:block;width:100%;height:29px}.e-rptdesigner-rowColumn-headerTable{height:29px}.e-rptdesigner-headerRow{width:50%}.e-rptdesigner-headerRowSpan,.e-rptdesigner-headerColumn{max-width:95px}.e-rptdesigner-rowColumn-rowDiv{position:relative !important;margin:4px 2px 4px 4px;float:left}.e-rptdesigner-rowColumn-columnDiv{position:relative !important;margin:4px 4px 4px 2px;float:right}.e-rptdesigner-rowColumn-containerTable{border-radius:2px !important;height:28px !important;width:100%;display:table;table-layout:fixed !important}.e-rptdesigner-grplabelDiv{padding-right:5px;vertical-align:middle;display:table-cell !important;overflow:hidden !important;white-space:nowrap !important;text-overflow:ellipsis !important}.e-rptdesigner-rowColumn-fieldNameDiv{padding:1.5px 3px;vertical-align:middle;display:block;width:100%}.e-rptdesigner-rowColumn-menuDiv{display:table-cell;width:23px;vertical-align:middle !important}.e-rptdesigner-rowColumn-groupIcon{padding:1.5px 0;padding-left:4px;display:table-cell !important;width:13px}.e-rptdesigner-rowColumn-groupIcon-size{font-size:13px !important;vertical-align:middle !important}.e-rptdesigner-rowColumn-elementDiv{padding:1px 2px 1px 0}.e-rptdesigner-rowColumn-menuIcon{display:block;margin-left:6px;height:13px !important;vertical-align:middle !important;padding-top:2px !important}.e-rptdesigner-rowColumn-advIconSpan{float:right;font-size:17px;margin-left:5px;margin-right:10px}.e-rptdesigner-group-rowIcon,.e-rptdesigner-group-colIcon,.e-rptdesigner-grouping-minimize,.e-rptdesigner-grouping-maximize{font-size:15px !important}.e-rptdesigner-rowColumn-advIconSpan{font-size:17px !important}.e-rptdesigner-groupPanel-resizer{width:100%;height:1px;cursor:n-resize}.e-rptdesigner-groupPanel-resize-helper{height:3px;position:absolute;cursor:n-resize;z-index:1000}.e-rptdesigner-group-rowIcon{padding-left:5px}.e-rptdesigner-tablix-group-row{padding-top:2px;padding-bottom:2px}.e-rptdesigner-tablix-group-topContainer{padding-top:5px;padding-bottom:5px}.e-rptdesigner-tablix-group-bottomContainer{padding-left:4px;padding-top:5px;padding-bottom:5px}.e-rptdesigner-tablix-alert-contentDiv{height:auto;margin:5px;margin-bottom:10px}.e-rptdesigner-tablix-alert-radioBtn{height:auto;margin:8px;margin-left:15px}.e-rptdesigner-tablix-addText-textareaDiv{margin-top:10px;margin-bottom:5px;height:54px}.e-rptdesigner-tablixdataassignmenu{height:auto !important;width:210px;position:absolute;display:none;z-index:2000001}.e-rptdesigner-tablix-searchicon{float:right;margin-top:-18.5px !important;font-size:10px !important}.e-rptdesigner-menu-item{display:block;position:relative;font-size:14px}.e-rptdesigner-menu-item{padding:15px 0 15px 18px !important}.e-rptdesigner-menu-item>a{display:block;font-size:14px}.e-rptdesigner-menu-separator{display:block;position:relative;height:1px !important}.e-rptdesigner-menu-ejdropdowncontrol{display:block;position:relative}.e-rptdesigner-menu-ejdropdowncontrol{padding:15px 0 0 14px !important}.e-rptdesigner-menu-ejsearchcontrol{display:block;position:relative}.e-rptdesigner-menu-ejsearchcontrol{padding:15px 0 15px 14px !important}.e-rptdesigner-menu-ejlistcontrol{display:block;position:relative;height:179px}.e-rptdesigner-menu-ejlistcontrol>div{border:none !important}.e-rptdesigner-fieldList>li{font-size:14px !important}.e-rptdesigner-fieldList>li{padding:16px 0 16px 18px !important}.e-rptdesigner-noFieldDispTag{font-size:12px;vertical-align:middle;text-align:center;display:table-cell;width:100%;height:100%}.e-rptdesigner-noRecords{display:table;width:100%;height:100%;position:absolute;top:0}.e-rptdesigner-document-scroll{overflow:scroll !important}.e-rptdesigner-tablix-content-icon{margin-right:5px !important;line-height:1;cursor:default}.e-rptdesigner-tablix-content-icon{padding:3px 6px !important}.e-rptdesigner-prop-dataAlert{height:50px}.e-rptdesigner-prop-dataAlert-rightCell{width:227px;padding-left:15px}.e-rptdesigner-prop-dataAlert-rightCell{margin-top:2px}.e-rptdesigner-prop-dataAlert-iconDiv{padding-left:10px;margin-top:1px}.e-rptdesigner-prop-dataAlert-btn{width:130px !important;max-width:130px !important}.e-rptdesigner-prop-dataAlert-btnDiv{padding-right:11px;float:right}.e-rptdesigner-prop-dataAlert-caption{font-weight:600}.e-rptdesigner-prop-padding-label-parent{float:left;padding:29px 0}.e-rptdesigner-prop-textarea-label-parent{float:left;padding:17px 0}.e-rptdesigner-prop-label{font-size:12px;float:right;padding-right:10px}.e-rptdesigner-prop-content-container{padding:7px 0}.e-rptdesigner-prop-item-container{padding:7px 10px}.e-rptdesigner-prop-item-checkbox,.e-rptdesigner-prop-label-parent{float:left;padding:7px 0}.e-rptdesigner-expEle-container{height:27px;width:25px;float:right;cursor:default}.e-rptdesigner-subProp-text{font-size:10px;padding-bottom:5px}.e-rptdesigner-subProp-padding-container{padding-top:5px}.e-rptdesigner-prop-padding-exp{padding:22px 0}.e-rptdesigner-prop-textarea-exp{padding:15px 0}.e-rptdesigner-prop-textbox-exp{padding:2px 0;-webkit-appearance:none !important;-moz-appearance:none !important}.e-rptdesigner-prop-advc .e-rptdesigner-txtoverflow,.e-rptdesigner-acrdn-header .e-header-row-txt,.e-rptdesigner-polygon-prop .e-rptdesigner-txtoverflow{padding:4px 12px;font-size:13px;min-width:400px;float:left}.e-rptdesigner-codeinfo:before{content:""}.e-rptdesigner-codeinfo{font-size:14px !important;margin-top:4px;margin-left:8px}.e-rptdesigner-codeinfo-div{display:inline-block;float:right;margin-left:5px;width:25px}.e-rptdesigner-datasearch-textbox{text-align:left}.e-rptdesigner-datasearch-textbox{border-radius:0}.e-rptdesigner-datafield-search-box{height:29px}.e-rptdesigner-datafield-search-box{border-radius:0}.e-rptdesigner-datafield-search-box .e-designer-searchIcon{margin-top:7px;margin-right:12px;font-size:12px}.e-rptdesigner-datafield-search-container{height:52px;padding:10px 8px 12px 8px}.e-designer-ejwidgets.e-input-group .e-clear-icon{padding-bottom:5px !important}.e-designer-ejwidgets.e-input-group .e-combobox{height:26px !important;margin-top:1px !important}.e-designer-ejwidgets .e-input-group-icon.e-ddl-icon{padding:8px 0 8px 5px !important}.e-designer-combobox .e-dropdownbase.e-nodata{height:30px !important;font-size:12px !important;padding:6px 16px !important}.e-reportdesigner .e-publish-content-row{width:100%;display:inline-block;margin-bottom:18px}.e-reportdesigner .e-publish-content-row:first-child{margin-top:26px}.e-reportdesigner .e-publish-content-row .e-publish-labelwrap{float:left;line-height:30px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap{float:left}.e-reportdesigner .e-publish-content-row .e-publish-labelwrap{width:20%}.e-reportdesigner .e-publish-label{float:right;padding-right:20px;line-height:30px}.e-reportdesigner .e-publish-desc-err{height:17px;font-size:12px;line-height:16px;margin-top:6px}.e-reportdesigner .e-publish-desc-row{margin-bottom:4px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-wrap{width:89.9%;height:100%;float:left}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap{width:48px;height:100%;float:left;line-height:60px;cursor:pointer}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap{width:76%;height:auto;display:inline-block}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap .e-publish-category-add{height:28px;text-align:center;line-height:inherit;width:38px;padding:0 5px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap .e-publish-category-plusicon{width:30px;height:30px}.e-reportdesigner .e-publish-content-row .e-publish-contentwrap .e-publish-category-addwrap .e-publish-category-plusicon:before{content:"";font-size:48.85px;display:inline-block;line-height:1px}.e-reportdesigner .e-publish-contentwrap.e-publish-contentwrap-div.e-mark-public-chk-box{padding-top:8px;padding-bottom:8px}.e-reportdesigner .e-designer-select-category .e-select{margin-right:12px}.e-reportdesigner .e-designer-select-category .e-select .e-icon.e-arrow-sans-down:before{font-size:15px !important;margin-top:-1px !important}.e-reportdesigner .e-designer-select-category .e-in-wrap{border-radius:4px 0 0 4px}.e-reportdesigner .e-add-category-dialog .e-designer-constr-textarea{height:55px}.e-designer-addcategory-div{padding:15px 0}.e-designer-addcategory-label{padding-right:20px;float:right}.e-reportdesigner .e-publish-err{display:none;height:16px}.e-reportdesigner .e-designer-publish-category-msg{width:60%}.e-reportdesigner .e-designer-categoryErrWrap{position:absolute;margin-right:5px;float:left;height:30px;width:calc(-140%);display:none}.e-reportdesigner .e-mark-public-info{padding-left:5px;font-size:11px;border-radius:4px}.e-reportdesigner .e-mark-public-info-span{height:14px;line-height:14px;float:left}.e-designer-select-category .e-designer-ejwidgets.e-ddl .e-select{border-left-width:0 !important}.e-reportdesigner .e-map-field-container .e-header,.e-reportdesigner .e-rptvariables-field-container .e-header,.e-reportdesigner .e-indicatorstates-field-container .e-header,.e-reportdesigner .e-secondary-panel-container.e-header{margin-left:1px !important}.e-reportdesigner .e-rptdesigner-data-collapse.e-designer-collection-panel,.e-reportdesigner .e-rptdesigner-data-collapse.e-designer-secondary-panel{font-size:16px !important;float:left;margin:5px;padding:7px 8px 7px 7px !important;display:inline-block !important}.e-reportdesigner .e-rptdesigner-map-collection-title,.e-reportdesigner .e-rptvariables-title,.e-reportdesigner .e-indicatorstates-title,.e-reportdesigner .e-rptdesigner-secondary-panel-title{padding:10px 0;width:320px;float:left;font-size:13px;font-weight:600}.e-reportdesigner .e-rptdesigner-secondary-panel-title{width:400px !important}.e-reportdesigner .e-rptdesigner-map-collection-polygonText{padding:12px 0;width:370px;float:left;font-size:12px}.e-reportdesigner .e-rptdesigner-map-addbtn-container,.e-reportdesigner .e-rptvariables-addbtn-container,.e-reportdesigner .e-indicatorstates-addbtn-container{padding:11px !important;float:right;cursor:pointer}.e-reportdesigner .e-rptdesigner-map-collection-addicon,.e-reportdesigner .e-rptvariables-addicon,.e-reportdesigner .e-indicatorstates-addicon{padding:3px 0 !important}.e-reportdesigner .e-rptdesigner-markerstyle,.e-reportdesigner .e-rptdesigner-bindingfield,.e-reportdesigner .e-rptdesigner-bucket,.e-reportdesigner .e-rptvariables,.e-reportdesigner .e-indicatorstates{padding-top:4px !important}.e-reportdesigner .e-rptvariables-delete{padding-top:8px;padding-left:17px}.e-reportdesigner .e-rptvariables-textbox-exp{padding-left:15px;margin-top:-3px}.e-reportdesigner .e-rptdesigner-polygon-header{padding:0 22px !important}.e-reportdesigner .e-rptdesigner-polygon-header .e-rptdesigner-delete-icon{font-size:15px !important}.e-reportdesigner .e-rptdesigner-edit-polygon{padding:6px 5px;float:left;display:inline-block;width:16px}.e-reportdesigner .e-rptdesigner-edit-polygon .e-reportdesigner-parameter-edit{display:inline-block;font-size:15px !important;padding:6px 0;cursor:pointer}.e-reportdesigner .e-rptdesigner-polygon-header:hover .e-reportdesigner-parameter-edit{display:block !important}.e-reportdesigner .e-rptdesigner-polygon-prop{width:100%;float:left}.e-reportdesigner .e-map-field-container .e-textbox{padding-right:1em !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-preview:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-join:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-exp:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-filter:before{content:""}.e-qrydesigner-schemainfo:before{content:""}.e-qrydesigner-search:before{content:""}.e-qrydesigner-close:before{content:""}.e-reportdesigner-single-drag:before{content:""}.e-querydesigner-toolbarcontainer .e-qrydesigner-param:before{content:""}.e-qrydesigner-update-icon:before{content:""}.e-qrydesigner-webapi:before{content:""}.e-qrydesigner-webapi-rawdata:before{content:""}.e-querydesigner-toolbarcontainer .e-icon.e-toolbar-res-arrow{padding:0 !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-preview,.e-querydesigner-toolbarcontainer .e-qrydesigner-join,.e-querydesigner-toolbarcontainer .e-qrydesigner-exp{margin-top:3px !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-preview,.e-querydesigner-toolbarcontainer .e-qrydesigner-join,.e-querydesigner-toolbarcontainer .e-qrydesigner-exp{margin-top:-2px !important;margin-left:-2px}.e-querydesigner-toolbarcontainer .e-qrydesigner-param{margin-top:1px !important}.e-qrydesigner-switcher{margin:5.5px !important}.e-qrydesigner-code-switcher{display:table;float:right;margin-left:6px}.e-qrydesigner-code-switcher{padding:7px 0;margin-top:1.5px !important}.e-qrydesigner-switch-text-parent{display:table-cell !important;vertical-align:middle !important}.e-querydesigner-toolbarcontainer .e-toolbarfonticonbasic,.e-qrydesigner-update-icon{font-family:'ejreportdesigner' !important}.e-querydesigner-dataset-text{border-radius:2px;line-height:normal}.e-reportdesigner-dataset-selection .e-input,.e-querydesigner-dataset-text{padding-left:10px}.e-querydesigner-toolbarcontainer{display:block;border-width:0;border-radius:0 !important}.e-querydesigner-toolbarcontainer{-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important;box-shadow:0 2px 5px 0 rgba(0,0,0,.2) !important}.e-querydesigner-toolbarcontainer:not(.e-responsive-toolbar){height:48px !important}.e-querydesigner-toolbarcontainer .e-rel-position{cursor:default !important}.e-querydesigner-toolbarcontainer .e-rel-position{margin-top:8.5px}.e-querydesigner-toolbarcontainer .e-rptdesigner-toolbarli{margin-left:12px;margin-right:12px !important}.e-qrydesigner-auto-preview{margin-top:3px}.e-querydesigner-filter-check-parent{padding-bottom:0 !important}.e-querydesigner-filter-check-parent .e-qrydesigner-param-assign.e-check-small{margin-top:4.5px !important}.e-qrydesigner-auto-preview-div{margin-top:2px !important}.e-qrydesigner-queryparam-datatype-parent{width:68px !important}.e-qrydesigner-queryparam-null-parent{width:35px !important}.e-qrydesigner-queryparam-value-parent{width:161px !important}.e-qrydesigner-auto-preview-div .e-chkbox-wrap .e-chkbox-small>span{height:12px !important;width:12px !important;top:2px !important}.e-querydesigner-toolbarcontainer .e-qrydesigner-switch{position:relative;display:inline-block;width:38px;height:21px;margin:0}.e-querydesigner-toolbarcontainer .e-qrydesigner-switch input{display:none}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider{position:absolute;cursor:default;top:0;left:0;right:0;bottom:0;-webkit-transition:.4s;-moz-transition:.4s;-o-transition:.4s;transition:.4s}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider:before{position:absolute;content:"";height:14px;width:14px;left:1px;bottom:3.5px;-webkit-transition:.4s;transition:.4s}.e-querydesigner-toolbarcontainer input:focus+.e-qrydesigner-slider{box-shadow:0 0 1px #2196f3}.e-querydesigner-toolbarcontainer input:checked+.e-qrydesigner-slider:before{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);-moz-transform:translateX(22px);-o-transform:translateX(22px);transform:translateX(22px)}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider.round{border-radius:34px}.e-querydesigner-toolbarcontainer .e-qrydesigner-slider.round:before{border-radius:50%}.e-designer-hint-newtable{background-image:url('common-images/reportdesigner/dragtable.png');background-position:7% 48%;background-repeat:no-repeat}.e-querydesigner{width:100%}.e-qrydesigner-schema{height:100%;float:left}.e-qrydesigner-drag-surface{display:block;overflow:auto;position:relative;width:100%;height:100%}.e-qrydesigner-schema-area{width:100%;height:100%}.e-qrydesigner-schema-scroll{margin-top:5px !important;width:100%}.e-qrydesigner-schema-header{margin:8px 6px !important}.e-qrydesigner-search-cont{border-width:0 !important}.e-qrydesigner-search-cont>.e-qrydesigner-search{text-align:center;vertical-align:middle}.e-qrydesigner-search-cont>.e-qrydesigner-close{vertical-align:middle;text-align:center;font-size:10px}.e-querydesigner .e-splitter .e-splitbar.e-v-bar{height:0 !important}.e-querydesigner .e-splitter .e-splitbar.e-h-bar{width:3px !important}.e-querydesigner .e-splitter .e-splitbar.e-v-bar>.e-collapse,.e-querydesigner .e-splitter .e-splitbar.e-v-bar>.e-expand,.e-querydesigner .e-splitter .e-splitbar.e-h-bar>.e-collapse,.e-querydesigner .e-splitter .e-splitbar.e-h-bar>.e-expand{display:none !important}.e-querydesigner .e-data-table{padding:1px}.e-qrydesigner-toolbar-name{margin-top:4px}.e-qrydesigner-toolbar-table,.e-qrydesigner-exp-table{border-spacing:0 !important}.e-qrydesigner-exp-table td,.e-qrydesigner-exp-table th{padding:0 !important}.e-qrydesigner-exp-innertable{border-spacing:1.5px !important;border-collapse:collapse !important}.e-qrydesigner-datatable .e-icon.e-plus,.e-qrydesigner-datatable .e-icon.e-minus{cursor:pointer}.e-qrydesigner-datatable .e-icon.e-plus,.e-qrydesigner-datatable .e-icon.e-minus{margin-top:11px}.e-qrydesigner-datatable .e-icon.e-plus,.e-qrydesigner-datatable .e-icon.e-minus,.e-reportdesigner-dataset-selection .e-select .e-icon,.e-reportdesigner-dataset-selection.e-popactive .e-select .e-icon{-moz-transform:none !important;-ms-transform:none !important;-o-transform:none !important;-webkit-transform:none !important;transform:none !important}.e-reportdesigner-dataset-selection .e-select .e-arrow-sans-down{margin-top:-5px}.e-qrydesigner-datatable .e-icon.e-plus:before{font-family:ejreportdesigner !important;content:"" !important;font-size:12px !important;margin-right:3px !important;margin-top:.5px !important}.e-qrydesigner-datatable .e-icon.e-minus:before{font-family:ejreportdesigner !important;content:"" !important;font-size:12px !important;margin-right:3px !important;margin-top:0 !important}.e-qrydesigner-dataheader{vertical-align:middle;text-align:center;margin-left:11px;margin-top:-5px;display:inline-block}.e-qrydesigner-treeview{display:inline-block;vertical-align:middle;margin-top:-3px;margin-left:1px;margin-right:5px !important;font-size:17px !important;width:17px !important}.e-qrydesigner-treeview .e-chk-image .e-icon .e-checkmark{margin-top:1px !important}.e-qrydesigner-empty-msg{font-size:11px;text-align:center;vertical-align:top;padding-top:20px}.e-qrydesigner-dragheader{height:45px;width:100%;padding-left:5px;box-shadow:none;border-radius:3px}.e-qrydesigner-table-close{display:table-cell !important;vertical-align:middle !important;float:right !important}.e-qrydesigner-table-close{padding:10px 7px 10px 0 !important}.e-qrydesigner-table-selectall{float:right;vertical-align:middle}.e-qrydesigner-table-selectall{padding:10px 7px 10px 0 !important}.e-qrydesigner-table-settings{vertical-align:middle;float:right}.e-qrydesigner-table-settings{padding:12px 7px 10px 0}.e-qrydesigner-table-header{overflow:hidden;vertical-align:middle;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.e-qrydesigner-table-header{padding:10px 0 10px 10px !important}.e-qrydesigner-table-boxshadow{height:40px !important;padding-left:8px !important;margin-top:2px}.e-qrydesigner-query-table{position:absolute}.e-qrydesigner-query-table{width:230px}.e-query-selection{float:left;padding:2px}.e-query-datatype{float:left;padding:1px 10px 1px 7px}.e-querydesigner .e-data-table .e-list{padding:0 12px !important}.e-querydesigner .e-query-text{-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-left:1px}.e-querydesigner .e-query-text{margin-top:1px}.e-designer-loadbtn{width:80px !important;margin-left:10px}.e-designer-loadbtn{height:18px !important;margin-top:-1px}.e-qrydesigner-table-separator{margin:0 6px}.e-qrydesigner-dialog{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.e-qrydesigner-add-label{font-weight:700 !important;cursor:default;vertical-align:top}.e-qrydesigner-add-icon{display:table-cell !important;vertical-align:middle !important}.e-qrydesigner-add-btn{vertical-align:top !important;font-weight:700 !important}.e-qrydesigner-dialog-border,.e-qrydesigner-table-dialog{border-radius:2px !important}.e-qrydesigner-okbtn{height:28px !important;width:80px !important;float:right !important}.e-qrydesigner-cancelbtn{height:28px !important;width:80px !important;margin-left:10px !important;float:right !important}.e-qrydesigner-okbtn,.e-qrydesigner-cancelbtn{border-radius:4px !important}.e-qrydesigner-table-dialog,.e-qrydesigner-table-dialog table{border-spacing:2px !important;border-collapse:separate !important}.e-qrydesigner-border .e-select{border-left-width:.5px !important}.e-qrydesigner-dialog .e-close::before{content:"" !important}.e-qrydesigner-dialog .e-close::before{margin-top:-3px;margin-right:5px}.e-qrydesigner-dialog .e-footerbar{padding:9px 12px !important;height:auto !important;display:inline-table !important;width:100%}.e-qrydesigner-dialog .e-titlebar{padding:11.5px .7em !important}.e-qrydesigner-dialog .e-widget-content{padding:.5em 12px !important}.e-qrydesigner-dialog-height{height:auto !important}.e-qrydesigner-dialog-addbtn{float:right;cursor:pointer;display:table}.e-qrydesigner-dialog-cursor{cursor:pointer !important}.e-qrydesigner-dialog.e-flat-mode .e-widget-content{padding:0 !important}.e-qrydesigner-delete-icon{float:right}.e-qrydesigner-qryjoiner-width,.e-qrydesigner-storeparameter-width{width:100%}.e-qrydesigner-ellipses{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.e-qrydesigner-exp-datacontainer{margin-left:12px}.e-qrydesigner-exp-emptydiv{margin-left:10px}.e-qrydesigner-exp-txtbx{margin-top:2px;margin-bottom:5px}.e-qrydesigner-exp-textarea{margin-top:6px}.e-qrydesigner-exp-innertable{border-spacing:1.5px !important;border-collapse:collapse !important}.e-qrydesigner-exp-categoryIntable{margin-top:6px;margin-bottom:2px}.e-qrydesigner-exp-optionDiv{margin-top:6px}.e-qrydesigner-exp-optionInput{margin-top:5px}.e-qrydesigner-exp-sepdiv1{margin:25px 10px 0 -3px}.e-qrydesigner-exp-colLable{margin-left:6px}.e-qrydesigner-exp-dataDiv{margin-left:6px;margin-top:6px}.e-qrydesigner-exp-sepdiv2{margin:-10px 10px 0 -3px}.e-qrydesigner-exp-catDesc{margin-right:10px}.e-qrydesigner-exp-desccontent{text-align:justify;margin-top:8px}.e-qrydesigner-exp-example{float:left;word-wrap:break-word;margin-top:8px}.e-qrydesigner-explist-container{border-top-width:1px !important;padding:3px !important}.e-qrydesigner-explist-licontainer{padding:0 !important;list-style:none !important}.e-qrydesigner-explist-txtspan{vertical-align:middle !important;padding-left:2px !important;margin-top:-2px !important;line-height:normal !important;margin-left:5px !important;overflow:hidden !important;white-space:nowrap !important;text-overflow:ellipsis !important}.e-qrydesigner-explist-iconspan{margin-top:2px;float:right;margin-right:12px;cursor:pointer}.e-qrydesigner-textarea{resize:none !important;overflow:auto !important}.e-qrydesigner-textarea,.e-qrydesigner-textbox{padding-bottom:5px;padding-top:5px;padding-right:5px}.e-qrydesigner-explist-lianchor{padding:14px 0 !important}.e-qrydesigner-exp-saveenable{opacity:1 !important}.e-qrydesigner-exp-savedisable{opacity:.5 !important}.e-qrydesigner-queryfilter-row{padding-top:10px}.e-qrydesigner-queryfilter-container{padding:5px 0}.e-qrydesigner-queryfilter-container-div{padding:4px}.e-qrydesigner-queryfilter-field-table{padding-bottom:2px;padding-top:2px}.e-qrydesigner-queryfilter-bool-table{padding-bottom:3px;padding-top:3px}.e-qrydesigner-queryparam-container{margin:5px 0}.e-qrydesigner-queryparam-div,.e-qrydesigner-queryparam-container-div{padding:4px 8px}.e-qrydesigner-queryparam-container-div{padding-bottom:0 !important}.e-qrydesigner-queryparam-label{font-weight:600}.e-qrydesigner-dataparam-table{border-spacing:0 !important}.e-qrydesigner-dataparam-container{padding:5px 3px;margin-top:6px;margin-bottom:2px}.e-qrydesigner-dataparam-container-div{padding:4px 8px}.e-qrydesigner-dataparam-padding{padding-left:10px}.e-qrydesigner-dataparam-errorColum{padding-right:5px}.e-qrydesigner-dataparam-delColum{padding-right:5px;padding-top:5px}.e-qrydesigner-txtoverflow,.e-qrydesigner-exp-savebtn,.e-qrydesigner-exp-closebtn,.e-qrydesigner-loadMoreBtn,.e-qrydesigner-okbtn,.e-qrydesigner-cancelbtn{overflow:hidden !important;white-space:nowrap !important;-ms-text-overflow:ellipsis !important;-o-text-overflow:ellipsis !important;text-overflow:ellipsis !important}.e-qrydesigner-cursor,.e-qrydesigner-title-label{cursor:default !important}.e-qrydesigner-exp-td,.e-qrydesigner-dragheader,.e-qrydesigner-dialog .e-footerbar{-webkit-box-sizing:border-box !important;-moz-box-sizing:border-box !important;box-sizing:border-box !important}.e-rptdesigner-autopreview{padding-top:1px !important}.e-querydesigner .e-query-editor .CodeMirror{height:100% !important}.e-querydesigner .e-grid.scroll .e-gridcontent{overflow-x:scroll !important;overflow-y:scroll !important}.e-querydesigner .e-grid.scroll .e-gridheader div:first-child{border-right-width:1px;overflow-y:hidden;overflow-x:hidden}.e-querydesigner .e-grid.scroll .e-gridheader{padding-right:17px;overflow-y:hidden;overflow-x:hidden}.e-querydesigner .e-qrydesigner-schemainfo{font-size:14px;position:absolute;float:right;padding-left:7px;padding-top:8px}.e-querydesigner .e-qrydesigner-schema-header.e-schemainfo{border:0 none;border-radius:0}.e-querydesigner .e-qrydesigner-toolbar-table.e-schemainfo{border-radius:4px;display:inline-table;vertical-align:middle}.e-querydesigner .e-qrydesigner-toolbar-table.e-schemainfo{border-bottom:1px solid #cecece;border-collapse:collapse}.e-querydesigner .e-qrydesigner-toolbar-table.e-schemainfo td{padding:1px}.e-querydesigner .e-qrydesigner-schema-area .e-qrydesigner-datatable .e-icon.e-lazy-load.e-plus:before,.e-querydesigner .e-qrydesigner-schema-area .e-qrydesigner-datatable .e-icon.e-lazy-load.e-minus:before{content:"" !important}
\ No newline at end of file
diff --git a/wwwroot/css/bold-reports/bold.widgets.core.material.min.css b/wwwroot/css/bold-reports/bold.widgets.core.material.min.css
index 007b30e..9e6a5e6 100644
--- a/wwwroot/css/bold-reports/bold.widgets.core.material.min.css
+++ b/wwwroot/css/bold-reports/bold.widgets.core.material.min.css
@@ -1,8 +1,8 @@
@charset "UTF-8";
/*!
* filename: ej.widgets.core.material.min.css
-* version : 3.3.23
-* Copyright 2001 - 2021 Syncfusion Inc. All rights reserved.
+* version : 4.1.78
+* Copyright 2001 - 2022 Syncfusion Inc. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
diff --git a/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.compatibility.min.css b/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.compatibility.min.css
index f40a5b8..60a7f37 100644
--- a/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.compatibility.min.css
+++ b/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.compatibility.min.css
@@ -1,8 +1,8 @@
@charset "UTF-8";
/*!
* filename: ej.reportdesigner.theme.compatibility.min.css
-* version : 3.3.23
-* Copyright 2001 - 2021 Syncfusion Inc. All rights reserved.
+* version : 4.1.78
+* Copyright 2001 - 2022 Syncfusion Inc. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
diff --git a/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.min.css b/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.min.css
index 5eec8da..be411cb 100644
--- a/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.min.css
+++ b/wwwroot/css/bold-reports/material/bold.reportdesigner.theme.min.css
@@ -1,8 +1,8 @@
@charset "UTF-8";
/*!
* filename: ej.reportdesigner.theme.min.css
-* version : 3.3.23
-* Copyright 2001 - 2021 Syncfusion Inc. All rights reserved.
+* version : 4.1.78
+* Copyright 2001 - 2022 Syncfusion Inc. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
diff --git a/wwwroot/css/bold-reports/material/bold.theme.compatibility.min.css b/wwwroot/css/bold-reports/material/bold.theme.compatibility.min.css
index 78419a0..5656fbb 100644
--- a/wwwroot/css/bold-reports/material/bold.theme.compatibility.min.css
+++ b/wwwroot/css/bold-reports/material/bold.theme.compatibility.min.css
@@ -1,8 +1,8 @@
@charset "UTF-8";
/*!
* filename: ej.theme.compatibility.min.css
-* version : 3.3.23
-* Copyright 2001 - 2021 Syncfusion Inc. All rights reserved.
+* version : 4.1.78
+* Copyright 2001 - 2022 Syncfusion Inc. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
diff --git a/wwwroot/css/bold-reports/material/bold.theme.min.css b/wwwroot/css/bold-reports/material/bold.theme.min.css
index 71cb339..fb42341 100644
--- a/wwwroot/css/bold-reports/material/bold.theme.min.css
+++ b/wwwroot/css/bold-reports/material/bold.theme.min.css
@@ -1,8 +1,8 @@
@charset "UTF-8";
/*!
* filename: ej.theme.min.css
-* version : 3.3.23
-* Copyright 2001 - 2021 Syncfusion Inc. All rights reserved.
+* version : 4.1.78
+* Copyright 2001 - 2022 Syncfusion Inc. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
diff --git a/wwwroot/css/bold-reports/material/images/slider-tick.png b/wwwroot/css/bold-reports/material/images/slider-tick.png
index 86550cd..3c2e21a 100644
Binary files a/wwwroot/css/bold-reports/material/images/slider-tick.png and b/wwwroot/css/bold-reports/material/images/slider-tick.png differ
diff --git a/wwwroot/css/common/common.css b/wwwroot/css/common/common.css
index ac00e2c..313ad15 100644
--- a/wwwroot/css/common/common.css
+++ b/wwwroot/css/common/common.css
@@ -54,7 +54,46 @@
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
+ #category_hidden, #category_dropdown, #subcategory_hidden, #subcategory_dropdown,#startdate,#enddate {
+ background-color: #fafafa;
+ }
+ #update {
+ width: 100px;
+ font-size: 13px
+ }
+ #checkall_wrap {
+ height: 35px;
+ display: block;
+ padding: 15px 0 15px 18px;
+ padding-top: 5px;
+ border-bottom: 1px solid #c8c8c8;
+ }
+ #r-w-property-name-category, #r-w-property-name-subcategory, #r-w-property-name-startdate, #r-w-property-name-enddate,#category_hidden, #subcategory_hidden {
+ font-size: 13px
+ }
+ #r-w-property-subcategory, #r-w-property-startdate, #r-w-property-enddate{
+ margin-top:15px;
+ }
+ #r-w-property-value-subcategory {
+ position: relative;
+ right: 25px
+ }
+ #r-w-property-value-startdate {
+ position:relative;
+ right:5px
+ }
+ #ejcheckall.e-chkbox-wrap .e-text {
+ vertical-align: middle;
+ font-size: 14px;
+ padding-left: 24px;
+ }
+ @media only screen and (max-width: 1080px) {
+
+ #r-w-property-value-subcategory{
+ margin: 0 0 0 20px;
+ }
+ }
@-webkit-keyframes sk-bouncedelay {
0%, 80%, 100% {
diff --git a/wwwroot/css/common/sidebar.css b/wwwroot/css/common/sidebar.css
index 722d5b6..cb6601c 100644
--- a/wwwroot/css/common/sidebar.css
+++ b/wwwroot/css/common/sidebar.css
@@ -43,7 +43,7 @@
width: 120px;
margin: 8px;
background-image: url('./../../assets/sidebar/landscape.png');
- background-size: 100% 1000%;
+ background-size: 100% 1200%;
}
.ej-sidebar-content .ej-sb-toc .ej-sb-toc-card .ej-portrait-img {
@@ -52,7 +52,7 @@
width: 90px;
margin: 8px;
background-image: url('./../../assets/sidebar/portrait.png');
- background-size: 100% 1300%;
+ background-size: 100% 1400%;
}
.ej-sidebar-content .ej-sb-toc .ej-sb-toc-card .ej-sb-toc-title {
diff --git a/wwwroot/css/common/writer.css b/wwwroot/css/common/writer.css
index 954a25a..ac201d9 100644
--- a/wwwroot/css/common/writer.css
+++ b/wwwroot/css/common/writer.css
@@ -67,7 +67,7 @@
height: 160px;
margin: 15px 0;
background-image: url('./../../assets/sidebar/landscape.png');
- background-size: 100% 1000%;
+ background-size: 100% 1200%;
}
.r-w-container .r-w-sample-container .r-w-sample.r-w-sample-portrait .r-w-sample-image {
@@ -75,7 +75,7 @@
height: 240px;
margin: 15px 0;
background-image: url('./../../assets/sidebar/portrait.png');
- background-size: 100% 1300%;
+ background-size: 100% 1400%;
}
.r-w-container .r-w-sample-container .r-w-sample .r-w-sample-title {
diff --git a/wwwroot/extensions/barcode.css b/wwwroot/extensions/barcode.css
new file mode 100644
index 0000000..9fea938
--- /dev/null
+++ b/wwwroot/extensions/barcode.css
@@ -0,0 +1,47 @@
+.customitem-barcode {
+ background-image: url('images/barcode.png');
+}
+
+.customitem-qrbarcode {
+ background-image: url('images/qrbarcode.png');
+}
+
+.customitem-barcode,
+.customitem-qrbarcode {
+ background-position: 50% 50%;
+ background-repeat: no-repeat;
+ height: 25px;
+}
+
+.e-rptdesigner-itempanel-dragelements .customitem-barcode,
+.e-rptdesigner-itempanel-dragelements .customitem-qrbarcode {
+ margin-top: 0px !important;
+ height: 100%;
+}
+
+.e-rptdesigner-loaderDiv .e-rptdesigner-spinnerDiv {
+ box-sizing: content-box !important;
+ -moz-box-sizing: content-box !important;
+ -webkit-box-sizing: content-box !important;
+}
+
+/* Safari */
+@-webkit-keyframes spin {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ }
+
+ 100% {
+ -webkit-transform: rotate(360deg);
+ }
+}
+
+@keyframes spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+
+ 100% {
+ transform: rotate(360deg);
+ }
+}
diff --git a/wwwroot/extensions/images/barcode.png b/wwwroot/extensions/images/barcode.png
new file mode 100644
index 0000000..66af8b4
Binary files /dev/null and b/wwwroot/extensions/images/barcode.png differ
diff --git a/wwwroot/extensions/images/qrbarcode.png b/wwwroot/extensions/images/qrbarcode.png
new file mode 100644
index 0000000..0d191da
Binary files /dev/null and b/wwwroot/extensions/images/qrbarcode.png differ
diff --git a/wwwroot/resources/Report/barcode.rdl b/wwwroot/resources/Report/barcode.rdl
new file mode 100644
index 0000000..aee1d1a
--- /dev/null
+++ b/wwwroot/resources/Report/barcode.rdl
@@ -0,0 +1,1229 @@
+
+
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 135.0001pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 01234567
+
+
+ BarcodeType
+ Code128A
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Code128A
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 232.5002pt
+ 135.0001pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 01234567
+
+
+ BarcodeType
+ Code128B
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Code128B
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 450.0004pt
+ 135.0001pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Code128C
+
+
+
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 0123456789
+
+
+ BarcodeType
+ Code128C
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 232.5002pt
+ 390.0003pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 001234567895
+
+
+ BarcodeType
+ UpcBarcode
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ UPCA
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 232.5002pt
+ 7.50001pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 60.00007pt
+ 26.25002pt
+ 82.50007pt
+ 82.50007pt
+
+
+ BarcodeValue
+ 012345673
+
+
+ BarcodeType
+ qrbarcode
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ matrixbarcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ QR Code
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 450.0004pt
+ 390.0003pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 1234567823560
+
+
+ BarcodeType
+ EAN-13
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ EAN-13
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 450.0004pt
+ 262.5002pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ A123456B
+
+
+ BarcodeType
+ Codabar
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Codabar
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 15.00001pt
+ 390.0003pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 0123456789
+
+
+ BarcodeType
+ Interleaved 2 of 5
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Interleaved 2 of 5
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 15.00001pt
+ 7.50001pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ QR Code
+
+
+
+
+
+
+
+
+ 60.00005pt
+ 30.00002pt
+ 75.00006pt
+ 75.00006pt
+
+
+ BarcodeValue
+ https://demos.boldreports.com
+
+
+ BarcodeType
+ qrbarcode
+
+
+ DisplayBarcodeText
+ false
+
+
+
+
+
+ matrixbarcode
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 232.5002pt
+ 262.5002pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Code39 Extended
+
+
+
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 0123456
+
+
+ BarcodeType
+ Code39Extended
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 450.0004pt
+ 7.50001pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Code93
+
+
+
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 123456789
+
+
+ BarcodeType
+ Code93
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 15.00001pt
+ 262.5002pt
+ 112.5001pt
+ 202.5002pt
+
+
+
+
+
+ 1.5pt
+ 37.50003pt
+ 60.00005pt
+ 199.5002pt
+
+
+ BarcodeValue
+ 01234567
+
+
+ BarcodeType
+ Code39
+
+
+ DisplayBarcodeText
+ true
+
+
+
+
+
+ barcode
+
+
+ 1.5pt
+ 0pt
+ 16.50001pt
+ 199.5002pt
+
+
+
+ true
+ true
+
+
+
+
+ Code39
+
+
+
+
+
+
+
+
+ 15.00001pt
+ 20.25002pt
+ 0pt
+ 172.5001pt
+
+
+
+
+
+ true
+
+
+ 518.2504pt
+
+ 669pt
+
+ 792pt
+ 745.5pt
+
+
+
+
+ 37.5pt
+ true
+ true
+
+
+ 0pt
+ 0pt
+ 37.50003pt
+ 669.0005pt
+
+
+
+
+
+ 15pt
+ 4.875pt
+ 23.25pt
+ 120.75pt
+
+
+
+ true
+ true
+
+
+
+
+ Barcode Types
+
+
+
+
+
+
+
+
+ true
+
+
+
+ 37.5pt
+ 37.5pt
+ 37.5pt
+ 37.5pt
+
+
+
+
+
+
+ 0
+ Inch
+ Px
+
\ No newline at end of file
diff --git a/wwwroot/resources/Report/consolidated-balance-sheet.rdlc b/wwwroot/resources/Report/consolidated-balance-sheet.rdlc
index 0b1b11b..bfb96db 100644
--- a/wwwroot/resources/Report/consolidated-balance-sheet.rdlc
+++ b/wwwroot/resources/Report/consolidated-balance-sheet.rdlc
@@ -29,7 +29,7 @@
- For the Last 4 Quaters
+ For the Last 4 Quarters
+
+
+
+
+ 0.11458in
+ 0.05549in
+ 0.71360in
+ 10.22017in
+
+
+
+ Sales
+
+
+
+ 1.19141in
+
+
+ 1.19141in
+
+
+ 1.39147in
+
+
+ 6.44219in
+
+
+
+
+ 0.32498in
+
+
+
+
+ 0in
+ 0in
+ 0.32498in
+ 1.19141in
+
+
+
+ true
+ true
+
+
+
+
+ Year
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+ 0in
+ 0in
+ 0.32498in
+ 1.19141in
+
+
+
+ true
+ true
+
+
+
+
+ Category
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+ 0in
+ 0in
+ 0.32498in
+ 1.39147in
+
+
+
+ true
+ true
+
+
+
+
+ Sales
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+ 0in
+ 0in
+ 0.32498in
+ 6.4422in
+
+
+
+ true
+ true
+
+
+
+
+ Sales Indicator
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+ 0.38330in
+
+
+
+
+ 0in
+ 0in
+ 0.38330in
+ 1.19141in
+
+
+
+ true
+ true
+
+
+
+
+ =Fields!OrderYear.Value
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+ 0in
+ 0in
+ 0.38330in
+ 1.19141in
+
+
+
+ true
+ true
+
+
+
+
+ =Fields!SubCat.Value
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+ 0in
+ 0in
+ 0.38330in
+ 1.39147in
+
+
+
+ true
+ true
+
+
+
+
+ =Fields!Sales.Value
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+ 0in
+ 0in
+ 0.38330in
+ 6.4422in
+
+
+
+ Sales
+
+
+
+ Sales
+
+
+
+
+
+
+
+
+ =Fields!OrderQtr.Value
+
+
+
+
+ =Fields!OrderQtr.Value
+
+
+ =Fields!OrderQtr.Value
+
+
+
+
+
+
+
+
+
+ =Sum(Fields!Sales.Value)
+
+
+
+ true
+ true
+ Right
+
+
+
+
+
+ Output
+
+
+ Bar
+
+
+
+
+
+
+
+ false
+ false
+
+
+
+ Primary
+ Primary
+
+ false
+ Partial
+ None
+ Black
+ Solid
+ Underline
+ false
+ false
+ 0pt
+
+
+
+
+
+
+
+
+ False
+
+
+
+
+
+
+
+ False
+
+ False
+
+
+
+ Default
+ Default
+
+
+
+
+
+ Default
+ Default
+
+
+
+
+
+ 0
+ Default
+ Default
+
+
+
+
+
+ 0.5
+ Default
+ Default
+
+ null
+ Default
+
+ false
+ Ragged
+ 0
+ Auto
+
+
+
+
+ False
+
+
+
+
+
+
+
+ False
+
+ False
+
+
+
+ Default
+ Default
+
+
+
+
+
+ Default
+ Default
+
+
+
+
+
+ 0
+ Default
+ Default
+
+
+
+
+
+ 0.5
+ Default
+ Default
+
+ null
+ Opposite
+
+ false
+ Ragged
+ 0
+ Auto
+
+
+
+
+
+
+ False
+
+
+
+
+
+
+
+
+
+
+
+ Default
+ Default
+
+
+
+
+
+ Default
+ Default
+
+
+
+
+
+ 0
+ Default
+ Default
+
+
+
+
+
+ 0.5
+ Default
+ Default
+
+ null
+ Default
+ 0
+ =Max(Fields!Sales.Value, "Tablix1")
+
+ false
+ Ragged
+ 0
+ Auto
+
+
+
+
+ False
+
+
+
+
+
+
+
+
+
+
+
+ Default
+ Default
+
+
+
+
+
+ Default
+ Default
+
+
+
+
+
+ 0
+ Default
+ Default
+
+
+
+
+
+ 0.5
+ Default
+ Default
+
+ null
+ Opposite
+
+ false
+ Ragged
+ 0
+ Auto
+
+
+
+
+
+
+ 10
+ 0
+ 0
+ 0
+
+
+
+
+
+ BrightPastel
+
+
+
+
+ No Data Available
+ false
+
+ TopCenter
+ 0
+ Auto
+
+ DataBar
+
+ 1
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ After
+
+
+
+
+
+
+
+
+ 431.25pt
+