rapidfireai 0.0.1__py3-none-any.whl → 0.9.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rapidfireai might be problematic. Click here for more details.
- rapidfireai/__init__.py +11 -5
- rapidfireai/automl/__init__.py +20 -0
- rapidfireai/automl/base.py +48 -0
- rapidfireai/automl/datatypes.py +42 -0
- rapidfireai/automl/grid_search.py +125 -0
- rapidfireai/automl/model_config.py +102 -0
- rapidfireai/automl/random_search.py +145 -0
- rapidfireai/backend/__init__.py +0 -0
- rapidfireai/backend/chunks.py +63 -0
- rapidfireai/backend/controller.py +637 -0
- rapidfireai/backend/scheduler.py +137 -0
- rapidfireai/backend/worker.py +272 -0
- rapidfireai/cli.py +380 -0
- rapidfireai/db/__init__.py +0 -0
- rapidfireai/db/db_interface.py +135 -0
- rapidfireai/db/rf_db.py +694 -0
- rapidfireai/db/tables.sql +64 -0
- rapidfireai/dispatcher/dispatcher.py +391 -0
- rapidfireai/dispatcher/gunicorn.conf.py +25 -0
- rapidfireai/experiment.py +168 -0
- rapidfireai/frontend/build/asset-manifest.json +276 -0
- rapidfireai/frontend/build/favicon.ico +0 -0
- rapidfireai/frontend/build/index.html +1 -0
- rapidfireai/frontend/build/manifest.json +15 -0
- rapidfireai/frontend/build/pdf.worker.js +1 -0
- rapidfireai/frontend/build/report.html +39 -0
- rapidfireai/frontend/build/static/css/1482.3b7bf531.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/2730.3f8937ff.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/318.0def90a7.css +7 -0
- rapidfireai/frontend/build/static/css/4762.9b7b71f7.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/4950.487ecc8b.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/5170.2574ce9d.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6121.4d541986.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6343.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6534.433c213f.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6920.ffac4b2a.css +2 -0
- rapidfireai/frontend/build/static/css/7246.bf2f0c87.css +9 -0
- rapidfireai/frontend/build/static/css/7367.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/8690.05d081e5.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9531.d0910d3c.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9780.363e4943.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/main~d91a9049.c0be472c.css +1 -0
- rapidfireai/frontend/build/static/js/1000.e5ed264b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1012.ac98ab59.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1079.6c13ac0d.js +1 -0
- rapidfireai/frontend/build/static/js/110.9059f3b8.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1142.872d0010.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1167.9a6da14c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1248.60890b4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1262.83dc7673.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/1303.7d19305c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1351.45076ff3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1355.b896a592.js +1 -0
- rapidfireai/frontend/build/static/js/1357.02c46a02.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1470.c51d60c6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1482.23b74f50.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1500.19799d8d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1648.d3b9edc7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1860.7d96e3f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1909.5b1d9ff4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js.LICENSE.txt +11 -0
- rapidfireai/frontend/build/static/js/1933.deba26ca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/21.aac92802.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2103.0ca12071.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2258.b3b8fab4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2289.9ad51e87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js +2 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/2346.ed99ca72.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2386.0a660834.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2402.465048f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/243.5a83bbca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2589.68571e16.js +1 -0
- rapidfireai/frontend/build/static/js/2647.65092bab.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2691.65d4a4e7.js +1 -0
- rapidfireai/frontend/build/static/js/2730.b38dd6f3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2746.ef752da4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2779.580d4491.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2799.fe5993b2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/2901.ee0c606b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/2956.a393c8cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2972.679bed05.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js.LICENSE.txt +51 -0
- rapidfireai/frontend/build/static/js/3093.488df653.js +1 -0
- rapidfireai/frontend/build/static/js/3145.66ee61b9.js +1 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/3307.f6fb258c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3325.d5b03d65.js +1 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/3387.bb8edad3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3448.438e6579.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3460.735eea87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js +2 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js +2 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3563.cc828e19.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js.LICENSE.txt +4 -0
- rapidfireai/frontend/build/static/js/3608.403b4b79.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3652.cb8add7f.js +1 -0
- rapidfireai/frontend/build/static/js/3775.5230b157.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js +2 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3835.d9946ff9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3964.874f0297.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3968.275cbc3d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3999.765cbd82.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4020.4452c046.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4138.2f6f6d9f.js +1 -0
- rapidfireai/frontend/build/static/js/4160.f424554c.js +1 -0
- rapidfireai/frontend/build/static/js/4180.50cea095.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4221.b0bba3f5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4250.5bb49278.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4297.15777d8f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js +2 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js +2 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/4578.a8124588.js +1 -0
- rapidfireai/frontend/build/static/js/4596.89a97480.js +1 -0
- rapidfireai/frontend/build/static/js/4748.566f435a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4762.928e8a90.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js +2 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4804.26b50dd4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4850.62390a45.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4862.a0ccb221.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/491.5dc8ed40.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/4943.6d345fd3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4950.bc182e62.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/5170.0065e96f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js +2 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js.LICENSE.txt +3 -0
- rapidfireai/frontend/build/static/js/5229.7dd42316.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5286.4c1ad26b.js +1 -0
- rapidfireai/frontend/build/static/js/5486.21cff711.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5526.7b368956.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5605.1ee4d87b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5682.40b42d8b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5794.9433d867.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/5862.50f42a0b.js +1 -0
- rapidfireai/frontend/build/static/js/5895.e26742f1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5919.edd4a5cf.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/598.a0e792ae.js +1 -0
- rapidfireai/frontend/build/static/js/6058.74162bf9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/6335.9fca442d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6336.e05e1154.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6343.2bcd28ff.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6363.a319b8f2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6478.344abf25.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6504.1c004564.js +1 -0
- rapidfireai/frontend/build/static/js/6534.ec7e149b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6715.55a5c19c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js.LICENSE.txt +19 -0
- rapidfireai/frontend/build/static/js/6846.67103d0e.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6861.34cf0198.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js.LICENSE.txt +5 -0
- rapidfireai/frontend/build/static/js/6933.8b564944.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/699.d0437920.js +1 -0
- rapidfireai/frontend/build/static/js/7076.4182f63a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7186.42ad86d5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7248.a46635fd.js +1 -0
- rapidfireai/frontend/build/static/js/725.6b15a14a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7266.3575539d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7367.7120474f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7436.8e226055.js +1 -0
- rapidfireai/frontend/build/static/js/7504.ef223844.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7603.ee049fe3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7721.7390b3cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7731.5796cced.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7832.7976a3e4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7844.72cc2e81.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7948.48eab032.js +1 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8017.a9e7dc5a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js +2 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js.LICENSE.txt +41 -0
- rapidfireai/frontend/build/static/js/8123.b69db974.js +1 -0
- rapidfireai/frontend/build/static/js/813.065a87e5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8262.04bc17d1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8300.75adcc4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8336.b1d3e764.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8365.26cf64ea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8486.8ec852a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8497.19378265.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8541.4c55c9f4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8712.a9445fe6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8763.61761e08.js +1 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8867.767462b7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8953.c0f88dea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js.LICENSE.txt +12 -0
- rapidfireai/frontend/build/static/js/9079.88a8d2a3.js +1 -0
- rapidfireai/frontend/build/static/js/9082.37c40520.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js +2 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js +2 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9168.027bf2fd.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9194.9c5cc548.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9244.026f4aee.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js +2 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9369.7d1a0a1d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9427.7c8442e7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/944.55948859.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js +2 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js.LICENSE.txt +62 -0
- rapidfireai/frontend/build/static/js/9531.3ce05781.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9620.b6e973a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9645.6fddfa65.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9669.d38dda6d.js +1 -0
- rapidfireai/frontend/build/static/js/9682.41b6b807.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js.LICENSE.txt +23 -0
- rapidfireai/frontend/build/static/js/9723.d3c7fe9e.js +1 -0
- rapidfireai/frontend/build/static/js/9780.02a27630.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9815.b8db3c5d.js +1 -0
- rapidfireai/frontend/build/static/js/9886.2940b53a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/main~1f912138.fa9d03b1.js +1 -0
- rapidfireai/frontend/build/static/js/main~43dd7041.2e00860d.js +1 -0
- rapidfireai/frontend/build/static/js/main~84781932.68deffff.js +1 -0
- rapidfireai/frontend/build/static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg +32 -0
- rapidfireai/frontend/build/static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png +0 -0
- rapidfireai/frontend/build/static/media/chart-bar.0fd4a63680fba840a7b69fbf07969f79.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-contour.0d4b306f2669f3ad25375568935e3ce3.svg +5 -0
- rapidfireai/frontend/build/static/media/chart-difference.16174216d6f3b7c24f40e3541fe0ca2c.svg +20 -0
- rapidfireai/frontend/build/static/media/chart-image.cc434c4dc50780966344e2385a15f8fe.svg +6 -0
- rapidfireai/frontend/build/static/media/chart-line.0adaa2036bb4eb5956db6d0c7e925a3d.svg +4 -0
- rapidfireai/frontend/build/static/media/chart-parallel.da7dedf539b2af4b654d377c679173e4.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-scatter.69118d0023a6ff3973f7fa913834ac47.svg +9 -0
- rapidfireai/frontend/build/static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg +26 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2 +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.8b43027f47b20503057d.eot +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg +2671 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff +0 -0
- rapidfireai/frontend/build/static/media/icon-visible-fill.8d34cd35303828fdfc15154f5536e63b.svg +7 -0
- rapidfireai/frontend/build/static/media/no-experiments.0e4f4a114ef73e7d81c09474aba64b6c.svg +22 -0
- rapidfireai/frontend/build/static/media/parallel-chart-placeholder.234ef0c5b220ef2a5a6fa5bafff173f7.svg +16 -0
- rapidfireai/frontend/build/static/media/permission-denied-lock.16036747d57cd663d7df223781a447b2.svg +14 -0
- rapidfireai/frontend/build/static/media/promo-modal-content.e3b2c6c568ac192b9bec54b838b54850.svg +30 -0
- rapidfireai/frontend/build/static/media/registered-model-grey-ok.8274b58d39504c8d1b8c358aa1c9aa35.svg +23 -0
- rapidfireai/frontend/build/static/media/warning.290a3b14118933547965e91ea61c5a61.svg +3 -0
- rapidfireai/frontend/proxy_middleware.py +233 -0
- rapidfireai/frontend/server.py +25 -0
- rapidfireai/ml/__init__.py +0 -0
- rapidfireai/ml/callbacks.py +176 -0
- rapidfireai/ml/checkpoint_utils.py +540 -0
- rapidfireai/ml/trainer.py +309 -0
- rapidfireai/start.sh +634 -0
- rapidfireai/utils/__init__.py +0 -0
- rapidfireai/utils/automl_utils.py +51 -0
- rapidfireai/utils/constants.py +141 -0
- rapidfireai/utils/datapaths.py +69 -0
- rapidfireai/utils/exceptions.py +82 -0
- rapidfireai/utils/experiment_utils.py +370 -0
- rapidfireai/utils/logging.py +87 -0
- rapidfireai/utils/mlflow_manager.py +121 -0
- rapidfireai/utils/serialize.py +15 -0
- rapidfireai/utils/shm_manager.py +469 -0
- rapidfireai/utils/trainer_config.py +23 -0
- rapidfireai/utils/worker_manager.py +219 -0
- rapidfireai/version.py +6 -0
- rapidfireai-0.9.9.dist-info/METADATA +242 -0
- rapidfireai-0.9.9.dist-info/RECORD +318 -0
- rapidfireai-0.9.9.dist-info/entry_points.txt +2 -0
- rapidfireai-0.0.1.dist-info/METADATA +0 -37
- rapidfireai-0.0.1.dist-info/RECORD +0 -6
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/WHEEL +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/licenses/LICENSE +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.RequestStateWrapper-error{margin-left:auto;margin-right:auto;margin-top:50px;width:auto}.sticky-header{left:0;position:sticky;position:-webkit-sticky}.compare-run-table{display:block;overflow:auto;width:100%}.compare-table th.inter-title{background:transparent;padding:20px 0 0}.compare-table .head-value{overflow:hidden;overflow-wrap:break-word}.compare-table td.data-value,.compare-table th.data-value{max-width:120px;overflow:hidden;text-overflow:ellipsis}.responsive-table-container{overflow-x:auto;width:100%}.compare-table .diff-row .data-value{background-color:hsla(48,83%,86%,.5);color:#555}.compare-table .diff-row .head-value,.compare-table .diff-row:hover{background-color:#f9edbe;color:#555}.compare-table{margin-bottom:20px;max-width:100%;width:100%}.compare-table td,.compare-table th{border-bottom:1px solid #e8e8e8;padding:12px 8px}.compare-table th{color:rgba(0,0,0,.85);font-weight:500;text-align:left}.compare-table th,.compare-table>tbody>tr:hover:not(.diff-row)>td:not(.highlight-data){background-color:#fafafa}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ag-grid,ag-grid-angular,ag-grid-aurelia,ag-grid-ng2,ag-grid-polymer{display:block}.ag-hidden{display:none!important}.ag-invisible{visibility:hidden!important}.ag-drag-handle{cursor:-webkit-grab;cursor:grab}.ag-column-drop-wrapper{display:flex}.ag-column-drop-horizontal-half-width{display:inline-block;width:50%!important}.ag-unselectable{-moz-user-select:none;-webkit-user-select:none;user-select:none}.ag-selectable{-moz-user-select:text;-webkit-user-select:text;user-select:text}.ag-tab{position:relative}.ag-tab-guard{display:block;height:0;width:0}.ag-select-agg-func-popup,.ag-tab-guard{position:absolute}.ag-input-wrapper,.ag-picker-field-wrapper{align-items:center;display:flex;flex:1 1 auto;line-height:normal;position:relative}.ag-shake-left-to-right{-webkit-animation-direction:alternate;animation-direction:alternate;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:ag-shake-left-to-right;animation-name:ag-shake-left-to-right}@-webkit-keyframes ag-shake-left-to-right{0%{padding-left:6px;padding-right:2px}to{padding-left:2px;padding-right:6px}}@keyframes ag-shake-left-to-right{0%{padding-left:6px;padding-right:2px}to{padding-left:2px;padding-right:6px}}.ag-root-wrapper{cursor:default;display:flex;flex-direction:column;overflow:hidden;position:relative}.ag-root-wrapper.ag-layout-normal{height:100%}.ag-watermark{bottom:20px;opacity:.5;position:absolute;right:25px;-webkit-transition:opacity 1s ease-out 3s;transition:opacity 1s ease-out 3s}.ag-watermark:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjM1IDQwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIHN0eWxlPSJmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MiI+PHBhdGggZD0iTTEwOTkuNCA1NDkuNHYtMTIuNWgtMjEuM2wtMTIuNSAxMi41aDMzLjhaTTExMjMuNCA1MTguNGgtMjYuN2wtMTIuNiAxMi41aDM5LjN2LTEyLjVaTTEwNTMuMiA1NjEuOWw2LjQtNi40aDIxLjZWNTY4aC0yOHYtNi4xWiIgc3R5bGU9ImZpbGw6IzE4MWQxZjtmaWxsLXJ1bGU6bm9uemVybyIgdHJhbnNmb3JtPSJtYXRyaXgoLjYzNTcyIDAgMCAuNjM1NzIgLTQ5Mi45MjEgLTMyMy42MDgpIi8+PHBhdGggZD0iTTEwNTcuOSA1NDMuM2gxMy44bDEyLjYtMTIuNWgtMjYuNHYxMi41Wk0xMDQyLjggNTYxLjloMTAuNGwxMi40LTEyLjVoLTIyLjh2MTIuNVpNMTA5Ni43IDUxOC40bC02LjQgNi40aC00MC44di0xMi41aDQ3LjJ2Ni4xWk04MjguNiA1NTkuN0g4MDlsLTMuNCA4LjRINzk3bDE4LjEtNDIuNGg3LjVsMTguMSA0Mi40SDgzMmwtMy40LTguNFptLTIuNy02LjctNy4xLTE3LjMtNy4xIDE3LjNoMTQuMlpNOTYwLjEgNTQxLjNjMi41LTMuNyA4LjgtNC4xIDExLjQtNC4xdjcuMmMtMy4yIDAtNi40LjEtOC4zIDEuNS0xLjkgMS40LTIuOSAzLjMtMi45IDUuNnYxNi42aC03Ljh2LTMwLjloNy41bC4xIDQuMVoiIHN0eWxlPSJmaWxsOiMxODFkMWY7ZmlsbC1ydWxlOm5vbnplcm8iIHRyYW5zZm9ybT0ibWF0cml4KC42MzU3MiAwIDAgLjYzNTcyIC00OTIuOTIxIC0zMjMuNjA4KSIvPjxwYXRoIHN0eWxlPSJmaWxsOiMxODFkMWYiIGQ9Ik05NzUuOCA1MzcuMmg3Ljh2MzAuOWgtNy44ek05NzUuOCA1MjMuNGg3Ljh2OS4yaC03Ljh6IiB0cmFuc2Zvcm09Im1hdHJpeCguNjM1NzIgMCAwIC42MzU3MiAtNDkyLjkyMSAtMzIzLjYwOCkiLz48cGF0aCBkPSJNMTAyMi4zIDUyMy40djQ0LjdoLTcuNWwtLjItNC43Yy0xLjEgMS42LTIuNSAyLjktNC4yIDMuOS0xLjcuOS0zLjggMS40LTYuMiAxLjQtMi4xIDAtNC4xLS40LTUuOC0xLjEtMS44LS44LTMuNC0xLjgtNC43LTMuMi0xLjMtMS40LTIuNC0zLjEtMy4xLTUtLjgtMS45LTEuMS00LjEtMS4xLTYuNSAwLTIuNC40LTQuNiAxLjEtNi42LjgtMiAxLjgtMy43IDMuMS01LjEgMS4zLTEuNCAyLjktMi41IDQuNy0zLjMgMS44LS44IDMuNy0xLjIgNS44LTEuMiAyLjQgMCA0LjQuNCA2LjEgMS4zIDEuNy45IDMuMSAyLjEgNC4yIDMuOHYtMTguM2g3Ljh2LS4xWm0tMTYuNCAzOC42YzIuNiAwIDQuNi0uOSA2LjItMi42IDEuNi0xLjcgMi40LTQgMi40LTYuOHMtLjgtNS0yLjQtNi44Yy0xLjYtMS43LTMuNi0yLjYtNi4yLTIuNi0yLjUgMC00LjYuOS02LjEgMi42LTEuNiAxLjctMi40IDQtMi40IDYuOHMuOCA1IDIuNCA2LjdjMS42IDEuOCAzLjYgMi43IDYuMSAyLjdNODg1LjggNTQ0LjJoLTE5LjN2Ni43aDExYy0uMyAzLjQtMS42IDYtMy44IDguMS0yLjIgMi01IDMtOC42IDMtMiAwLTMuOS0uNC01LjUtMS4xLTEuNy0uNy0zLjEtMS43LTQuMy0zLjEtMS4yLTEuMy0yLjEtMi45LTIuOC00LjgtLjctMS45LTEtMy45LTEtNi4yIDAtMi4zLjMtNC4zIDEtNi4yLjYtMS45IDEuNi0zLjQgMi44LTQuOCAxLjItMS4zIDIuNi0yLjMgNC4zLTMuMSAxLjctLjcgMy41LTEuMSA1LjYtMS4xIDQuMiAwIDcuNCAxIDkuNiAzbDUuMi01LjJjLTMuOS0zLTguOS00LjYtMTQuOC00LjYtMy4zIDAtNi4zLjUtOSAxLjZzLTUgMi41LTYuOSA0LjRjLTEuOSAxLjktMy40IDQuMi00LjQgNi45LTEgMi43LTEuNSA1LjctMS41IDguOXMuNSA2LjIgMS42IDguOSAyLjUgNSA0LjQgNi45YzEuOSAxLjkgNC4yIDMuNCA2LjkgNC40IDIuNyAxLjEgNS43IDEuNiA4LjkgMS42czYuMS0uNSA4LjctMS42YzIuNi0xLjEgNC44LTIuNSA2LjYtNC40IDEuOC0xLjkgMy4yLTQuMiA0LjItNi45czEuNS01LjcgMS41LTguOXYtMS4zYy0uMy0uMi0uNC0uNy0uNC0xLjFNOTQ2LjggNTQ0LjJoLTE5LjN2Ni43aDExYy0uMyAzLjQtMS42IDYtMy44IDguMS0yLjIgMi01IDMtOC42IDMtMiAwLTMuOS0uNC01LjUtMS4xLTEuNy0uNy0zLjEtMS43LTQuMy0zLjEtMS4yLTEuMy0yLjEtMi45LTIuOC00LjgtLjctMS45LTEtMy45LTEtNi4yIDAtMi4zLjMtNC4zIDEtNi4yLjYtMS45IDEuNi0zLjQgMi44LTQuOCAxLjItMS4zIDIuNi0yLjMgNC4zLTMuMSAxLjctLjcgMy41LTEuMSA1LjYtMS4xIDQuMiAwIDcuNCAxIDkuNiAzbDUuMi01LjJjLTMuOS0zLTguOS00LjYtMTQuOC00LjYtMy4zIDAtNi4zLjUtOSAxLjZzLTUgMi41LTYuOSA0LjRjLTEuOSAxLjktMy40IDQuMi00LjQgNi45LTEgMi43LTEuNSA1LjctMS41IDguOXMuNSA2LjIgMS42IDguOSAyLjUgNSA0LjQgNi45YzEuOSAxLjkgNC4yIDMuNCA2LjkgNC40IDIuNyAxLjEgNS43IDEuNiA4LjkgMS42czYuMS0uNSA4LjctMS42YzIuNi0xLjEgNC44LTIuNSA2LjYtNC40IDEuOC0xLjkgMy4yLTQuMiA0LjItNi45czEuNS01LjcgMS41LTguOXYtMS4zYy0uMy0uMi0uNC0uNy0uNC0xLjEiIHN0eWxlPSJmaWxsOiMxODFkMWY7ZmlsbC1ydWxlOm5vbnplcm8iIHRyYW5zZm9ybT0ibWF0cml4KC42MzU3MiAwIDAgLjYzNTcyIC00OTIuOTIxIC0zMjMuNjA4KSIvPjwvc3ZnPg==);background-repeat:no-repeat;background-size:170px 40px;content:"";display:block;height:40px;opacity:.5;width:170px}.ag-watermark-text{font-family:Impact,sans-serif;font-size:19px;font-weight:700;opacity:.5;padding-left:.7rem}.ag-root-wrapper-body{display:flex;flex-direction:row}.ag-root-wrapper-body.ag-layout-normal{flex:1 1 auto;height:0;min-height:0}.ag-root{display:flex;flex-direction:column;position:relative}.ag-root.ag-layout-auto-height,.ag-root.ag-layout-normal{flex:1 1 auto;overflow:hidden;width:0}.ag-root.ag-layout-normal{height:100%}.ag-body-horizontal-scroll-viewport,.ag-body-viewport,.ag-center-cols-viewport,.ag-floating-bottom-viewport,.ag-floating-top-viewport,.ag-header-viewport,.ag-virtual-list-viewport{flex:1 1 auto;height:100%;min-width:0;overflow:hidden;position:relative}.ag-body-viewport{display:flex}.ag-body-viewport.ag-layout-normal{-webkit-overflow-scrolling:touch;overflow-y:auto}.ag-center-cols-viewport{overflow-x:auto;width:100%}.ag-body-horizontal-scroll-viewport{overflow-x:scroll}.ag-virtual-list-viewport{overflow:auto;width:100%}.ag-body-container,.ag-body-horizontal-scroll-container,.ag-center-cols-container,.ag-floating-bottom-container,.ag-floating-bottom-full-width-container,.ag-floating-top-container,.ag-full-width-container,.ag-header-container,.ag-pinned-left-cols-container,.ag-pinned-right-cols-container,.ag-virtual-list-container{position:relative}.ag-floating-bottom-container,.ag-floating-top-container,.ag-header-container{height:100%;white-space:nowrap}.ag-center-cols-container,.ag-pinned-right-cols-container{display:block}.ag-body-horizontal-scroll-container{height:100%}.ag-floating-bottom-full-width-container,.ag-floating-top-full-width-container,.ag-full-width-container{left:0;pointer-events:none;position:absolute;top:0}.ag-full-width-container{width:100%}.ag-floating-bottom-full-width-container,.ag-floating-top-full-width-container{display:inline-block;height:100%;overflow:hidden;width:100%}.ag-virtual-list-container{overflow:hidden}.ag-center-cols-clipper{flex:1 1 auto;min-height:100%;min-width:0;overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.ag-body-horizontal-scroll{display:flex;min-height:0;min-width:0;position:relative;width:100%}.ag-body-horizontal-scroll.ag-scrollbar-invisible{bottom:0;left:0;pointer-events:none;position:absolute;right:0}.ag-body-horizontal-scroll.ag-scrollbar-invisible.ag-scrollbar-active,.ag-body-horizontal-scroll.ag-scrollbar-invisible.ag-scrollbar-scrolling{pointer-events:all}.ag-force-vertical-scroll{overflow-y:scroll!important}.ag-horizontal-left-spacer,.ag-horizontal-right-spacer{height:100%;min-width:0;overflow-x:scroll}.ag-horizontal-left-spacer.ag-scroller-corner,.ag-horizontal-right-spacer.ag-scroller-corner{overflow-x:hidden}.ag-header,.ag-pinned-left-header,.ag-pinned-right-header{display:inline-block;overflow:hidden;position:relative}.ag-header-cell-sortable{cursor:pointer}.ag-header{display:flex;white-space:nowrap;width:100%}.ag-pinned-left-header,.ag-pinned-right-header{height:100%}.ag-header-cell,.ag-header-row{overflow:hidden;position:absolute}.ag-header-cell{align-items:center;display:inline-flex;height:100%}.ag-header-cell.ag-header-active .ag-header-cell-menu-button{opacity:1}.ag-header-cell-menu-button:not(.ag-header-menu-always-show){opacity:0;-webkit-transition:opacity .2s;transition:opacity .2s}.ag-header-cell-label,.ag-header-group-cell-label{align-items:center;align-self:stretch;display:flex;flex:1 1 auto;overflow:hidden;text-overflow:ellipsis}.ag-header-cell-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-right-aligned-header .ag-header-cell-label{flex-direction:row-reverse}.ag-header-group-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-header-cell-resize{cursor:ew-resize;height:100%;position:absolute;top:0;width:8px;z-index:2}.ag-ltr .ag-header-cell-resize{right:-4px}.ag-rtl .ag-header-cell-resize{left:-4px}.ag-pinned-left-header .ag-header-cell-resize{right:-4px}.ag-pinned-right-header .ag-header-cell-resize{left:-4px}.ag-header-select-all{display:flex}.ag-column-moving .ag-cell,.ag-column-moving .ag-header-cell{-webkit-transition:left .2s;transition:left .2s}.ag-column-moving .ag-header-group-cell{-webkit-transition:left .2s,width .2s;transition:left .2s,width .2s}.ag-column-panel{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.ag-column-select{display:flex;flex:3 1;flex-direction:column;overflow:hidden;position:relative}.ag-column-select-header{display:flex;flex:none;position:relative}.ag-column-select-header-icon{position:relative}.ag-column-select-header-filter-wrapper{flex:1 1 auto}.ag-column-select-header-filter{width:100%}.ag-column-select-list{flex:1 1;overflow:hidden}.ag-column-drop{align-items:center;display:inline-flex;overflow:auto;position:relative;width:100%}.ag-column-drop-cell,.ag-column-drop-list{align-items:center;display:flex}.ag-column-drop-cell{position:relative}.ag-column-drop-cell-text{flex:1 1 auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-column-drop-vertical{align-items:stretch;display:flex;flex:1 1;flex-direction:column;overflow:hidden}.ag-column-drop-vertical-title-bar{align-items:center;display:flex;flex:none}.ag-column-drop-vertical-list{align-items:stretch;flex-direction:column;flex-grow:1;overflow-x:auto;position:relative}.ag-column-drop-vertical-list>*{flex:none}.ag-column-drop-empty .ag-column-drop-vertical-list{overflow:hidden}.ag-column-drop-vertical-empty-message{display:block}.ag-column-drop.ag-column-drop-horizontal{overflow:hidden;white-space:nowrap}.ag-column-drop-cell-button{cursor:pointer}.ag-filter-toolpanel{flex:1 1;min-width:0}.ag-filter-toolpanel-header{position:relative}.ag-filter-toolpanel-header,.ag-filter-toolpanel-header>*,.ag-filter-toolpanel-search,.ag-filter-toolpanel-search>*{align-items:center;display:flex}.ag-filter-apply-panel{display:flex;justify-content:flex-end;overflow:hidden}.ag-row-animation .ag-row{-webkit-transition:top .4s,background-color .1s,opacity .2s,-webkit-transform .4s;transition:top .4s,background-color .1s,opacity .2s,-webkit-transform .4s;transition:transform .4s,top .4s,background-color .1s,opacity .2s;transition:transform .4s,top .4s,background-color .1s,opacity .2s,-webkit-transform .4s}.ag-row-animation .ag-row.ag-after-created{-webkit-transition:top .4s,height .4s,background-color .1s,opacity .2s,-webkit-transform .4s;transition:top .4s,height .4s,background-color .1s,opacity .2s,-webkit-transform .4s;transition:transform .4s,top .4s,height .4s,background-color .1s,opacity .2s;transition:transform .4s,top .4s,height .4s,background-color .1s,opacity .2s,-webkit-transform .4s}.ag-row-no-animation .ag-row{-webkit-transition:background-color .1s;transition:background-color .1s}.ag-row{white-space:nowrap;width:100%}.ag-row-loading{align-items:center;display:flex}.ag-row-position-absolute{position:absolute}.ag-row-position-relative{position:relative}.ag-full-width-row{overflow:hidden;pointer-events:all}.ag-row-inline-editing{z-index:1}.ag-row-dragging{z-index:2}.ag-stub-cell{align-items:center;display:flex}.ag-cell{display:inline-block;height:100%;position:absolute;white-space:nowrap}.ag-cell-value{flex:1 1 auto}.ag-cell-value,.ag-group-value{overflow:hidden;text-overflow:ellipsis}.ag-cell-wrap-text{white-space:normal;word-break:break-all}.ag-cell-wrapper{align-items:center;display:flex}.ag-cell-wrapper.ag-row-group{align-items:flex-start}.ag-sparkline-wrapper{height:100%;left:0;position:absolute;top:0;width:100%}.ag-full-width-row .ag-cell-wrapper.ag-row-group{align-items:center;height:100%}.ag-cell-inline-editing{z-index:1}.ag-cell-inline-editing .ag-cell-edit-wrapper,.ag-cell-inline-editing .ag-cell-editor,.ag-cell-inline-editing .ag-cell-editor .ag-wrapper,.ag-cell-inline-editing .ag-cell-editor input,.ag-cell-inline-editing .ag-cell-wrapper{height:100%;line-height:normal;width:100%}.ag-cell .ag-icon{display:inline-block;vertical-align:middle}.ag-set-filter-item{align-items:center;display:flex;height:100%}.ag-set-filter-item-value{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-set-filter-item-checkbox{display:flex}.ag-filter-body-wrapper{display:flex;flex-direction:column}.ag-filter-filter{flex:1 1}.ag-filter-condition{display:flex;justify-content:center}.ag-floating-filter-body{display:flex;flex:1 1 auto;height:100%;position:relative}.ag-floating-filter-full-body{align-items:center;display:flex;flex:1 1 auto;height:100%;overflow:hidden;width:100%}.ag-floating-filter-full-body>div{flex:1 1 auto}.ag-floating-filter-input{align-items:center;display:flex;width:100%}.ag-floating-filter-input>*{flex:1 1 auto}.ag-floating-filter-button{display:flex;flex:none}.ag-dnd-ghost{align-items:center;cursor:move;display:inline-flex;position:absolute;white-space:nowrap;z-index:9999}.ag-overlay{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.ag-overlay-panel,.ag-overlay-wrapper{display:flex;height:100%;width:100%}.ag-overlay-wrapper{align-items:center;flex:none;justify-content:center;text-align:center}.ag-overlay-loading-wrapper{pointer-events:all}.ag-popup-child{top:0;z-index:5}.ag-popup-editor{position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1}.ag-large-text-input{display:block}.ag-virtual-list-item{position:absolute;width:100%}.ag-floating-top{display:flex;overflow:hidden;position:relative;white-space:nowrap;width:100%}.ag-pinned-left-floating-top,.ag-pinned-right-floating-top{display:inline-block;min-width:0;overflow:hidden;position:relative}.ag-floating-bottom{display:flex;overflow:hidden;position:relative;white-space:nowrap;width:100%}.ag-pinned-left-floating-bottom,.ag-pinned-right-floating-bottom{display:inline-block;min-width:0;overflow:hidden;position:relative}.ag-dialog,.ag-panel{display:flex;flex-direction:column;overflow:hidden;position:relative}.ag-panel-title-bar{align-items:center;cursor:default;display:flex;flex:none}.ag-panel-title-bar-title{flex:1 1 auto}.ag-panel-title-bar-buttons{display:flex}.ag-panel-title-bar-button{cursor:pointer}.ag-panel-content-wrapper{display:flex;flex:1 1 auto;overflow:hidden;position:relative}.ag-dialog,.ag-resizer{position:absolute}.ag-resizer{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1}.ag-resizer.ag-resizer-topLeft{cursor:nwse-resize;height:5px;left:0;top:0;width:5px}.ag-resizer.ag-resizer-top{cursor:ns-resize;height:5px;left:5px;right:5px;top:0}.ag-resizer.ag-resizer-topRight{cursor:nesw-resize;height:5px;right:0;top:0;width:5px}.ag-resizer.ag-resizer-right{bottom:5px;cursor:ew-resize;right:0;top:5px;width:5px}.ag-resizer.ag-resizer-bottomRight{bottom:0;cursor:nwse-resize;height:5px;right:0;width:5px}.ag-resizer.ag-resizer-bottom{bottom:0;cursor:ns-resize;height:5px;left:5px;right:5px}.ag-resizer.ag-resizer-bottomLeft{bottom:0;cursor:nesw-resize;height:5px;left:0;width:5px}.ag-resizer.ag-resizer-left{bottom:5px;cursor:ew-resize;left:0;top:5px;width:5px}.ag-tooltip,.ag-tooltip-custom{pointer-events:none;position:absolute;z-index:99999}.ag-value-slide-out{margin-right:5px;opacity:1;-webkit-transition:opacity 3s,margin-right 3s;transition:opacity 3s,margin-right 3s;-webkit-transition-timing-function:linear;transition-timing-function:linear}.ag-value-slide-out-end{margin-right:10px;opacity:0}.ag-opacity-zero{opacity:0!important}.ag-menu{max-height:100%;overflow-y:auto;position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ag-menu-column-select-wrapper{height:265px;overflow:auto}.ag-menu-column-select-wrapper .ag-column-select{height:100%}.ag-menu-list{display:table;width:100%}.ag-menu-option,.ag-menu-separator{display:table-row}.ag-menu-option-part,.ag-menu-separator-part{display:table-cell;vertical-align:middle}.ag-menu-option-text{white-space:nowrap}.ag-compact-menu-option{display:flex;flex-wrap:nowrap;width:100%}.ag-compact-menu-option-text{flex:1 1 auto;white-space:nowrap}.ag-rich-select{cursor:default;outline:none}.ag-rich-select-value{align-items:center;display:flex}.ag-rich-select-value-icon{flex:1 1 auto;order:1}.ag-ltr .ag-rich-select-value-icon{text-align:right}.ag-rtl .ag-rich-select-value-icon{text-align:left}.ag-rich-select-list{position:relative}.ag-rich-select-virtual-list-item{display:flex}.ag-rich-select-row{align-items:center;display:flex;flex:1 1 auto;white-space:nowrap}.ag-paging-panel{justify-content:flex-end}.ag-paging-page-summary-panel,.ag-paging-panel{align-items:center;display:flex}.ag-paging-button{position:relative}.ag-disabled .ag-paging-page-summary-panel{pointer-events:none}.ag-tool-panel-wrapper{cursor:default;display:flex;overflow-x:hidden;overflow-y:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ag-column-select-column,.ag-column-select-column-group,.ag-select-agg-func-item{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;height:100%;position:relative;text-overflow:ellipsis;white-space:nowrap}.ag-column-select-column-group>*,.ag-column-select-column>*,.ag-select-agg-func-item>*{flex:none}.ag-column-select-checkbox{display:flex}.ag-tool-panel-horizontal-resize{cursor:ew-resize;height:100%;position:absolute;top:0;width:5px;z-index:1}.ag-ltr .ag-side-bar-left .ag-tool-panel-horizontal-resize{right:-3px}.ag-ltr .ag-side-bar-right .ag-tool-panel-horizontal-resize,.ag-rtl .ag-side-bar-left .ag-tool-panel-horizontal-resize{left:-3px}.ag-rtl .ag-side-bar-right .ag-tool-panel-horizontal-resize{right:-3px}.ag-details-row{width:100%}.ag-details-row-fixed-height{height:100%}.ag-details-grid{width:100%}.ag-details-grid-fixed-height{height:100%}.ag-header-group-cell{align-items:center;display:flex;height:100%;position:absolute}.ag-cell-label-container{align-items:center;display:flex;flex-direction:row-reverse;height:100%;justify-content:space-between;overflow:hidden;width:100%}.ag-right-aligned-header .ag-cell-label-container{flex-direction:row}.ag-side-bar{display:flex;flex-direction:row-reverse}.ag-side-bar-left{flex-direction:row;order:-1}.ag-side-button-button{align-items:center;cursor:pointer;display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:center;outline:none;position:relative;white-space:nowrap}.ag-side-button-label{-webkit-writing-mode:vertical-lr;writing-mode:vertical-lr}.ag-status-bar{display:flex;justify-content:space-between;overflow:hidden}.ag-status-panel{display:inline-flex}.ag-status-name-value{white-space:nowrap}.ag-status-bar-center,.ag-status-bar-left,.ag-status-bar-right{display:inline-flex}.ag-icon{speak:none;display:block}.ag-group{position:relative;width:100%}.ag-group-title-bar{align-items:center;display:flex}.ag-group-title{display:block;flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-group-title-bar .ag-group-title{cursor:default}.ag-group-toolbar{align-items:center;display:flex}.ag-group-container{display:flex}.ag-disabled .ag-group-container{pointer-events:none}.ag-group-container-horizontal{flex-direction:row;flex-wrap:wrap}.ag-group-container-vertical{flex-direction:column}.ag-column-group-icons{display:block}.ag-column-group-icons>*{cursor:pointer}.ag-group-item-alignment-stretch .ag-group-item{align-items:stretch}.ag-group-item-alignment-start .ag-group-item{align-items:flex-start}.ag-group-item-alignment-end .ag-group-item{align-items:flex-end}.ag-toggle-button-icon{position:absolute;top:-1px;-webkit-transition:right .3s;transition:right .3s}.ag-input-field,.ag-select{align-items:center;display:flex;flex-direction:row}.ag-input-field-input{flex:1 1 auto;min-width:0;width:100%}.ag-floating-filter-input .ag-input-field-input[type=date]{width:1px}.ag-angle-select,.ag-range-field{align-items:center;display:flex}.ag-angle-select-wrapper{display:flex}.ag-angle-select-parent-circle{display:block;position:relative}.ag-angle-select-child-circle{position:absolute}.ag-slider-wrapper{display:flex}.ag-picker-field-display,.ag-slider-wrapper .ag-input-field{flex:1 1 auto}.ag-picker-field{align-items:center;display:flex}.ag-picker-field-icon{border:0;cursor:pointer;display:flex;margin:0;padding:0}.ag-picker-field-wrapper{overflow:hidden}.ag-label-align-right .ag-label{order:1}.ag-label-align-right>*{flex:none}.ag-label-align-top{align-items:flex-start;flex-direction:column}.ag-label-align-top>*{align-self:stretch}.ag-color-panel{display:flex;flex-direction:column;text-align:center;width:100%}.ag-spectrum-color{cursor:default;flex:1 1 auto;overflow:hidden;position:relative}.ag-spectrum-fill{bottom:0;left:0;position:absolute;right:0;top:0}.ag-spectrum-val{cursor:pointer}.ag-spectrum-dragger{cursor:pointer;pointer-events:none;position:absolute}.ag-spectrum-hue{background:-webkit-gradient(linear,right top,left top,color-stop(3%,red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(270deg,red 3%,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red);cursor:default}.ag-spectrum-alpha{cursor:default}.ag-spectrum-hue-background{height:100%;width:100%}.ag-spectrum-alpha-background{background-image:-webkit-gradient(linear,left top,right top,from(transparent),to(#000));background-image:linear-gradient(90deg,transparent,#000);height:100%;width:100%}.ag-spectrum-tool{cursor:pointer}.ag-spectrum-slider{pointer-events:none;position:absolute}.ag-recent-colors{display:flex}.ag-recent-color{cursor:pointer}.ag-ltr .ag-column-select-indent-1{padding-left:20px}.ag-rtl .ag-column-select-indent-1{padding-right:20px}.ag-ltr .ag-row-group-indent-1{padding-left:20px}.ag-rtl .ag-row-group-indent-1{padding-right:20px}.ag-ltr .ag-column-select-indent-2{padding-left:40px}.ag-rtl .ag-column-select-indent-2{padding-right:40px}.ag-ltr .ag-row-group-indent-2{padding-left:40px}.ag-rtl .ag-row-group-indent-2{padding-right:40px}.ag-ltr .ag-column-select-indent-3{padding-left:60px}.ag-rtl .ag-column-select-indent-3{padding-right:60px}.ag-ltr .ag-row-group-indent-3{padding-left:60px}.ag-rtl .ag-row-group-indent-3{padding-right:60px}.ag-ltr .ag-column-select-indent-4{padding-left:80px}.ag-rtl .ag-column-select-indent-4{padding-right:80px}.ag-ltr .ag-row-group-indent-4{padding-left:80px}.ag-rtl .ag-row-group-indent-4{padding-right:80px}.ag-ltr .ag-column-select-indent-5{padding-left:100px}.ag-rtl .ag-column-select-indent-5{padding-right:100px}.ag-ltr .ag-row-group-indent-5{padding-left:100px}.ag-rtl .ag-row-group-indent-5{padding-right:100px}.ag-ltr .ag-column-select-indent-6{padding-left:120px}.ag-rtl .ag-column-select-indent-6{padding-right:120px}.ag-ltr .ag-row-group-indent-6{padding-left:120px}.ag-rtl .ag-row-group-indent-6{padding-right:120px}.ag-ltr .ag-column-select-indent-7{padding-left:140px}.ag-rtl .ag-column-select-indent-7{padding-right:140px}.ag-ltr .ag-row-group-indent-7{padding-left:140px}.ag-rtl .ag-row-group-indent-7{padding-right:140px}.ag-ltr .ag-column-select-indent-8{padding-left:160px}.ag-rtl .ag-column-select-indent-8{padding-right:160px}.ag-ltr .ag-row-group-indent-8{padding-left:160px}.ag-rtl .ag-row-group-indent-8{padding-right:160px}.ag-ltr .ag-column-select-indent-9{padding-left:180px}.ag-rtl .ag-column-select-indent-9{padding-right:180px}.ag-ltr .ag-row-group-indent-9{padding-left:180px}.ag-rtl .ag-row-group-indent-9{padding-right:180px}.ag-ltr .ag-column-select-indent-10{padding-left:200px}.ag-rtl .ag-column-select-indent-10{padding-right:200px}.ag-ltr .ag-row-group-indent-10{padding-left:200px}.ag-rtl .ag-row-group-indent-10{padding-right:200px}.ag-ltr .ag-column-select-indent-11{padding-left:220px}.ag-rtl .ag-column-select-indent-11{padding-right:220px}.ag-ltr .ag-row-group-indent-11{padding-left:220px}.ag-rtl .ag-row-group-indent-11{padding-right:220px}.ag-ltr .ag-column-select-indent-12{padding-left:240px}.ag-rtl .ag-column-select-indent-12{padding-right:240px}.ag-ltr .ag-row-group-indent-12{padding-left:240px}.ag-rtl .ag-row-group-indent-12{padding-right:240px}.ag-ltr .ag-column-select-indent-13{padding-left:260px}.ag-rtl .ag-column-select-indent-13{padding-right:260px}.ag-ltr .ag-row-group-indent-13{padding-left:260px}.ag-rtl .ag-row-group-indent-13{padding-right:260px}.ag-ltr .ag-column-select-indent-14{padding-left:280px}.ag-rtl .ag-column-select-indent-14{padding-right:280px}.ag-ltr .ag-row-group-indent-14{padding-left:280px}.ag-rtl .ag-row-group-indent-14{padding-right:280px}.ag-ltr .ag-column-select-indent-15{padding-left:300px}.ag-rtl .ag-column-select-indent-15{padding-right:300px}.ag-ltr .ag-row-group-indent-15{padding-left:300px}.ag-rtl .ag-row-group-indent-15{padding-right:300px}.ag-ltr .ag-column-select-indent-16{padding-left:320px}.ag-rtl .ag-column-select-indent-16{padding-right:320px}.ag-ltr .ag-row-group-indent-16{padding-left:320px}.ag-rtl .ag-row-group-indent-16{padding-right:320px}.ag-ltr .ag-column-select-indent-17{padding-left:340px}.ag-rtl .ag-column-select-indent-17{padding-right:340px}.ag-ltr .ag-row-group-indent-17{padding-left:340px}.ag-rtl .ag-row-group-indent-17{padding-right:340px}.ag-ltr .ag-column-select-indent-18{padding-left:360px}.ag-rtl .ag-column-select-indent-18{padding-right:360px}.ag-ltr .ag-row-group-indent-18{padding-left:360px}.ag-rtl .ag-row-group-indent-18{padding-right:360px}.ag-ltr .ag-column-select-indent-19{padding-left:380px}.ag-rtl .ag-column-select-indent-19{padding-right:380px}.ag-ltr .ag-row-group-indent-19{padding-left:380px}.ag-rtl .ag-row-group-indent-19{padding-right:380px}.ag-ltr .ag-column-select-indent-20{padding-left:400px}.ag-rtl .ag-column-select-indent-20{padding-right:400px}.ag-ltr .ag-row-group-indent-20{padding-left:400px}.ag-rtl .ag-row-group-indent-20{padding-right:400px}.ag-ltr .ag-column-select-indent-21{padding-left:420px}.ag-rtl .ag-column-select-indent-21{padding-right:420px}.ag-ltr .ag-row-group-indent-21{padding-left:420px}.ag-rtl .ag-row-group-indent-21{padding-right:420px}.ag-ltr .ag-column-select-indent-22{padding-left:440px}.ag-rtl .ag-column-select-indent-22{padding-right:440px}.ag-ltr .ag-row-group-indent-22{padding-left:440px}.ag-rtl .ag-row-group-indent-22{padding-right:440px}.ag-ltr .ag-column-select-indent-23{padding-left:460px}.ag-rtl .ag-column-select-indent-23{padding-right:460px}.ag-ltr .ag-row-group-indent-23{padding-left:460px}.ag-rtl .ag-row-group-indent-23{padding-right:460px}.ag-ltr .ag-column-select-indent-24{padding-left:480px}.ag-rtl .ag-column-select-indent-24{padding-right:480px}.ag-ltr .ag-row-group-indent-24{padding-left:480px}.ag-rtl .ag-row-group-indent-24{padding-right:480px}.ag-ltr .ag-column-select-indent-25{padding-left:500px}.ag-rtl .ag-column-select-indent-25{padding-right:500px}.ag-ltr .ag-row-group-indent-25{padding-left:500px}.ag-rtl .ag-row-group-indent-25{padding-right:500px}.ag-ltr .ag-column-select-indent-26{padding-left:520px}.ag-rtl .ag-column-select-indent-26{padding-right:520px}.ag-ltr .ag-row-group-indent-26{padding-left:520px}.ag-rtl .ag-row-group-indent-26{padding-right:520px}.ag-ltr .ag-column-select-indent-27{padding-left:540px}.ag-rtl .ag-column-select-indent-27{padding-right:540px}.ag-ltr .ag-row-group-indent-27{padding-left:540px}.ag-rtl .ag-row-group-indent-27{padding-right:540px}.ag-ltr .ag-column-select-indent-28{padding-left:560px}.ag-rtl .ag-column-select-indent-28{padding-right:560px}.ag-ltr .ag-row-group-indent-28{padding-left:560px}.ag-rtl .ag-row-group-indent-28{padding-right:560px}.ag-ltr .ag-column-select-indent-29{padding-left:580px}.ag-rtl .ag-column-select-indent-29{padding-right:580px}.ag-ltr .ag-row-group-indent-29{padding-left:580px}.ag-rtl .ag-row-group-indent-29{padding-right:580px}.ag-ltr .ag-column-select-indent-30{padding-left:600px}.ag-rtl .ag-column-select-indent-30{padding-right:600px}.ag-ltr .ag-row-group-indent-30{padding-left:600px}.ag-rtl .ag-row-group-indent-30{padding-right:600px}.ag-ltr .ag-column-select-indent-31{padding-left:620px}.ag-rtl .ag-column-select-indent-31{padding-right:620px}.ag-ltr .ag-row-group-indent-31{padding-left:620px}.ag-rtl .ag-row-group-indent-31{padding-right:620px}.ag-ltr .ag-column-select-indent-32{padding-left:640px}.ag-rtl .ag-column-select-indent-32{padding-right:640px}.ag-ltr .ag-row-group-indent-32{padding-left:640px}.ag-rtl .ag-row-group-indent-32{padding-right:640px}.ag-ltr .ag-column-select-indent-33{padding-left:660px}.ag-rtl .ag-column-select-indent-33{padding-right:660px}.ag-ltr .ag-row-group-indent-33{padding-left:660px}.ag-rtl .ag-row-group-indent-33{padding-right:660px}.ag-ltr .ag-column-select-indent-34{padding-left:680px}.ag-rtl .ag-column-select-indent-34{padding-right:680px}.ag-ltr .ag-row-group-indent-34{padding-left:680px}.ag-rtl .ag-row-group-indent-34{padding-right:680px}.ag-ltr .ag-column-select-indent-35{padding-left:700px}.ag-rtl .ag-column-select-indent-35{padding-right:700px}.ag-ltr .ag-row-group-indent-35{padding-left:700px}.ag-rtl .ag-row-group-indent-35{padding-right:700px}.ag-ltr .ag-column-select-indent-36{padding-left:720px}.ag-rtl .ag-column-select-indent-36{padding-right:720px}.ag-ltr .ag-row-group-indent-36{padding-left:720px}.ag-rtl .ag-row-group-indent-36{padding-right:720px}.ag-ltr .ag-column-select-indent-37{padding-left:740px}.ag-rtl .ag-column-select-indent-37{padding-right:740px}.ag-ltr .ag-row-group-indent-37{padding-left:740px}.ag-rtl .ag-row-group-indent-37{padding-right:740px}.ag-ltr .ag-column-select-indent-38{padding-left:760px}.ag-rtl .ag-column-select-indent-38{padding-right:760px}.ag-ltr .ag-row-group-indent-38{padding-left:760px}.ag-rtl .ag-row-group-indent-38{padding-right:760px}.ag-ltr .ag-column-select-indent-39{padding-left:780px}.ag-rtl .ag-column-select-indent-39{padding-right:780px}.ag-ltr .ag-row-group-indent-39{padding-left:780px}.ag-rtl .ag-row-group-indent-39{padding-right:780px}.ag-ltr .ag-column-select-indent-40{padding-left:800px}.ag-rtl .ag-column-select-indent-40{padding-right:800px}.ag-ltr .ag-row-group-indent-40{padding-left:800px}.ag-rtl .ag-row-group-indent-40{padding-right:800px}.ag-ltr .ag-column-select-indent-41{padding-left:820px}.ag-rtl .ag-column-select-indent-41{padding-right:820px}.ag-ltr .ag-row-group-indent-41{padding-left:820px}.ag-rtl .ag-row-group-indent-41{padding-right:820px}.ag-ltr .ag-column-select-indent-42{padding-left:840px}.ag-rtl .ag-column-select-indent-42{padding-right:840px}.ag-ltr .ag-row-group-indent-42{padding-left:840px}.ag-rtl .ag-row-group-indent-42{padding-right:840px}.ag-ltr .ag-column-select-indent-43{padding-left:860px}.ag-rtl .ag-column-select-indent-43{padding-right:860px}.ag-ltr .ag-row-group-indent-43{padding-left:860px}.ag-rtl .ag-row-group-indent-43{padding-right:860px}.ag-ltr .ag-column-select-indent-44{padding-left:880px}.ag-rtl .ag-column-select-indent-44{padding-right:880px}.ag-ltr .ag-row-group-indent-44{padding-left:880px}.ag-rtl .ag-row-group-indent-44{padding-right:880px}.ag-ltr .ag-column-select-indent-45{padding-left:900px}.ag-rtl .ag-column-select-indent-45{padding-right:900px}.ag-ltr .ag-row-group-indent-45{padding-left:900px}.ag-rtl .ag-row-group-indent-45{padding-right:900px}.ag-ltr .ag-column-select-indent-46{padding-left:920px}.ag-rtl .ag-column-select-indent-46{padding-right:920px}.ag-ltr .ag-row-group-indent-46{padding-left:920px}.ag-rtl .ag-row-group-indent-46{padding-right:920px}.ag-ltr .ag-column-select-indent-47{padding-left:940px}.ag-rtl .ag-column-select-indent-47{padding-right:940px}.ag-ltr .ag-row-group-indent-47{padding-left:940px}.ag-rtl .ag-row-group-indent-47{padding-right:940px}.ag-ltr .ag-column-select-indent-48{padding-left:960px}.ag-rtl .ag-column-select-indent-48{padding-right:960px}.ag-ltr .ag-row-group-indent-48{padding-left:960px}.ag-rtl .ag-row-group-indent-48{padding-right:960px}.ag-ltr .ag-column-select-indent-49{padding-left:980px}.ag-rtl .ag-column-select-indent-49{padding-right:980px}.ag-ltr .ag-row-group-indent-49{padding-left:980px}.ag-rtl .ag-row-group-indent-49{padding-right:980px}.ag-ltr .ag-column-select-indent-50{padding-left:1000px}.ag-rtl .ag-column-select-indent-50{padding-right:1000px}.ag-ltr .ag-row-group-indent-50{padding-left:1000px}.ag-rtl .ag-row-group-indent-50{padding-right:1000px}.ag-ltr .ag-column-select-indent-51{padding-left:1020px}.ag-rtl .ag-column-select-indent-51{padding-right:1020px}.ag-ltr .ag-row-group-indent-51{padding-left:1020px}.ag-rtl .ag-row-group-indent-51{padding-right:1020px}.ag-ltr .ag-column-select-indent-52{padding-left:1040px}.ag-rtl .ag-column-select-indent-52{padding-right:1040px}.ag-ltr .ag-row-group-indent-52{padding-left:1040px}.ag-rtl .ag-row-group-indent-52{padding-right:1040px}.ag-ltr .ag-column-select-indent-53{padding-left:1060px}.ag-rtl .ag-column-select-indent-53{padding-right:1060px}.ag-ltr .ag-row-group-indent-53{padding-left:1060px}.ag-rtl .ag-row-group-indent-53{padding-right:1060px}.ag-ltr .ag-column-select-indent-54{padding-left:1080px}.ag-rtl .ag-column-select-indent-54{padding-right:1080px}.ag-ltr .ag-row-group-indent-54{padding-left:1080px}.ag-rtl .ag-row-group-indent-54{padding-right:1080px}.ag-ltr .ag-column-select-indent-55{padding-left:1100px}.ag-rtl .ag-column-select-indent-55{padding-right:1100px}.ag-ltr .ag-row-group-indent-55{padding-left:1100px}.ag-rtl .ag-row-group-indent-55{padding-right:1100px}.ag-ltr .ag-column-select-indent-56{padding-left:1120px}.ag-rtl .ag-column-select-indent-56{padding-right:1120px}.ag-ltr .ag-row-group-indent-56{padding-left:1120px}.ag-rtl .ag-row-group-indent-56{padding-right:1120px}.ag-ltr .ag-column-select-indent-57{padding-left:1140px}.ag-rtl .ag-column-select-indent-57{padding-right:1140px}.ag-ltr .ag-row-group-indent-57{padding-left:1140px}.ag-rtl .ag-row-group-indent-57{padding-right:1140px}.ag-ltr .ag-column-select-indent-58{padding-left:1160px}.ag-rtl .ag-column-select-indent-58{padding-right:1160px}.ag-ltr .ag-row-group-indent-58{padding-left:1160px}.ag-rtl .ag-row-group-indent-58{padding-right:1160px}.ag-ltr .ag-column-select-indent-59{padding-left:1180px}.ag-rtl .ag-column-select-indent-59{padding-right:1180px}.ag-ltr .ag-row-group-indent-59{padding-left:1180px}.ag-rtl .ag-row-group-indent-59{padding-right:1180px}.ag-ltr .ag-column-select-indent-60{padding-left:1200px}.ag-rtl .ag-column-select-indent-60{padding-right:1200px}.ag-ltr .ag-row-group-indent-60{padding-left:1200px}.ag-rtl .ag-row-group-indent-60{padding-right:1200px}.ag-ltr .ag-column-select-indent-61{padding-left:1220px}.ag-rtl .ag-column-select-indent-61{padding-right:1220px}.ag-ltr .ag-row-group-indent-61{padding-left:1220px}.ag-rtl .ag-row-group-indent-61{padding-right:1220px}.ag-ltr .ag-column-select-indent-62{padding-left:1240px}.ag-rtl .ag-column-select-indent-62{padding-right:1240px}.ag-ltr .ag-row-group-indent-62{padding-left:1240px}.ag-rtl .ag-row-group-indent-62{padding-right:1240px}.ag-ltr .ag-column-select-indent-63{padding-left:1260px}.ag-rtl .ag-column-select-indent-63{padding-right:1260px}.ag-ltr .ag-row-group-indent-63{padding-left:1260px}.ag-rtl .ag-row-group-indent-63{padding-right:1260px}.ag-ltr .ag-column-select-indent-64{padding-left:1280px}.ag-rtl .ag-column-select-indent-64{padding-right:1280px}.ag-ltr .ag-row-group-indent-64{padding-left:1280px}.ag-rtl .ag-row-group-indent-64{padding-right:1280px}.ag-ltr .ag-column-select-indent-65{padding-left:1300px}.ag-rtl .ag-column-select-indent-65{padding-right:1300px}.ag-ltr .ag-row-group-indent-65{padding-left:1300px}.ag-rtl .ag-row-group-indent-65{padding-right:1300px}.ag-ltr .ag-column-select-indent-66{padding-left:1320px}.ag-rtl .ag-column-select-indent-66{padding-right:1320px}.ag-ltr .ag-row-group-indent-66{padding-left:1320px}.ag-rtl .ag-row-group-indent-66{padding-right:1320px}.ag-ltr .ag-column-select-indent-67{padding-left:1340px}.ag-rtl .ag-column-select-indent-67{padding-right:1340px}.ag-ltr .ag-row-group-indent-67{padding-left:1340px}.ag-rtl .ag-row-group-indent-67{padding-right:1340px}.ag-ltr .ag-column-select-indent-68{padding-left:1360px}.ag-rtl .ag-column-select-indent-68{padding-right:1360px}.ag-ltr .ag-row-group-indent-68{padding-left:1360px}.ag-rtl .ag-row-group-indent-68{padding-right:1360px}.ag-ltr .ag-column-select-indent-69{padding-left:1380px}.ag-rtl .ag-column-select-indent-69{padding-right:1380px}.ag-ltr .ag-row-group-indent-69{padding-left:1380px}.ag-rtl .ag-row-group-indent-69{padding-right:1380px}.ag-ltr .ag-column-select-indent-70{padding-left:1400px}.ag-rtl .ag-column-select-indent-70{padding-right:1400px}.ag-ltr .ag-row-group-indent-70{padding-left:1400px}.ag-rtl .ag-row-group-indent-70{padding-right:1400px}.ag-ltr .ag-column-select-indent-71{padding-left:1420px}.ag-rtl .ag-column-select-indent-71{padding-right:1420px}.ag-ltr .ag-row-group-indent-71{padding-left:1420px}.ag-rtl .ag-row-group-indent-71{padding-right:1420px}.ag-ltr .ag-column-select-indent-72{padding-left:1440px}.ag-rtl .ag-column-select-indent-72{padding-right:1440px}.ag-ltr .ag-row-group-indent-72{padding-left:1440px}.ag-rtl .ag-row-group-indent-72{padding-right:1440px}.ag-ltr .ag-column-select-indent-73{padding-left:1460px}.ag-rtl .ag-column-select-indent-73{padding-right:1460px}.ag-ltr .ag-row-group-indent-73{padding-left:1460px}.ag-rtl .ag-row-group-indent-73{padding-right:1460px}.ag-ltr .ag-column-select-indent-74{padding-left:1480px}.ag-rtl .ag-column-select-indent-74{padding-right:1480px}.ag-ltr .ag-row-group-indent-74{padding-left:1480px}.ag-rtl .ag-row-group-indent-74{padding-right:1480px}.ag-ltr .ag-column-select-indent-75{padding-left:1500px}.ag-rtl .ag-column-select-indent-75{padding-right:1500px}.ag-ltr .ag-row-group-indent-75{padding-left:1500px}.ag-rtl .ag-row-group-indent-75{padding-right:1500px}.ag-ltr .ag-column-select-indent-76{padding-left:1520px}.ag-rtl .ag-column-select-indent-76{padding-right:1520px}.ag-ltr .ag-row-group-indent-76{padding-left:1520px}.ag-rtl .ag-row-group-indent-76{padding-right:1520px}.ag-ltr .ag-column-select-indent-77{padding-left:1540px}.ag-rtl .ag-column-select-indent-77{padding-right:1540px}.ag-ltr .ag-row-group-indent-77{padding-left:1540px}.ag-rtl .ag-row-group-indent-77{padding-right:1540px}.ag-ltr .ag-column-select-indent-78{padding-left:1560px}.ag-rtl .ag-column-select-indent-78{padding-right:1560px}.ag-ltr .ag-row-group-indent-78{padding-left:1560px}.ag-rtl .ag-row-group-indent-78{padding-right:1560px}.ag-ltr .ag-column-select-indent-79{padding-left:1580px}.ag-rtl .ag-column-select-indent-79{padding-right:1580px}.ag-ltr .ag-row-group-indent-79{padding-left:1580px}.ag-rtl .ag-row-group-indent-79{padding-right:1580px}.ag-ltr .ag-column-select-indent-80{padding-left:1600px}.ag-rtl .ag-column-select-indent-80{padding-right:1600px}.ag-ltr .ag-row-group-indent-80{padding-left:1600px}.ag-rtl .ag-row-group-indent-80{padding-right:1600px}.ag-ltr .ag-column-select-indent-81{padding-left:1620px}.ag-rtl .ag-column-select-indent-81{padding-right:1620px}.ag-ltr .ag-row-group-indent-81{padding-left:1620px}.ag-rtl .ag-row-group-indent-81{padding-right:1620px}.ag-ltr .ag-column-select-indent-82{padding-left:1640px}.ag-rtl .ag-column-select-indent-82{padding-right:1640px}.ag-ltr .ag-row-group-indent-82{padding-left:1640px}.ag-rtl .ag-row-group-indent-82{padding-right:1640px}.ag-ltr .ag-column-select-indent-83{padding-left:1660px}.ag-rtl .ag-column-select-indent-83{padding-right:1660px}.ag-ltr .ag-row-group-indent-83{padding-left:1660px}.ag-rtl .ag-row-group-indent-83{padding-right:1660px}.ag-ltr .ag-column-select-indent-84{padding-left:1680px}.ag-rtl .ag-column-select-indent-84{padding-right:1680px}.ag-ltr .ag-row-group-indent-84{padding-left:1680px}.ag-rtl .ag-row-group-indent-84{padding-right:1680px}.ag-ltr .ag-column-select-indent-85{padding-left:1700px}.ag-rtl .ag-column-select-indent-85{padding-right:1700px}.ag-ltr .ag-row-group-indent-85{padding-left:1700px}.ag-rtl .ag-row-group-indent-85{padding-right:1700px}.ag-ltr .ag-column-select-indent-86{padding-left:1720px}.ag-rtl .ag-column-select-indent-86{padding-right:1720px}.ag-ltr .ag-row-group-indent-86{padding-left:1720px}.ag-rtl .ag-row-group-indent-86{padding-right:1720px}.ag-ltr .ag-column-select-indent-87{padding-left:1740px}.ag-rtl .ag-column-select-indent-87{padding-right:1740px}.ag-ltr .ag-row-group-indent-87{padding-left:1740px}.ag-rtl .ag-row-group-indent-87{padding-right:1740px}.ag-ltr .ag-column-select-indent-88{padding-left:1760px}.ag-rtl .ag-column-select-indent-88{padding-right:1760px}.ag-ltr .ag-row-group-indent-88{padding-left:1760px}.ag-rtl .ag-row-group-indent-88{padding-right:1760px}.ag-ltr .ag-column-select-indent-89{padding-left:1780px}.ag-rtl .ag-column-select-indent-89{padding-right:1780px}.ag-ltr .ag-row-group-indent-89{padding-left:1780px}.ag-rtl .ag-row-group-indent-89{padding-right:1780px}.ag-ltr .ag-column-select-indent-90{padding-left:1800px}.ag-rtl .ag-column-select-indent-90{padding-right:1800px}.ag-ltr .ag-row-group-indent-90{padding-left:1800px}.ag-rtl .ag-row-group-indent-90{padding-right:1800px}.ag-ltr .ag-column-select-indent-91{padding-left:1820px}.ag-rtl .ag-column-select-indent-91{padding-right:1820px}.ag-ltr .ag-row-group-indent-91{padding-left:1820px}.ag-rtl .ag-row-group-indent-91{padding-right:1820px}.ag-ltr .ag-column-select-indent-92{padding-left:1840px}.ag-rtl .ag-column-select-indent-92{padding-right:1840px}.ag-ltr .ag-row-group-indent-92{padding-left:1840px}.ag-rtl .ag-row-group-indent-92{padding-right:1840px}.ag-ltr .ag-column-select-indent-93{padding-left:1860px}.ag-rtl .ag-column-select-indent-93{padding-right:1860px}.ag-ltr .ag-row-group-indent-93{padding-left:1860px}.ag-rtl .ag-row-group-indent-93{padding-right:1860px}.ag-ltr .ag-column-select-indent-94{padding-left:1880px}.ag-rtl .ag-column-select-indent-94{padding-right:1880px}.ag-ltr .ag-row-group-indent-94{padding-left:1880px}.ag-rtl .ag-row-group-indent-94{padding-right:1880px}.ag-ltr .ag-column-select-indent-95{padding-left:1900px}.ag-rtl .ag-column-select-indent-95{padding-right:1900px}.ag-ltr .ag-row-group-indent-95{padding-left:1900px}.ag-rtl .ag-row-group-indent-95{padding-right:1900px}.ag-ltr .ag-column-select-indent-96{padding-left:1920px}.ag-rtl .ag-column-select-indent-96{padding-right:1920px}.ag-ltr .ag-row-group-indent-96{padding-left:1920px}.ag-rtl .ag-row-group-indent-96{padding-right:1920px}.ag-ltr .ag-column-select-indent-97{padding-left:1940px}.ag-rtl .ag-column-select-indent-97{padding-right:1940px}.ag-ltr .ag-row-group-indent-97{padding-left:1940px}.ag-rtl .ag-row-group-indent-97{padding-right:1940px}.ag-ltr .ag-column-select-indent-98{padding-left:1960px}.ag-rtl .ag-column-select-indent-98{padding-right:1960px}.ag-ltr .ag-row-group-indent-98{padding-left:1960px}.ag-rtl .ag-row-group-indent-98{padding-right:1960px}.ag-ltr .ag-column-select-indent-99{padding-left:1980px}.ag-rtl .ag-column-select-indent-99{padding-right:1980px}.ag-ltr .ag-row-group-indent-99{padding-left:1980px}.ag-rtl .ag-row-group-indent-99{padding-right:1980px}.ag-ltr{direction:ltr}.ag-ltr .ag-body,.ag-ltr .ag-body-horizontal-scroll,.ag-ltr .ag-body-viewport,.ag-ltr .ag-floating-bottom,.ag-ltr .ag-floating-top,.ag-ltr .ag-header{flex-direction:row}.ag-rtl{direction:rtl}.ag-rtl .ag-body,.ag-rtl .ag-body-horizontal-scroll,.ag-rtl .ag-body-viewport,.ag-rtl .ag-floating-bottom,.ag-rtl .ag-floating-top,.ag-rtl .ag-header{flex-direction:row-reverse}.ag-rtl .ag-icon-contracted,.ag-rtl .ag-icon-tree-closed{display:block;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.ag-layout-print.ag-body-viewport{flex:none}.ag-layout-print.ag-root-wrapper{display:inline-flex}.ag-layout-print .ag-center-cols-clipper{min-width:100%}.ag-layout-print .ag-body-horizontal-scroll{display:none}.ag-layout-print.ag-force-vertical-scroll{overflow-y:visible!important}@media print{.ag-root-wrapper.ag-layout-print,.ag-root-wrapper.ag-layout-print .ag-body-horizontal-scroll-viewport,.ag-root-wrapper.ag-layout-print .ag-body-viewport,.ag-root-wrapper.ag-layout-print .ag-center-cols-clipper,.ag-root-wrapper.ag-layout-print .ag-center-cols-container,.ag-root-wrapper.ag-layout-print .ag-center-cols-viewport,.ag-root-wrapper.ag-layout-print .ag-root,.ag-root-wrapper.ag-layout-print .ag-root-wrapper-body,.ag-root-wrapper.ag-layout-print .ag-virtual-list-viewport{display:block!important;height:auto!important;overflow:hidden!important}.ag-root-wrapper.ag-layout-print .ag-row{page-break-inside:avoid}}.ag-body .ag-body-viewport{-webkit-overflow-scrolling:touch}.ag-chart{height:100%;width:100%}.ag-chart,.ag-chart-components-wrapper{display:flex;overflow:hidden;position:relative}.ag-chart-components-wrapper{flex:1 1 auto}.ag-chart-title-edit{display:none;left:0;position:absolute;text-align:center;top:0}.ag-chart-title-edit.currently-editing{display:inline-block}.ag-chart-canvas-wrapper{flex:1 1 auto;overflow:hidden;position:relative}.ag-charts-canvas{display:block}.ag-chart-menu{display:flex;flex-direction:column;overflow:hidden;position:absolute;top:10px;width:24px}.ag-ltr .ag-chart-menu{right:20px}.ag-rtl .ag-chart-menu{left:20px}.ag-chart-docked-container{min-width:0;position:relative;-webkit-transition:min-width .4s;transition:min-width .4s;width:0}.ag-chart-menu-hidden~.ag-chart-docked-container{max-width:0;overflow:hidden}.ag-chart-tabbed-menu{display:flex;flex-direction:column;height:100%;overflow:hidden;width:100%}.ag-chart-tabbed-menu-header{cursor:default;flex:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ag-chart-tabbed-menu-body{align-items:stretch;display:flex;flex:1 1 auto;overflow:hidden}.ag-chart-tab{overflow:hidden;overflow-y:auto;width:100%}.ag-chart-settings{overflow-x:hidden}.ag-chart-settings-wrapper{display:flex;flex-direction:column;height:100%;overflow:hidden;position:relative;width:100%}.ag-chart-settings-nav-bar{align-items:center;display:flex;height:30px;padding:0 10px;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.ag-chart-settings-card-selector{align-items:center;display:flex;flex:1 1 auto;height:100%;justify-content:space-around;padding:0 10px}.ag-chart-settings-card-item{background-color:#000;cursor:pointer;height:10px;position:relative;width:10px}.ag-chart-settings-card-item.ag-not-selected{opacity:.2}.ag-chart-settings-card-item:before{background-color:transparent;content:" ";display:block;height:20px;left:50%;margin-left:-10px;margin-top:-10px;position:absolute;top:50%;width:20px}.ag-chart-settings-next,.ag-chart-settings-prev{flex:none;position:relative}.ag-chart-settings-next-button,.ag-chart-settings-prev-button{cursor:pointer;height:100%;left:0;opacity:0;position:absolute;top:0;width:100%}.ag-chart-settings-mini-charts-container{flex:1 1 auto;overflow-x:hidden;overflow-y:auto;position:relative}.ag-chart-settings-mini-wrapper{display:flex;flex-direction:column;left:0;min-height:100%;overflow:hidden;position:absolute;top:0;width:100%}.ag-chart-settings-mini-wrapper.ag-animating{-webkit-transition:left .3s;transition:left .3s;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out}.ag-chart-mini-thumbnail{cursor:pointer}.ag-chart-mini-thumbnail-canvas{display:block}.ag-chart-data-wrapper,.ag-chart-format-wrapper{display:flex;flex-direction:column;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.ag-chart-data-wrapper{height:100%;overflow-y:auto}.ag-chart-data-section,.ag-chart-format-section{display:flex;margin:0}.ag-chart-empty-text{align-items:center;display:flex;height:100%;justify-content:center;top:0;width:100%}.ag-chart .ag-chart-menu{opacity:0;pointer-events:none}.ag-chart-menu-hidden:hover .ag-chart-menu{opacity:1;pointer-events:all}.ag-charts-font-size-color{align-self:stretch;display:flex;justify-content:space-between}.ag-charts-data-group-item{position:relative}.ag-date-time-list-page-column-labels-row,.ag-date-time-list-page-entries-row,.ag-date-time-list-page-title-bar{display:flex}.ag-date-time-list-page-column-label,.ag-date-time-list-page-entry{flex-basis:0;flex-grow:1}.ag-date-time-list-page-entry{cursor:pointer}.ag-theme-balham{-webkit-font-smoothing:antialiased;color:#000;color:var(--ag-foreground-color,#000);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:12px;line-height:normal}@font-face{font-family:agGridBalham;font-style:normal;font-weight:400;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABgoAAsAAAAALEgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAAmMAAAR2YfRkQU9TLzIAAANsAAAAQQAAAFZWUFLwY21hcAAAA7AAAAIMAAAFnGSNxkJnbHlmAAAFvAAADpIAABo4y6JNTGhlYWQAABRQAAAANAAAADZ2zcSBaGhlYQAAFIQAAAAaAAAAJAfQBDFobXR4AAAUoAAAABoAAAEgs7L//WxvY2EAABS8AAAAawAAAJJHu0GKbWF4cAAAFSgAAAAfAAAAIAFeAKpuYW1lAAAVSAAAATUAAAJG0OP3eXBvc3QAABaAAAABqAAAAm9qOX49eJx9lM1SE1EQhc8wAYFEoDQqRkRQ/IvKMD8Zk/CTkJBoWS5cWJYLN1hWWVZRrngOH8AnYOkT+AAufAIfwIVL15ZfdwaDLMitTO50n+4+fW7fKJA0qw3taGJv+Pyl5g72Dz+qppJGH/Of3AcHH97va/r4DV/Jf6cVlCqa00291qG+BXPBYXA0UQ1r4avwXfg5/BL+UghqReugy1TcUKyEZ6RUmRrKNaEpbDH7x2qCDnm23HpBVzXpnp76WqRmTEzfM9b1THe0QJ6u5+loG1TKspwdnkPWXc2fgch1j/wZbDaxllBkmf2WqprRHiw7MGkT38R/kZo71I6I6uLrwm4SS4t9W5fgZBElV/Wp3ugRfuvUsmRFTMo31q6/R/5WZh2jWuRpUMty12FwbG9QNSHiIdkzUFuFonVUL+NNwUTEtl1Biy6DTOCWapWd9ZnAtaI1MC/01qvuFjEd13SkQB32Y3vX8+V0ftLaJtcQ7AM4jK12PvepFWngXS2COdAnHemrvuuHfuq3/uicLlMn8R62yb5zpjbTKHga3cPb+me1XqeYgdOo/xEzdN5wdWJ8/UJDq1amM1MnZR9hTR0/C0/D92CTcx4lakRe1056krXJewz6fDGdTVbFle4zBfM+wQOfhRoTlui6ZxzNYY7WS2S03YhfzXVrku+an5upazdswd/sLth51zj/ZX4jOsxcpyd4V7BYprHlhkflsLcc6/hzWI+rGaslWGU+0TZjA78dPSrdop8Rk0S3/WYMfL7WYJAVN7XKGRr7dnFiVxwXe1TAP0FU3PDUtbOZ7sLN5mP4F/iHapMAeJxjYGSqZ5zAwMrAwFTFtIeBgaEHQjM+YDBkZAKKMrAyM2AFAWmuKQwHGHQ/GjG/AHKjmN8wsABpRpAcANz2CuAAAAB4nLXUZ1IbQRCG4VeBKIEDOeNEVkAgssjhh0+BM4UDhTPn8Nl8jz4B/ma7fQBc5al61Duzo9FMrb4F2oCCLEkR8p3kdEUur9FcNl6gOxsv8lv9Mp3kdV3hgiturHF7q9EK51xybbms97flNLvMODOsqbdHjRab7NPglDrbrLLDFge62+SIZTZY4ZAT1tnlmDN9P+2iqD2206Hf7dJOSlqxh17u84A++hlgkCGGGWGUMf3WBJNMMa15j3jME57yTPNmmGWOeRZ0XWJRpyppzwtUtcl27tb27jg/tVprc79xWt/WibcO1po67MbK4cn67vHZPyz2H1o5fRR+Re856Ym6dNrzUJMXoSUvw6a8CvvyOjTkTTiVt6Eu78K2XIRVuQw78j5syYdwIB9D+ld9Ck25CkdyHZblc9iQL2FFvoZD+RZO5HtYlx9hV36GY7kJeoCWcykvlnekWnApX1Z0KWPW5lL2rN2Raocj1U5Hql2OVLtdyqSVHKmWXXqS1uNItdeR6j2n7GBBKcKCsoE9dEoW1ueUMazfKW3YgFPusEGnBGJDTlnEhp1SiY045RMbdUoqNuaUWWzcKb3YhFOOsUmnRGNTLjvvtFPKsaC8Y0HJx4LeAVjQ2wAL2XlnHKnOOlKdc6Q670h1wZHqosvWWXLZ3iqOdL/q0vvVai6bU3cpY7bssjUbjuofQy2jW3ic7VlrkBzVde5ze2d6et7d04+Z2Z33a3deu/OWZnd79EDL7gr0YldCBqQoEnKwVhgpwsJCC7ZwBBI4JlIBdkXxq8qmoCouJ65QlC3ZKeKCpYIWhUAShCs/sBML4mAcq1LljaaVc3t6VlqhAPa/VLLT3ff07XvPPfecc8/57l2GZfCP/Q77HUZlSsx2hoEwUUXWTbieVJFkiE8jjaQlbvWAVZbUMKg9KQ0aIluETDoRt1oStYSsqObPyhk/uVKryLFMtVFvYNt6o57O0F8txgr9a7LQ0wPZNf36T/WfXnmDkP7z1DIAtodUExCGcKJKHA6kp+5a8V/wZGsBfI5o2K04vHa/J5p2qwst/Rj0cLJ7pVu2WsORITEEcJB95nqsIWS8raqnbv/6+j/6VJe1OQzLLrRYj+hUFKdP7FuluPwht+ptzToG5aTkHHL6PEKfPylFE6upqsDQ15fZLzMRhvGpXKahcjHBKDJCzCgaMcEoVGFuPH/yZH4cXEtL/dfm+xvXr1/87jLHIy+yEmPDF3OcBLxxtPDaa4WjGjl1NP/aa/mj+jIqliHbHnYPIzEDTA3bx6k5JGqaMrVDldqBK9N3iX4x7FKnX3zIFzkj/0wDLu7eMl2uVMrTW17pErunJ8ayuVx2bOJZSkAWqelvFb797cK3jCe7Z0lzg9CWNjco/dfdHvhkFmX2s36kOMaBOq0ICXo3KnLi3OzsuwcOvHPvveQu/ZNkvP38woLR/PJlfFxg32F8TIZBNgMQL0JNqGpQiZXDIAuSG9hY3E2pMK3T6NcicID6A7ba/lzplqGhW0qkUw62Z0PlEF7kIaPs17e9UvkKfPpKi5LRg/1mqBRqH8YHXuQL+PgVtix/Be65Vqbcx5eJjeG6+CiJVrZ/TEY+Why9OG64y2X8Q1kuGLIw0B0+EVsUyXI9SapXMaeDHblGCvbC1V9pOXatBKY972N3MRb0WD/D8MCpPLCNCHRig6SU6zXqiOTf9O3NnXobtLm5l77rcAQ8SmlNSfEE4AX4xjB+0P8GRufmNJcr3JsOxEuleCDVF6bse4wxCqzb9BkPw6QSQsVn3kDv51qtH2ja6VarfVbT3iLl9vyVe3Edk5OsBeVEGanfkxP6+/mf/SwPFzulOZebcT35mAQzREfpKnB4UaksRkEkFKyp46c0jm7YXI5hPfnzi7mJXHYiT4vcRPpSul43HnrPiuxEDp7QP5mqzeI3qBgNcvpZfJByPa3/mDaFkXRddxIxN55r1VJX5H6RvEjXCixZtVctRxK9eplZGebyJfZu9heMF2cSYsaZzzF/hr3p8rd0pEcvqNfYRA2EmGpVcTK+lOQmON2eWlUjFTpZyRpPZ4pAp4tuU6axvayo1K3iWF2r1sthtkJti6mhSKgOymFidur0iYCihklDxYBT0qgCJdkDboI6HWSxu8Lu5XbfY9HXZRqNDKlnGmPf01fBMQKsxXue6Nt5MSx5Vclrt7j8MZ+a9Nldth6b5FH7nGpUsRKb2/4XYlwJCS4v77ZxNo9TUByiV+oVxIgi+gWb3cX1WDxh0eqwiKLDJdpHclnCEpvDZiE1wtk9TiupsGAXbeTnts8csZBlmUuvGsIcO3fpOHvfGwFeaD/+j85I2GcTe6MpOV5LS30ZkffYXbJULUdzit9v97g9gQHF40iJDrcjIDhV0S3YrJwvVkz5XLJf9todHtHn4h08y3EWzhf64x+c5h1WO+eyW/jXeY+Nd/PzHt7uFamp/992/3tttzR3m5igQnxm7oabOrkb5joxbYmdJz7Sxg2avKv1SlmJQItQkymy5AHEaGjXeHoQOOoE6Vr1w01T2LqW5yySR/B5R1bY3VaXzeOT10057bwoiT23bunhBaz5MKXOfXaP2+VQvD7/Jz7hES0Wr1MI7f2sRxbdPG998JDVZhU8IvN/ZI5L8gqmPo4HcgKTif4+eMk/0eziBS82sRi55Wm2iZllOXMTM81sw/b1RgXhdwdF08juhkwHOzcMlIZhXnWDBwywTV+tRkKqNkCDFhQJ9ql31juXMlZtpdwCY1Un4hwktt8l3v7M55MuQewNRtOj+Ym1z26cumFjyevjHQ6vN98ayWtDN6mQ3rh+x523K1Jfc2Jk13AeHh5aq0L4wBNfW5toTgzf2czp88HcjbnBTD6YHc8OZsivSiy77pFb++LhbF8sgIxToiSXmpt7i5JfDsujudH8U5Fba2SrNirJYau9Lze8a3iiqf9ddGuNjN89ysbjWDMy0TzfP4gcg/nMYA6LK7n+aTbB9DJFZhg1ZexQTBVZr1YP7jVUN+lqp6MRrtxxlSJgUFOpJhD3hIAGQUQ90F7Ux9q9n/r0/q0byqYuWn89Azd98e6IqYuNn09QBYw3dzSbOw7sWL58xz9kx6fGs8aDTSxOfl0y4fasaG4xJz69q6dFRmfWdCYeCt67ns42shxZdPj8PWQpkyzpFNR1TGxTwP0Yokgw5xkCrlE3J5sehZhFMvdccqPWcQ1cOgUY8K9q+G2nAQhw/vqqwADZ1z5rMyh0kc5XciEzFBoeCvLOP3xsen/TYQuURsNDyTUtgQ+WRkNDqSODU9iiWQrygikPWTD8me96tEVICOQ3plfrv6ctOraiO+Ei4+zMgby3iM98OJte3DElDGw8yDCNRK2iXnWnPuJ9wcByVxDd9V8WZjt/LbPUzBLFsS3Z59ZwzY0yK5k1Rgz6rXa8PpTGgpg9dU35O+5tT83OwkH9JViuH1uknEhd1Cfhud9tO9v+d03TWubNMB+wYQftUpRMcibi/WdN66Le9n+iBbt+uJ/tRc0J1O4IaKnpWbWRwdlieMy04Jh+sHVcPw/p+fnSLLyth2dL5HHttHYc0pDWz8+X0QLlLq99iKOzzBbDp1GtHCoYwxvVar0FtXSmhH7uBnTpMDSwRqOhzxc3WmEljXZF8wPtLeEHrC4Z697gkiB+3GvEeu32vpnQLf3JKmdVAqKTFVPePo/bm8gdXp6NzBT8ITW7K3tzaM+g2qfmwjbgUgHZIdIuuQaokggOVky4+yS7Y3UxnSVreKeld9NAOrQn5HO5RtOJsaDIJlJiUs7sHColc72qJ7qn+PBwMQJ8FLl+YXgoGuYdlsiugopcfW7P+mKoJhl9Yr7kHYXSep+364+Pso9+YI0w1KMoprfgbXgX3g3znUMaPVS7Zy4/By/k5/IQWFhozy8srEWabMNaXCnbFiJI4JUvowdswxKvuWcWrvhCm7QRWbpwtx2hzsClBgF3Eo1fsG+O7d+4H/7WLOfOs7T8aqcw90MF8mp3rw7oCd0fW2h/CaONeUOghbZvdW0fx/htjGcOZA4Lr/YYA/1JZ7z/eLMHi33wozfZsX2b9pt9n8V9XscHuwgKXbdzEALNx4pvnS8+thL+aiVSbw0+Bhseyp09m3sIzrTn4UyHphga+RxhDzIKRp8G02LWMlPIj7qaqhhul0kb3tXQiEpfOavphxh0qW9hK1qZQcTBg2KE20FATAJGp3pDNYK02kjDwh2bN+61O7Ppmyeev/WO1aMrCElF73505YbxG27j+VR607oz66azCZtt69jkU1Grdf3oqslqKQOH9F9WZgayCFHOrFrerx9NOvzBenMTr1XLsiJejrCfIdXS09vuvG3DslpKVlrLvjq1ZXLlznqL5LNf3DB98/pizpItbJ6Y3vh4rvDy6MTYbDzJWYIK3K8/5e1NpavN4VdIWNGPtk6sXD1QsGjsQP+INnzZvngGM8Pej97Xz4ygZoyDIuPwSE588KAgwZUVujmo1iGG4Euo1odBjtUoOBMkK9nndAcimyMBt3M2vjyOF1zslAtCIBAPBMChO4PJZLAFB7VgKsWGRMnvFkW3XxKxkT5pdnoOH4I/6ser/fVUAJ4LJmdnk0F9MpBajE+HDZmbKHEXIdXRCFhQY3E0QdIwg4uJ5tEIcGmcEnSs11CVioGhYOMJID0WPtQcbOx0N0NRCMsr1vwB5lBWkgvqkxge/8XHO23eU/X+sgBBm0rARp6w4VbALXpfhwdOIGLwOPsdvGNHcTQs62/3TTvvtFoCtdyQ6sDu5Eter8+tnHKzbK/+r1Yp46+KT2Iw52zi64z9qrwURe2vZMYM77yN2cHs/h9yU0xQjINVC01PEYQxndUgI9DhEp0jScVQRkpSK7WMlavUGllARVQwscoV6tEpa4KTK410Qq58WOKCQ+2XfvkeZhW+bQPMMVH4vj0/PZXns2P9B/j89HTeviJZDoah/TIcvh9gtlVdi5nuUAvOHKLtURfLsw/+aNmND35oKrvUftnKY/P3zgpeHAzuB4/BnL+n/8Yc4fNTOA7gdkvJhseWPfDDydqDv6mntrcOH47ThAdweBYeWPQJeu5Fzz/N008v9YIoVYf3mtPPuLG5oF/g4iMH9q2+4YbV+w6At0s9cnD3zubISHPn7veQGB5Ggr1AP+jvL22sLWlDiZHumurKov1W0lxzNmu0+bgiwnevc+r6seXWJ6eX9qTMrsUCFD9gwMdkpCIowGieYffp54+39INwrHW8NKuH4e3Z0vw8IorzxykaOE5hwPy8yYeeT7swEjO4z0Mcae77BEs3urP+9vO3lOJkPF7SvzfTPHeuOTOFrH4CSf0n9BQQkn0zw+fODc/AycXzeAs5aZzj0QMKtkd/34AyZDeFp0gw17YDemaGeCzfga1HOuVimxe6Z4IqttFP/CVu0VeRJ5AoPAyrFnkViESt7EMdnDaSnk9bjKV72Rm0ew7xJeOLI5BEtI6Zhm7GMLJiPvEhpgkTBDMZ7goGygBFO6qxtOk/Uzq0cW7zNCFJQv4Ulr1LLAalz71LvEU1pGz6/Z1JraAl7sr6Y5xNDmoF+MbAuhBWCYXA4GZRECJIR6JWpXfnMnYPdraQU/rcO8gQrOQUNN4l+n0IX7B9xGDk7PUW+5KTvchoMmrwUVhLOd+/Ffm0Iptv7y8N4wz/G4A9L1cAAHicY2BkYGAAYgWvvDnx/DZfGbiZXwAFojgf72uA0f/////D/IL5DVAlBwMTkGQAAHb/DvN4nGNgZGBgfsHAACL//wezGRlQgQcAdFMFCgAAeJxjYGBgYH6BDf//j8C41AwspgcAANyGMDUAAHicY2AAghkMFxieMTowRjEuYXzFpMEUxVTD1Md0g+kT8wWWdSxHWM1YV7DuYQtgO8EuwK7FXsL+iYOHw4hjD8cPTjFOA04/ziIuJq4YrgPcadxreIR4zHgSeEp42nhm8azglSEdAgCdlRu1AHicY2BkYGDwYJjHwMMAAkxAzAWEDAz/wXwGACBkAgkAeJx1jz9OwzAYxV9oWkSLEBISYsMTC1L6Z2Do2KHZO3RgcxsnbZXEkeNW6sYxOAHHYOQInIJD8BK+oUKqLTk///zeJwXALb4QoFkBrtuzWRe45O2PO6Q74ZD8KNzFAM/CPfoX4T7tTHjAZsEJQXhF84A34Qvc4F24Q/8hHJI/hbu4x7dwj/5HuI9lEAoP8BS86ix222Sm840uFibb59qdqlNeGldvbanG0ehUx6Y0TnuTqNVR1Yds4n2qUmcLNbelN3luVeXszqx9tPG+mg6HqfhobQtoZIjhsEXCP9fIseFZYAHDlz3vmq/nUuf8km2Hmt6ihMIYEUZn0zHTZdvQ8PwmbKxw5FnjwM6E1iPlPWXGsqEwbyc36Zzb0lTt245mTR9xdtOqMMWQO/2Xj5jipF9al2jJAAAAeJxtkQdv2zAQhf3Fku3YaeO6bbr3Hmrr7p3upj+DpmiZiEQKJOWRX18iLgIE6AE8vPdwvHu4a2201tFv/T/22KBNQkqHLj026TNgixOcZJshpxhxmjOcZYdznOcCF7nEZa5wlWtc5wY3ucVt7nCXe9znAQ95xGMynvCUZ4x5zgte8orXvOEt73jPBz7yic/s8oWvfOM7P/jJL36zx5/WQBSFU4UI2pqOcM4ufFt42ZHCSFWmciZcGMqZkvsTu8wOgcp3jgRtchWUq7QRQY2O5Mb8q9yStrQuq3UkrhtJUxnfl9YEJ2RQeSJtvUqls963pZ+n8WXjJFdepmoZDXQPczbuqWUt4qx8U61U5kvhZ+2IOlNdxvHpVDsfksLpOi2cbeokFoSkVNPQKbWJPrqlFbk2Ra8SS13pA5VUyjS96HvNjDVqYGzIRFnahcrTOjZQ7VqbtNZzG4YufrfZpAnBmsxOp9vHBZM6XcxC4sVc9X0Vu2S5XZjeGkZDIW5gFJxSx1fWa8zaIIIChyKgsRgWeCQlM/aZsIwnzqloqFkxZ8pBq/UXq/Gj5g==) format("woff")}.ag-theme-balham .ag-icon{-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:agGridBalham;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;line-height:16px;text-transform:none}.ag-theme-balham .ag-icon-aggregation:before{content:"\f101"}.ag-theme-balham .ag-icon-arrows:before{content:"\f102"}.ag-theme-balham .ag-icon-asc:before{content:"\f103"}.ag-theme-balham .ag-icon-cancel:before{content:"\f104"}.ag-theme-balham .ag-icon-chart:before{content:"\f105"}.ag-theme-balham .ag-icon-color-picker:before{content:"\f109"}.ag-theme-balham .ag-icon-columns:before{content:"\f10a"}.ag-theme-balham .ag-icon-contracted:before{content:"\f10b"}.ag-theme-balham .ag-icon-copy:before{content:"\f10c"}.ag-theme-balham .ag-icon-cross:before{content:"\f10d"}.ag-theme-balham .ag-icon-csv:before{content:"\f10e"}.ag-theme-balham .ag-icon-desc:before{content:"\f10f"}.ag-theme-balham .ag-icon-excel:before{content:"\f110"}.ag-theme-balham .ag-icon-expanded:before{content:"\f111"}.ag-theme-balham .ag-icon-eye-slash:before{content:"\f112"}.ag-theme-balham .ag-icon-eye:before{content:"\f113"}.ag-theme-balham .ag-icon-filter:before{content:"\f114"}.ag-theme-balham .ag-icon-first:before{content:"\f115"}.ag-theme-balham .ag-icon-grip:before{content:"\f116"}.ag-theme-balham .ag-icon-group:before{content:"\f117"}.ag-theme-balham .ag-icon-last:before{content:"\f118"}.ag-theme-balham .ag-icon-left:before{content:"\f119"}.ag-theme-balham .ag-icon-linked:before{content:"\f11a"}.ag-theme-balham .ag-icon-loading:before{content:"\f11b"}.ag-theme-balham .ag-icon-maximize:before{content:"\f11c"}.ag-theme-balham .ag-icon-menu:before{content:"\f11d"}.ag-theme-balham .ag-icon-minimize:before{content:"\f11e"}.ag-theme-balham .ag-icon-next:before{content:"\f11f"}.ag-theme-balham .ag-icon-none:before{content:"\f120"}.ag-theme-balham .ag-icon-not-allowed:before{content:"\f121"}.ag-theme-balham .ag-icon-paste:before{content:"\f122"}.ag-theme-balham .ag-icon-pin:before{content:"\f123"}.ag-theme-balham .ag-icon-pivot:before{content:"\f124"}.ag-theme-balham .ag-icon-previous:before{content:"\f125"}.ag-theme-balham .ag-icon-right:before{content:"\f128"}.ag-theme-balham .ag-icon-save:before{content:"\f129"}.ag-theme-balham .ag-icon-small-down:before{content:"\f12a"}.ag-theme-balham .ag-icon-small-left:before{content:"\f12b"}.ag-theme-balham .ag-icon-small-right:before{content:"\f12c"}.ag-theme-balham .ag-icon-small-up:before{content:"\f12d"}.ag-theme-balham .ag-icon-tick:before{content:"\f12e"}.ag-theme-balham .ag-icon-tree-closed:before{content:"\f12f"}.ag-theme-balham .ag-icon-tree-indeterminate:before{content:"\f130"}.ag-theme-balham .ag-icon-tree-open:before{content:"\f131"}.ag-theme-balham .ag-icon-unlinked:before{content:"\f132"}.ag-theme-balham .ag-icon-row-drag:before{content:"\f116"}.ag-theme-balham .ag-left-arrow:before{content:"\f119"}.ag-theme-balham .ag-right-arrow:before{content:"\f128"}.ag-theme-balham .ag-root-wrapper{background-color:#fff;background-color:var(--ag-background-color,#fff)}.ag-theme-balham [class^=ag-],.ag-theme-balham [class^=ag-]:after,.ag-theme-balham [class^=ag-]:before,.ag-theme-balham [class^=ag-]:focus{-webkit-box-sizing:border-box;box-sizing:border-box;outline:none}.ag-theme-balham [class^=ag-]::-ms-clear{display:none}.ag-theme-balham .ag-checkbox .ag-input-wrapper,.ag-theme-balham .ag-radio-button .ag-input-wrapper{overflow:visible}.ag-theme-balham .ag-range-field .ag-input-wrapper{height:100%}.ag-theme-balham .ag-toggle-button{flex:none;min-width:0;min-width:auto;width:auto}.ag-theme-balham .ag-ltr .ag-label-align-right .ag-label{margin-left:4px}.ag-theme-balham .ag-rtl .ag-label-align-right .ag-label{margin-right:4px}.ag-theme-balham input[class^=ag-]{margin:0}.ag-theme-balham input[class^=ag-],.ag-theme-balham select[class^=ag-],.ag-theme-balham textarea[class^=ag-]{background-color:#fff;background-color:var(--ag-background-color,#fff)}.ag-theme-balham input[class^=ag-]:not([type]),.ag-theme-balham input[class^=ag-][type=date],.ag-theme-balham input[class^=ag-][type=datetime-local],.ag-theme-balham input[class^=ag-][type=number],.ag-theme-balham input[class^=ag-][type=tel],.ag-theme-balham input[class^=ag-][type=text],.ag-theme-balham textarea[class^=ag-]{border:1px solid #95a5a6;border-color:var(--ag-input-border-color,#95a5a6);color:inherit;font-size:inherit;line-height:inherit}.ag-theme-balham input[class^=ag-]:not([type]):disabled,.ag-theme-balham input[class^=ag-][type=date]:disabled,.ag-theme-balham input[class^=ag-][type=datetime-local]:disabled,.ag-theme-balham input[class^=ag-][type=number]:disabled,.ag-theme-balham input[class^=ag-][type=tel]:disabled,.ag-theme-balham input[class^=ag-][type=text]:disabled,.ag-theme-balham textarea[class^=ag-]:disabled{background-color:#ebebeb;background-color:var(--ag-input-disabled-background-color,#ebebeb);border-color:hsla(184,9%,62%,.3);border-color:var(--ag-input-disabled-border-color,hsla(184,9%,62%,.3));color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38))}.ag-theme-balham input[class^=ag-]:not([type]):focus,.ag-theme-balham input[class^=ag-][type=date]:focus,.ag-theme-balham input[class^=ag-][type=datetime-local]:focus,.ag-theme-balham input[class^=ag-][type=number]:focus,.ag-theme-balham input[class^=ag-][type=tel]:focus,.ag-theme-balham input[class^=ag-][type=text]:focus,.ag-theme-balham textarea[class^=ag-]:focus{border-color:#719ece;border-color:var(--ag-input-focus-border-color,#719ece);-webkit-box-shadow:0 0 2px 1px #719ece;box-shadow:0 0 2px 1px #719ece;outline:none}.ag-theme-balham input[class^=ag-]:not([type]):invalid,.ag-theme-balham input[class^=ag-][type=date]:invalid,.ag-theme-balham input[class^=ag-][type=datetime-local]:invalid,.ag-theme-balham input[class^=ag-][type=number]:invalid,.ag-theme-balham input[class^=ag-][type=tel]:invalid,.ag-theme-balham input[class^=ag-][type=text]:invalid,.ag-theme-balham textarea[class^=ag-]:invalid{border:2px solid #e02525;border-color:var(--ag-input-border-color-invalid,var(--ag-invalid-color,#e02525))}.ag-theme-balham input[class^=ag-][type=number]{-moz-appearance:textfield}.ag-theme-balham input[class^=ag-][type=number]::-webkit-inner-spin-button,.ag-theme-balham input[class^=ag-][type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.ag-theme-balham input[class^=ag-][type=range]{padding:0}.ag-theme-balham button[class^=ag-]:focus,.ag-theme-balham input[class^=ag-][type=button]:focus{-webkit-box-shadow:0 0 2px 1px #719ece;box-shadow:0 0 2px 1px #719ece}.ag-theme-balham .ag-drag-handle{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54))}.ag-theme-balham .ag-list-item,.ag-theme-balham .ag-virtual-list-item{height:24px}.ag-theme-balham .ag-keyboard-focus .ag-virtual-list-item:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-virtual-list-item:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-select-list{background-color:#fff;background-color:var(--ag-background-color,#fff);overflow-x:hidden;overflow-y:auto}.ag-theme-balham .ag-list-item{align-items:center;display:flex;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-theme-balham .ag-list-item.ag-active-item{background-color:#ecf0f1;background-color:var(--ag-row-hover-color,#ecf0f1)}.ag-theme-balham .ag-select-list-item{cursor:default;padding-left:4px;padding-right:4px;-moz-user-select:none;-webkit-user-select:none;user-select:none}.ag-theme-balham .ag-select-list-item span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-theme-balham .ag-select .ag-picker-field-wrapper{background-color:#fff;background-color:var(--ag-background-color,#fff);cursor:default;min-height:24px}.ag-theme-balham .ag-select.ag-disabled .ag-picker-field-wrapper:focus{-webkit-box-shadow:none;box-shadow:none}.ag-theme-balham .ag-select:not(.ag-cell-editor){height:24px}.ag-theme-balham .ag-select .ag-picker-field-display{margin:4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ag-theme-balham .ag-select .ag-picker-field-icon{align-items:center;display:flex}.ag-theme-balham .ag-select.ag-disabled{opacity:.5}.ag-theme-balham .ag-rich-select{background-color:#f5f7f7;background-color:var(--ag-control-panel-background-color,#f5f7f7)}.ag-theme-balham .ag-rich-select-list{height:182px;min-width:200px;width:100%}.ag-theme-balham .ag-rich-select-value{border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7));height:28px;padding:0 4px 0 12px}.ag-theme-balham .ag-rich-select-virtual-list-item{cursor:default;height:24px}.ag-theme-balham .ag-rich-select-virtual-list-item:hover{background-color:#ecf0f1;background-color:var(--ag-row-hover-color,#ecf0f1)}.ag-theme-balham .ag-rich-select-row{padding-left:12px}.ag-theme-balham .ag-rich-select-row-selected{background-color:#b7e4ff;background-color:var(--ag-selected-row-background-color,#b7e4ff)}.ag-theme-balham .ag-group-contracted,.ag-theme-balham .ag-group-expanded,.ag-theme-balham .ag-row-drag,.ag-theme-balham .ag-selection-checkbox{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54))}.ag-theme-balham .ag-ltr .ag-group-contracted,.ag-theme-balham .ag-ltr .ag-group-expanded,.ag-theme-balham .ag-ltr .ag-row-drag,.ag-theme-balham .ag-ltr .ag-selection-checkbox{margin-right:12px}.ag-theme-balham .ag-rtl .ag-group-contracted,.ag-theme-balham .ag-rtl .ag-group-expanded,.ag-theme-balham .ag-rtl .ag-row-drag,.ag-theme-balham .ag-rtl .ag-selection-checkbox{margin-left:12px}.ag-theme-balham .ag-cell-wrapper>:not(.ag-cell-value):not(.ag-group-value){align-items:center;display:flex;flex:none;height:min(26px,26px);height:min(var(--ag-line-height,26px),26px)}.ag-theme-balham .ag-group-contracted,.ag-theme-balham .ag-group-expanded{cursor:pointer}.ag-theme-balham .ag-group-title-bar-icon{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));cursor:pointer;flex:none}.ag-theme-balham .ag-ltr .ag-group-child-count{margin-left:2px}.ag-theme-balham .ag-rtl .ag-group-child-count{margin-right:2px}.ag-theme-balham .ag-group-title-bar{background-color:#e2e9eb;background-color:var(--ag-subheader-background-color,#e2e9eb);padding:4px}.ag-theme-balham .ag-group-toolbar{padding:4px}.ag-theme-balham .ag-disabled-group-container,.ag-theme-balham .ag-disabled-group-title-bar{opacity:.5}.ag-theme-balham .group-item{margin:2px 0}.ag-theme-balham .ag-label{white-space:nowrap}.ag-theme-balham .ag-ltr .ag-label{margin-right:4px}.ag-theme-balham .ag-rtl .ag-label{margin-left:4px}.ag-theme-balham .ag-label-align-top .ag-label{margin-bottom:2px}.ag-theme-balham .ag-ltr .ag-angle-select-field,.ag-theme-balham .ag-ltr .ag-slider-field{margin-right:8px}.ag-theme-balham .ag-rtl .ag-angle-select-field,.ag-theme-balham .ag-rtl .ag-slider-field{margin-left:8px}.ag-theme-balham .ag-angle-select-parent-circle{background-color:#fff;background-color:var(--ag-background-color,#fff);border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-radius:12px;height:24px;width:24px}.ag-theme-balham .ag-angle-select-child-circle{background-color:rgba(0,0,0,.54);background-color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));border-radius:3px;height:6px;left:12px;margin-left:-3px;margin-top:-4px;top:4px;width:6px}.ag-theme-balham .ag-picker-field-wrapper{border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-radius:5px}.ag-theme-balham .ag-picker-field-wrapper:focus{-webkit-box-shadow:0 0 2px 1px #719ece;box-shadow:0 0 2px 1px #719ece}.ag-theme-balham .ag-picker-field-button{background-color:#fff;background-color:var(--ag-background-color,#fff);color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54))}.ag-theme-balham .ag-dialog.ag-color-dialog{border-radius:5px}.ag-theme-balham .ag-color-picker .ag-picker-field-display{height:16px}.ag-theme-balham .ag-color-panel{padding:4px}.ag-theme-balham .ag-spectrum-color{background-color:red;border-radius:2px}.ag-theme-balham .ag-spectrum-tools{padding:10px}.ag-theme-balham .ag-spectrum-sat{background-image:-webkit-gradient(linear,left top,right top,from(#fff),to(hsla(20,42%,65%,0)));background-image:linear-gradient(90deg,#fff,hsla(20,42%,65%,0))}.ag-theme-balham .ag-spectrum-val{background-image:-webkit-gradient(linear,left bottom,left top,from(#000),to(hsla(20,42%,65%,0)));background-image:linear-gradient(0deg,#000,hsla(20,42%,65%,0))}.ag-theme-balham .ag-spectrum-dragger{background:#000;border:1px solid #fff;border-radius:12px;-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.24);box-shadow:0 0 2px 0 rgba(0,0,0,.24);height:12px;width:12px}.ag-theme-balham .ag-spectrum-alpha-background,.ag-theme-balham .ag-spectrum-hue-background{border-radius:2px}.ag-theme-balham .ag-spectrum-tool{border-radius:2px;height:11px;margin-bottom:10px}.ag-theme-balham .ag-spectrum-slider{background-color:#f8f8f8;border-radius:13px;-webkit-box-shadow:0 1px 4px 0 rgba(0,0,0,.37);box-shadow:0 1px 4px 0 rgba(0,0,0,.37);height:13px;margin-top:-12px;width:13px}.ag-theme-balham .ag-recent-color{margin:0 3px}.ag-theme-balham .ag-recent-color:first-child{margin-left:0}.ag-theme-balham .ag-recent-color:last-child{margin-right:0}.ag-theme-balham.ag-dnd-ghost{background:#fff;background:var(--ag-background-color,#fff);border:1px solid #bdc3c7;border-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7));border-radius:2px;-webkit-box-shadow:none;box-shadow:none;color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));height:32px!important;line-height:32px;margin:0;overflow:hidden;padding:0 8px;text-overflow:ellipsis;-webkit-transform:translateY(8px);transform:translateY(8px)}.ag-theme-balham .ag-dnd-ghost-icon{color:#000;color:var(--ag-foreground-color,#000);margin-right:4px}.ag-theme-balham .ag-popup-child:not(.ag-tooltip-custom){-webkit-box-shadow:5px 5px 10px rgba(0,0,0,.3);box-shadow:5px 5px 10px rgba(0,0,0,.3)}.ag-dragging-fill-handle .ag-theme-balham .ag-dialog,.ag-dragging-range-handle .ag-theme-balham .ag-dialog{opacity:.7;pointer-events:none}.ag-theme-balham .ag-dialog{border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-radius:2px}.ag-theme-balham .ag-panel{background-color:#fff;background-color:var(--ag-background-color,#fff)}.ag-theme-balham .ag-panel-title-bar{background-color:#f5f7f7;background-color:var(--ag-header-background-color,#f5f7f7);border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-border-color,#bdc3c7);color:rgba(0,0,0,.54);color:var(--ag-header-foreground-color,var(--ag-secondary-foreground-color,rgba(0,0,0,.54)));height:32px;padding:4px 12px}.ag-theme-balham .ag-ltr .ag-panel-title-bar-button{margin-left:4px}.ag-theme-balham .ag-rtl .ag-panel-title-bar-button{margin-right:4px}.ag-theme-balham .ag-tooltip{background-color:#f5f7f7;background-color:var(--ag-header-background-color,#f5f7f7);border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-radius:2px;color:#000;color:var(--ag-foreground-color,#000);padding:4px;-webkit-transition:opacity 1s;transition:opacity 1s;white-space:normal}.ag-theme-balham .ag-tooltip.ag-tooltip-hiding{opacity:0}.ag-theme-balham .ag-tooltip-custom{-webkit-transition:opacity 1s;transition:opacity 1s}.ag-theme-balham .ag-tooltip-custom.ag-tooltip-hiding{opacity:0}.ag-theme-balham .ag-ltr .ag-column-select-indent-1{padding-left:20px}.ag-theme-balham .ag-rtl .ag-column-select-indent-1{padding-right:20px}.ag-theme-balham .ag-ltr .ag-column-select-indent-2{padding-left:40px}.ag-theme-balham .ag-rtl .ag-column-select-indent-2{padding-right:40px}.ag-theme-balham .ag-ltr .ag-column-select-indent-3{padding-left:60px}.ag-theme-balham .ag-rtl .ag-column-select-indent-3{padding-right:60px}.ag-theme-balham .ag-ltr .ag-column-select-indent-4{padding-left:80px}.ag-theme-balham .ag-rtl .ag-column-select-indent-4{padding-right:80px}.ag-theme-balham .ag-ltr .ag-column-select-indent-5{padding-left:100px}.ag-theme-balham .ag-rtl .ag-column-select-indent-5{padding-right:100px}.ag-theme-balham .ag-ltr .ag-column-select-indent-6{padding-left:120px}.ag-theme-balham .ag-rtl .ag-column-select-indent-6{padding-right:120px}.ag-theme-balham .ag-ltr .ag-column-select-indent-7{padding-left:140px}.ag-theme-balham .ag-rtl .ag-column-select-indent-7{padding-right:140px}.ag-theme-balham .ag-ltr .ag-column-select-indent-8{padding-left:160px}.ag-theme-balham .ag-rtl .ag-column-select-indent-8{padding-right:160px}.ag-theme-balham .ag-ltr .ag-column-select-indent-9{padding-left:180px}.ag-theme-balham .ag-rtl .ag-column-select-indent-9{padding-right:180px}.ag-theme-balham .ag-column-select-header-icon{cursor:pointer}.ag-theme-balham .ag-keyboard-focus .ag-column-select-header-icon:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-column-select-header-icon:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.ag-theme-balham .ag-ltr .ag-column-group-icons:not(:last-child),.ag-theme-balham .ag-ltr .ag-column-select-checkbox:not(:last-child),.ag-theme-balham .ag-ltr .ag-column-select-column-drag-handle:not(:last-child),.ag-theme-balham .ag-ltr .ag-column-select-column-group-drag-handle:not(:last-child),.ag-theme-balham .ag-ltr .ag-column-select-column-label:not(:last-child),.ag-theme-balham .ag-ltr .ag-column-select-header-checkbox:not(:last-child),.ag-theme-balham .ag-ltr .ag-column-select-header-filter-wrapper:not(:last-child),.ag-theme-balham .ag-ltr .ag-column-select-header-icon:not(:last-child){margin-right:8px}.ag-theme-balham .ag-rtl .ag-column-group-icons:not(:last-child),.ag-theme-balham .ag-rtl .ag-column-select-checkbox:not(:last-child),.ag-theme-balham .ag-rtl .ag-column-select-column-drag-handle:not(:last-child),.ag-theme-balham .ag-rtl .ag-column-select-column-group-drag-handle:not(:last-child),.ag-theme-balham .ag-rtl .ag-column-select-column-label:not(:last-child),.ag-theme-balham .ag-rtl .ag-column-select-header-checkbox:not(:last-child),.ag-theme-balham .ag-rtl .ag-column-select-header-filter-wrapper:not(:last-child),.ag-theme-balham .ag-rtl .ag-column-select-header-icon:not(:last-child){margin-left:8px}.ag-theme-balham .ag-keyboard-focus .ag-column-select-virtual-list-item:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-column-select-virtual-list-item:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 2px);left:1px;pointer-events:none;position:absolute;top:1px;width:calc(100% - 2px)}.ag-theme-balham .ag-column-select-column-group:not(:last-child),.ag-theme-balham .ag-column-select-column:not(:last-child){margin-bottom:4px}.ag-theme-balham .ag-column-select-column-group-readonly,.ag-theme-balham .ag-column-select-column-readonly{color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38));pointer-events:none}.ag-theme-balham .ag-ltr .ag-column-select-add-group-indent{margin-left:24px}.ag-theme-balham .ag-rtl .ag-column-select-add-group-indent{margin-right:24px}.ag-theme-balham .ag-column-select-virtual-list-viewport{padding:3px 0}.ag-theme-balham .ag-column-select-virtual-list-item{padding:0 6px}.ag-theme-balham .ag-rtl{text-align:right}.ag-theme-balham .ag-root-wrapper{border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-1{padding-left:40px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-1{padding-right:40px}.ag-theme-balham .ag-ltr .ag-row-group-indent-1{padding-left:28px}.ag-theme-balham .ag-rtl .ag-row-group-indent-1{padding-right:28px}.ag-theme-balham .ag-ltr .ag-row-level-1 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-1 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-2{padding-left:68px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-2{padding-right:68px}.ag-theme-balham .ag-ltr .ag-row-group-indent-2{padding-left:56px}.ag-theme-balham .ag-rtl .ag-row-group-indent-2{padding-right:56px}.ag-theme-balham .ag-ltr .ag-row-level-2 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-2 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-3{padding-left:96px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-3{padding-right:96px}.ag-theme-balham .ag-ltr .ag-row-group-indent-3{padding-left:84px}.ag-theme-balham .ag-rtl .ag-row-group-indent-3{padding-right:84px}.ag-theme-balham .ag-ltr .ag-row-level-3 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-3 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-4{padding-left:124px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-4{padding-right:124px}.ag-theme-balham .ag-ltr .ag-row-group-indent-4{padding-left:112px}.ag-theme-balham .ag-rtl .ag-row-group-indent-4{padding-right:112px}.ag-theme-balham .ag-ltr .ag-row-level-4 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-4 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-5{padding-left:152px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-5{padding-right:152px}.ag-theme-balham .ag-ltr .ag-row-group-indent-5{padding-left:140px}.ag-theme-balham .ag-rtl .ag-row-group-indent-5{padding-right:140px}.ag-theme-balham .ag-ltr .ag-row-level-5 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-5 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-6{padding-left:180px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-6{padding-right:180px}.ag-theme-balham .ag-ltr .ag-row-group-indent-6{padding-left:168px}.ag-theme-balham .ag-rtl .ag-row-group-indent-6{padding-right:168px}.ag-theme-balham .ag-ltr .ag-row-level-6 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-6 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-7{padding-left:208px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-7{padding-right:208px}.ag-theme-balham .ag-ltr .ag-row-group-indent-7{padding-left:196px}.ag-theme-balham .ag-rtl .ag-row-group-indent-7{padding-right:196px}.ag-theme-balham .ag-ltr .ag-row-level-7 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-7 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-8{padding-left:236px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-8{padding-right:236px}.ag-theme-balham .ag-ltr .ag-row-group-indent-8{padding-left:224px}.ag-theme-balham .ag-rtl .ag-row-group-indent-8{padding-right:224px}.ag-theme-balham .ag-ltr .ag-row-level-8 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-8 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-9{padding-left:264px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-9{padding-right:264px}.ag-theme-balham .ag-ltr .ag-row-group-indent-9{padding-left:252px}.ag-theme-balham .ag-rtl .ag-row-group-indent-9{padding-right:252px}.ag-theme-balham .ag-ltr .ag-row-level-9 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-9 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-10{padding-left:292px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-10{padding-right:292px}.ag-theme-balham .ag-ltr .ag-row-group-indent-10{padding-left:280px}.ag-theme-balham .ag-rtl .ag-row-group-indent-10{padding-right:280px}.ag-theme-balham .ag-ltr .ag-row-level-10 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-10 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-11{padding-left:320px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-11{padding-right:320px}.ag-theme-balham .ag-ltr .ag-row-group-indent-11{padding-left:308px}.ag-theme-balham .ag-rtl .ag-row-group-indent-11{padding-right:308px}.ag-theme-balham .ag-ltr .ag-row-level-11 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-11 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-12{padding-left:348px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-12{padding-right:348px}.ag-theme-balham .ag-ltr .ag-row-group-indent-12{padding-left:336px}.ag-theme-balham .ag-rtl .ag-row-group-indent-12{padding-right:336px}.ag-theme-balham .ag-ltr .ag-row-level-12 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-12 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-13{padding-left:376px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-13{padding-right:376px}.ag-theme-balham .ag-ltr .ag-row-group-indent-13{padding-left:364px}.ag-theme-balham .ag-rtl .ag-row-group-indent-13{padding-right:364px}.ag-theme-balham .ag-ltr .ag-row-level-13 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-13 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-14{padding-left:404px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-14{padding-right:404px}.ag-theme-balham .ag-ltr .ag-row-group-indent-14{padding-left:392px}.ag-theme-balham .ag-rtl .ag-row-group-indent-14{padding-right:392px}.ag-theme-balham .ag-ltr .ag-row-level-14 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-14 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-15{padding-left:432px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-15{padding-right:432px}.ag-theme-balham .ag-ltr .ag-row-group-indent-15{padding-left:420px}.ag-theme-balham .ag-rtl .ag-row-group-indent-15{padding-right:420px}.ag-theme-balham .ag-ltr .ag-row-level-15 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-15 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-16{padding-left:460px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-16{padding-right:460px}.ag-theme-balham .ag-ltr .ag-row-group-indent-16{padding-left:448px}.ag-theme-balham .ag-rtl .ag-row-group-indent-16{padding-right:448px}.ag-theme-balham .ag-ltr .ag-row-level-16 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-16 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-17{padding-left:488px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-17{padding-right:488px}.ag-theme-balham .ag-ltr .ag-row-group-indent-17{padding-left:476px}.ag-theme-balham .ag-rtl .ag-row-group-indent-17{padding-right:476px}.ag-theme-balham .ag-ltr .ag-row-level-17 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-17 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-18{padding-left:516px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-18{padding-right:516px}.ag-theme-balham .ag-ltr .ag-row-group-indent-18{padding-left:504px}.ag-theme-balham .ag-rtl .ag-row-group-indent-18{padding-right:504px}.ag-theme-balham .ag-ltr .ag-row-level-18 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-18 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-19{padding-left:544px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-19{padding-right:544px}.ag-theme-balham .ag-ltr .ag-row-group-indent-19{padding-left:532px}.ag-theme-balham .ag-rtl .ag-row-group-indent-19{padding-right:532px}.ag-theme-balham .ag-ltr .ag-row-level-19 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-19 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-20{padding-left:572px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-20{padding-right:572px}.ag-theme-balham .ag-ltr .ag-row-group-indent-20{padding-left:560px}.ag-theme-balham .ag-rtl .ag-row-group-indent-20{padding-right:560px}.ag-theme-balham .ag-ltr .ag-row-level-20 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-20 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-21{padding-left:600px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-21{padding-right:600px}.ag-theme-balham .ag-ltr .ag-row-group-indent-21{padding-left:588px}.ag-theme-balham .ag-rtl .ag-row-group-indent-21{padding-right:588px}.ag-theme-balham .ag-ltr .ag-row-level-21 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-21 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-22{padding-left:628px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-22{padding-right:628px}.ag-theme-balham .ag-ltr .ag-row-group-indent-22{padding-left:616px}.ag-theme-balham .ag-rtl .ag-row-group-indent-22{padding-right:616px}.ag-theme-balham .ag-ltr .ag-row-level-22 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-22 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-23{padding-left:656px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-23{padding-right:656px}.ag-theme-balham .ag-ltr .ag-row-group-indent-23{padding-left:644px}.ag-theme-balham .ag-rtl .ag-row-group-indent-23{padding-right:644px}.ag-theme-balham .ag-ltr .ag-row-level-23 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-23 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-24{padding-left:684px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-24{padding-right:684px}.ag-theme-balham .ag-ltr .ag-row-group-indent-24{padding-left:672px}.ag-theme-balham .ag-rtl .ag-row-group-indent-24{padding-right:672px}.ag-theme-balham .ag-ltr .ag-row-level-24 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-24 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-25{padding-left:712px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-25{padding-right:712px}.ag-theme-balham .ag-ltr .ag-row-group-indent-25{padding-left:700px}.ag-theme-balham .ag-rtl .ag-row-group-indent-25{padding-right:700px}.ag-theme-balham .ag-ltr .ag-row-level-25 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-25 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-26{padding-left:740px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-26{padding-right:740px}.ag-theme-balham .ag-ltr .ag-row-group-indent-26{padding-left:728px}.ag-theme-balham .ag-rtl .ag-row-group-indent-26{padding-right:728px}.ag-theme-balham .ag-ltr .ag-row-level-26 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-26 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-27{padding-left:768px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-27{padding-right:768px}.ag-theme-balham .ag-ltr .ag-row-group-indent-27{padding-left:756px}.ag-theme-balham .ag-rtl .ag-row-group-indent-27{padding-right:756px}.ag-theme-balham .ag-ltr .ag-row-level-27 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-27 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-28{padding-left:796px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-28{padding-right:796px}.ag-theme-balham .ag-ltr .ag-row-group-indent-28{padding-left:784px}.ag-theme-balham .ag-rtl .ag-row-group-indent-28{padding-right:784px}.ag-theme-balham .ag-ltr .ag-row-level-28 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-28 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-29{padding-left:824px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-29{padding-right:824px}.ag-theme-balham .ag-ltr .ag-row-group-indent-29{padding-left:812px}.ag-theme-balham .ag-rtl .ag-row-group-indent-29{padding-right:812px}.ag-theme-balham .ag-ltr .ag-row-level-29 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-29 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-30{padding-left:852px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-30{padding-right:852px}.ag-theme-balham .ag-ltr .ag-row-group-indent-30{padding-left:840px}.ag-theme-balham .ag-rtl .ag-row-group-indent-30{padding-right:840px}.ag-theme-balham .ag-ltr .ag-row-level-30 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-30 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-31{padding-left:880px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-31{padding-right:880px}.ag-theme-balham .ag-ltr .ag-row-group-indent-31{padding-left:868px}.ag-theme-balham .ag-rtl .ag-row-group-indent-31{padding-right:868px}.ag-theme-balham .ag-ltr .ag-row-level-31 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-31 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-32{padding-left:908px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-32{padding-right:908px}.ag-theme-balham .ag-ltr .ag-row-group-indent-32{padding-left:896px}.ag-theme-balham .ag-rtl .ag-row-group-indent-32{padding-right:896px}.ag-theme-balham .ag-ltr .ag-row-level-32 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-32 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-33{padding-left:936px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-33{padding-right:936px}.ag-theme-balham .ag-ltr .ag-row-group-indent-33{padding-left:924px}.ag-theme-balham .ag-rtl .ag-row-group-indent-33{padding-right:924px}.ag-theme-balham .ag-ltr .ag-row-level-33 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-33 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-34{padding-left:964px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-34{padding-right:964px}.ag-theme-balham .ag-ltr .ag-row-group-indent-34{padding-left:952px}.ag-theme-balham .ag-rtl .ag-row-group-indent-34{padding-right:952px}.ag-theme-balham .ag-ltr .ag-row-level-34 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-34 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-35{padding-left:992px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-35{padding-right:992px}.ag-theme-balham .ag-ltr .ag-row-group-indent-35{padding-left:980px}.ag-theme-balham .ag-rtl .ag-row-group-indent-35{padding-right:980px}.ag-theme-balham .ag-ltr .ag-row-level-35 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-35 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-36{padding-left:1020px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-36{padding-right:1020px}.ag-theme-balham .ag-ltr .ag-row-group-indent-36{padding-left:1008px}.ag-theme-balham .ag-rtl .ag-row-group-indent-36{padding-right:1008px}.ag-theme-balham .ag-ltr .ag-row-level-36 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-36 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-37{padding-left:1048px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-37{padding-right:1048px}.ag-theme-balham .ag-ltr .ag-row-group-indent-37{padding-left:1036px}.ag-theme-balham .ag-rtl .ag-row-group-indent-37{padding-right:1036px}.ag-theme-balham .ag-ltr .ag-row-level-37 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-37 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-38{padding-left:1076px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-38{padding-right:1076px}.ag-theme-balham .ag-ltr .ag-row-group-indent-38{padding-left:1064px}.ag-theme-balham .ag-rtl .ag-row-group-indent-38{padding-right:1064px}.ag-theme-balham .ag-ltr .ag-row-level-38 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-38 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-39{padding-left:1104px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-39{padding-right:1104px}.ag-theme-balham .ag-ltr .ag-row-group-indent-39{padding-left:1092px}.ag-theme-balham .ag-rtl .ag-row-group-indent-39{padding-right:1092px}.ag-theme-balham .ag-ltr .ag-row-level-39 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-39 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-40{padding-left:1132px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-40{padding-right:1132px}.ag-theme-balham .ag-ltr .ag-row-group-indent-40{padding-left:1120px}.ag-theme-balham .ag-rtl .ag-row-group-indent-40{padding-right:1120px}.ag-theme-balham .ag-ltr .ag-row-level-40 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-40 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-41{padding-left:1160px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-41{padding-right:1160px}.ag-theme-balham .ag-ltr .ag-row-group-indent-41{padding-left:1148px}.ag-theme-balham .ag-rtl .ag-row-group-indent-41{padding-right:1148px}.ag-theme-balham .ag-ltr .ag-row-level-41 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-41 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-42{padding-left:1188px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-42{padding-right:1188px}.ag-theme-balham .ag-ltr .ag-row-group-indent-42{padding-left:1176px}.ag-theme-balham .ag-rtl .ag-row-group-indent-42{padding-right:1176px}.ag-theme-balham .ag-ltr .ag-row-level-42 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-42 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-43{padding-left:1216px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-43{padding-right:1216px}.ag-theme-balham .ag-ltr .ag-row-group-indent-43{padding-left:1204px}.ag-theme-balham .ag-rtl .ag-row-group-indent-43{padding-right:1204px}.ag-theme-balham .ag-ltr .ag-row-level-43 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-43 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-44{padding-left:1244px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-44{padding-right:1244px}.ag-theme-balham .ag-ltr .ag-row-group-indent-44{padding-left:1232px}.ag-theme-balham .ag-rtl .ag-row-group-indent-44{padding-right:1232px}.ag-theme-balham .ag-ltr .ag-row-level-44 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-44 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-45{padding-left:1272px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-45{padding-right:1272px}.ag-theme-balham .ag-ltr .ag-row-group-indent-45{padding-left:1260px}.ag-theme-balham .ag-rtl .ag-row-group-indent-45{padding-right:1260px}.ag-theme-balham .ag-ltr .ag-row-level-45 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-45 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-46{padding-left:1300px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-46{padding-right:1300px}.ag-theme-balham .ag-ltr .ag-row-group-indent-46{padding-left:1288px}.ag-theme-balham .ag-rtl .ag-row-group-indent-46{padding-right:1288px}.ag-theme-balham .ag-ltr .ag-row-level-46 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-46 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-47{padding-left:1328px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-47{padding-right:1328px}.ag-theme-balham .ag-ltr .ag-row-group-indent-47{padding-left:1316px}.ag-theme-balham .ag-rtl .ag-row-group-indent-47{padding-right:1316px}.ag-theme-balham .ag-ltr .ag-row-level-47 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-47 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-48{padding-left:1356px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-48{padding-right:1356px}.ag-theme-balham .ag-ltr .ag-row-group-indent-48{padding-left:1344px}.ag-theme-balham .ag-rtl .ag-row-group-indent-48{padding-right:1344px}.ag-theme-balham .ag-ltr .ag-row-level-48 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-48 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-49{padding-left:1384px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-49{padding-right:1384px}.ag-theme-balham .ag-ltr .ag-row-group-indent-49{padding-left:1372px}.ag-theme-balham .ag-rtl .ag-row-group-indent-49{padding-right:1372px}.ag-theme-balham .ag-ltr .ag-row-level-49 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-49 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-50{padding-left:1412px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-50{padding-right:1412px}.ag-theme-balham .ag-ltr .ag-row-group-indent-50{padding-left:1400px}.ag-theme-balham .ag-rtl .ag-row-group-indent-50{padding-right:1400px}.ag-theme-balham .ag-ltr .ag-row-level-50 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-50 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-51{padding-left:1440px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-51{padding-right:1440px}.ag-theme-balham .ag-ltr .ag-row-group-indent-51{padding-left:1428px}.ag-theme-balham .ag-rtl .ag-row-group-indent-51{padding-right:1428px}.ag-theme-balham .ag-ltr .ag-row-level-51 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-51 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-52{padding-left:1468px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-52{padding-right:1468px}.ag-theme-balham .ag-ltr .ag-row-group-indent-52{padding-left:1456px}.ag-theme-balham .ag-rtl .ag-row-group-indent-52{padding-right:1456px}.ag-theme-balham .ag-ltr .ag-row-level-52 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-52 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-53{padding-left:1496px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-53{padding-right:1496px}.ag-theme-balham .ag-ltr .ag-row-group-indent-53{padding-left:1484px}.ag-theme-balham .ag-rtl .ag-row-group-indent-53{padding-right:1484px}.ag-theme-balham .ag-ltr .ag-row-level-53 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-53 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-54{padding-left:1524px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-54{padding-right:1524px}.ag-theme-balham .ag-ltr .ag-row-group-indent-54{padding-left:1512px}.ag-theme-balham .ag-rtl .ag-row-group-indent-54{padding-right:1512px}.ag-theme-balham .ag-ltr .ag-row-level-54 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-54 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-55{padding-left:1552px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-55{padding-right:1552px}.ag-theme-balham .ag-ltr .ag-row-group-indent-55{padding-left:1540px}.ag-theme-balham .ag-rtl .ag-row-group-indent-55{padding-right:1540px}.ag-theme-balham .ag-ltr .ag-row-level-55 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-55 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-56{padding-left:1580px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-56{padding-right:1580px}.ag-theme-balham .ag-ltr .ag-row-group-indent-56{padding-left:1568px}.ag-theme-balham .ag-rtl .ag-row-group-indent-56{padding-right:1568px}.ag-theme-balham .ag-ltr .ag-row-level-56 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-56 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-57{padding-left:1608px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-57{padding-right:1608px}.ag-theme-balham .ag-ltr .ag-row-group-indent-57{padding-left:1596px}.ag-theme-balham .ag-rtl .ag-row-group-indent-57{padding-right:1596px}.ag-theme-balham .ag-ltr .ag-row-level-57 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-57 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-58{padding-left:1636px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-58{padding-right:1636px}.ag-theme-balham .ag-ltr .ag-row-group-indent-58{padding-left:1624px}.ag-theme-balham .ag-rtl .ag-row-group-indent-58{padding-right:1624px}.ag-theme-balham .ag-ltr .ag-row-level-58 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-58 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-59{padding-left:1664px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-59{padding-right:1664px}.ag-theme-balham .ag-ltr .ag-row-group-indent-59{padding-left:1652px}.ag-theme-balham .ag-rtl .ag-row-group-indent-59{padding-right:1652px}.ag-theme-balham .ag-ltr .ag-row-level-59 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-59 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-60{padding-left:1692px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-60{padding-right:1692px}.ag-theme-balham .ag-ltr .ag-row-group-indent-60{padding-left:1680px}.ag-theme-balham .ag-rtl .ag-row-group-indent-60{padding-right:1680px}.ag-theme-balham .ag-ltr .ag-row-level-60 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-60 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-61{padding-left:1720px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-61{padding-right:1720px}.ag-theme-balham .ag-ltr .ag-row-group-indent-61{padding-left:1708px}.ag-theme-balham .ag-rtl .ag-row-group-indent-61{padding-right:1708px}.ag-theme-balham .ag-ltr .ag-row-level-61 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-61 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-62{padding-left:1748px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-62{padding-right:1748px}.ag-theme-balham .ag-ltr .ag-row-group-indent-62{padding-left:1736px}.ag-theme-balham .ag-rtl .ag-row-group-indent-62{padding-right:1736px}.ag-theme-balham .ag-ltr .ag-row-level-62 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-62 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-63{padding-left:1776px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-63{padding-right:1776px}.ag-theme-balham .ag-ltr .ag-row-group-indent-63{padding-left:1764px}.ag-theme-balham .ag-rtl .ag-row-group-indent-63{padding-right:1764px}.ag-theme-balham .ag-ltr .ag-row-level-63 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-63 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-64{padding-left:1804px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-64{padding-right:1804px}.ag-theme-balham .ag-ltr .ag-row-group-indent-64{padding-left:1792px}.ag-theme-balham .ag-rtl .ag-row-group-indent-64{padding-right:1792px}.ag-theme-balham .ag-ltr .ag-row-level-64 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-64 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-65{padding-left:1832px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-65{padding-right:1832px}.ag-theme-balham .ag-ltr .ag-row-group-indent-65{padding-left:1820px}.ag-theme-balham .ag-rtl .ag-row-group-indent-65{padding-right:1820px}.ag-theme-balham .ag-ltr .ag-row-level-65 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-65 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-66{padding-left:1860px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-66{padding-right:1860px}.ag-theme-balham .ag-ltr .ag-row-group-indent-66{padding-left:1848px}.ag-theme-balham .ag-rtl .ag-row-group-indent-66{padding-right:1848px}.ag-theme-balham .ag-ltr .ag-row-level-66 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-66 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-67{padding-left:1888px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-67{padding-right:1888px}.ag-theme-balham .ag-ltr .ag-row-group-indent-67{padding-left:1876px}.ag-theme-balham .ag-rtl .ag-row-group-indent-67{padding-right:1876px}.ag-theme-balham .ag-ltr .ag-row-level-67 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-67 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-68{padding-left:1916px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-68{padding-right:1916px}.ag-theme-balham .ag-ltr .ag-row-group-indent-68{padding-left:1904px}.ag-theme-balham .ag-rtl .ag-row-group-indent-68{padding-right:1904px}.ag-theme-balham .ag-ltr .ag-row-level-68 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-68 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-69{padding-left:1944px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-69{padding-right:1944px}.ag-theme-balham .ag-ltr .ag-row-group-indent-69{padding-left:1932px}.ag-theme-balham .ag-rtl .ag-row-group-indent-69{padding-right:1932px}.ag-theme-balham .ag-ltr .ag-row-level-69 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-69 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-70{padding-left:1972px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-70{padding-right:1972px}.ag-theme-balham .ag-ltr .ag-row-group-indent-70{padding-left:1960px}.ag-theme-balham .ag-rtl .ag-row-group-indent-70{padding-right:1960px}.ag-theme-balham .ag-ltr .ag-row-level-70 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-70 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-71{padding-left:2000px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-71{padding-right:2000px}.ag-theme-balham .ag-ltr .ag-row-group-indent-71{padding-left:1988px}.ag-theme-balham .ag-rtl .ag-row-group-indent-71{padding-right:1988px}.ag-theme-balham .ag-ltr .ag-row-level-71 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-71 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-72{padding-left:2028px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-72{padding-right:2028px}.ag-theme-balham .ag-ltr .ag-row-group-indent-72{padding-left:2016px}.ag-theme-balham .ag-rtl .ag-row-group-indent-72{padding-right:2016px}.ag-theme-balham .ag-ltr .ag-row-level-72 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-72 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-73{padding-left:2056px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-73{padding-right:2056px}.ag-theme-balham .ag-ltr .ag-row-group-indent-73{padding-left:2044px}.ag-theme-balham .ag-rtl .ag-row-group-indent-73{padding-right:2044px}.ag-theme-balham .ag-ltr .ag-row-level-73 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-73 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-74{padding-left:2084px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-74{padding-right:2084px}.ag-theme-balham .ag-ltr .ag-row-group-indent-74{padding-left:2072px}.ag-theme-balham .ag-rtl .ag-row-group-indent-74{padding-right:2072px}.ag-theme-balham .ag-ltr .ag-row-level-74 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-74 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-75{padding-left:2112px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-75{padding-right:2112px}.ag-theme-balham .ag-ltr .ag-row-group-indent-75{padding-left:2100px}.ag-theme-balham .ag-rtl .ag-row-group-indent-75{padding-right:2100px}.ag-theme-balham .ag-ltr .ag-row-level-75 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-75 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-76{padding-left:2140px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-76{padding-right:2140px}.ag-theme-balham .ag-ltr .ag-row-group-indent-76{padding-left:2128px}.ag-theme-balham .ag-rtl .ag-row-group-indent-76{padding-right:2128px}.ag-theme-balham .ag-ltr .ag-row-level-76 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-76 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-77{padding-left:2168px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-77{padding-right:2168px}.ag-theme-balham .ag-ltr .ag-row-group-indent-77{padding-left:2156px}.ag-theme-balham .ag-rtl .ag-row-group-indent-77{padding-right:2156px}.ag-theme-balham .ag-ltr .ag-row-level-77 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-77 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-78{padding-left:2196px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-78{padding-right:2196px}.ag-theme-balham .ag-ltr .ag-row-group-indent-78{padding-left:2184px}.ag-theme-balham .ag-rtl .ag-row-group-indent-78{padding-right:2184px}.ag-theme-balham .ag-ltr .ag-row-level-78 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-78 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-79{padding-left:2224px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-79{padding-right:2224px}.ag-theme-balham .ag-ltr .ag-row-group-indent-79{padding-left:2212px}.ag-theme-balham .ag-rtl .ag-row-group-indent-79{padding-right:2212px}.ag-theme-balham .ag-ltr .ag-row-level-79 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-79 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-80{padding-left:2252px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-80{padding-right:2252px}.ag-theme-balham .ag-ltr .ag-row-group-indent-80{padding-left:2240px}.ag-theme-balham .ag-rtl .ag-row-group-indent-80{padding-right:2240px}.ag-theme-balham .ag-ltr .ag-row-level-80 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-80 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-81{padding-left:2280px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-81{padding-right:2280px}.ag-theme-balham .ag-ltr .ag-row-group-indent-81{padding-left:2268px}.ag-theme-balham .ag-rtl .ag-row-group-indent-81{padding-right:2268px}.ag-theme-balham .ag-ltr .ag-row-level-81 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-81 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-82{padding-left:2308px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-82{padding-right:2308px}.ag-theme-balham .ag-ltr .ag-row-group-indent-82{padding-left:2296px}.ag-theme-balham .ag-rtl .ag-row-group-indent-82{padding-right:2296px}.ag-theme-balham .ag-ltr .ag-row-level-82 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-82 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-83{padding-left:2336px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-83{padding-right:2336px}.ag-theme-balham .ag-ltr .ag-row-group-indent-83{padding-left:2324px}.ag-theme-balham .ag-rtl .ag-row-group-indent-83{padding-right:2324px}.ag-theme-balham .ag-ltr .ag-row-level-83 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-83 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-84{padding-left:2364px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-84{padding-right:2364px}.ag-theme-balham .ag-ltr .ag-row-group-indent-84{padding-left:2352px}.ag-theme-balham .ag-rtl .ag-row-group-indent-84{padding-right:2352px}.ag-theme-balham .ag-ltr .ag-row-level-84 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-84 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-85{padding-left:2392px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-85{padding-right:2392px}.ag-theme-balham .ag-ltr .ag-row-group-indent-85{padding-left:2380px}.ag-theme-balham .ag-rtl .ag-row-group-indent-85{padding-right:2380px}.ag-theme-balham .ag-ltr .ag-row-level-85 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-85 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-86{padding-left:2420px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-86{padding-right:2420px}.ag-theme-balham .ag-ltr .ag-row-group-indent-86{padding-left:2408px}.ag-theme-balham .ag-rtl .ag-row-group-indent-86{padding-right:2408px}.ag-theme-balham .ag-ltr .ag-row-level-86 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-86 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-87{padding-left:2448px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-87{padding-right:2448px}.ag-theme-balham .ag-ltr .ag-row-group-indent-87{padding-left:2436px}.ag-theme-balham .ag-rtl .ag-row-group-indent-87{padding-right:2436px}.ag-theme-balham .ag-ltr .ag-row-level-87 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-87 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-88{padding-left:2476px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-88{padding-right:2476px}.ag-theme-balham .ag-ltr .ag-row-group-indent-88{padding-left:2464px}.ag-theme-balham .ag-rtl .ag-row-group-indent-88{padding-right:2464px}.ag-theme-balham .ag-ltr .ag-row-level-88 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-88 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-89{padding-left:2504px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-89{padding-right:2504px}.ag-theme-balham .ag-ltr .ag-row-group-indent-89{padding-left:2492px}.ag-theme-balham .ag-rtl .ag-row-group-indent-89{padding-right:2492px}.ag-theme-balham .ag-ltr .ag-row-level-89 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-89 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-90{padding-left:2532px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-90{padding-right:2532px}.ag-theme-balham .ag-ltr .ag-row-group-indent-90{padding-left:2520px}.ag-theme-balham .ag-rtl .ag-row-group-indent-90{padding-right:2520px}.ag-theme-balham .ag-ltr .ag-row-level-90 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-90 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-91{padding-left:2560px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-91{padding-right:2560px}.ag-theme-balham .ag-ltr .ag-row-group-indent-91{padding-left:2548px}.ag-theme-balham .ag-rtl .ag-row-group-indent-91{padding-right:2548px}.ag-theme-balham .ag-ltr .ag-row-level-91 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-91 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-92{padding-left:2588px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-92{padding-right:2588px}.ag-theme-balham .ag-ltr .ag-row-group-indent-92{padding-left:2576px}.ag-theme-balham .ag-rtl .ag-row-group-indent-92{padding-right:2576px}.ag-theme-balham .ag-ltr .ag-row-level-92 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-92 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-93{padding-left:2616px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-93{padding-right:2616px}.ag-theme-balham .ag-ltr .ag-row-group-indent-93{padding-left:2604px}.ag-theme-balham .ag-rtl .ag-row-group-indent-93{padding-right:2604px}.ag-theme-balham .ag-ltr .ag-row-level-93 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-93 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-94{padding-left:2644px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-94{padding-right:2644px}.ag-theme-balham .ag-ltr .ag-row-group-indent-94{padding-left:2632px}.ag-theme-balham .ag-rtl .ag-row-group-indent-94{padding-right:2632px}.ag-theme-balham .ag-ltr .ag-row-level-94 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-94 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-95{padding-left:2672px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-95{padding-right:2672px}.ag-theme-balham .ag-ltr .ag-row-group-indent-95{padding-left:2660px}.ag-theme-balham .ag-rtl .ag-row-group-indent-95{padding-right:2660px}.ag-theme-balham .ag-ltr .ag-row-level-95 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-95 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-96{padding-left:2700px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-96{padding-right:2700px}.ag-theme-balham .ag-ltr .ag-row-group-indent-96{padding-left:2688px}.ag-theme-balham .ag-rtl .ag-row-group-indent-96{padding-right:2688px}.ag-theme-balham .ag-ltr .ag-row-level-96 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-96 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-97{padding-left:2728px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-97{padding-right:2728px}.ag-theme-balham .ag-ltr .ag-row-group-indent-97{padding-left:2716px}.ag-theme-balham .ag-rtl .ag-row-group-indent-97{padding-right:2716px}.ag-theme-balham .ag-ltr .ag-row-level-97 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-97 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-98{padding-left:2756px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-98{padding-right:2756px}.ag-theme-balham .ag-ltr .ag-row-group-indent-98{padding-left:2744px}.ag-theme-balham .ag-rtl .ag-row-group-indent-98{padding-right:2744px}.ag-theme-balham .ag-ltr .ag-row-level-98 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-98 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row>.ag-cell-wrapper.ag-row-group-indent-99{padding-left:2784px}.ag-theme-balham .ag-rtl .ag-row>.ag-cell-wrapper.ag-row-group-indent-99{padding-right:2784px}.ag-theme-balham .ag-ltr .ag-row-group-indent-99{padding-left:2772px}.ag-theme-balham .ag-rtl .ag-row-group-indent-99{padding-right:2772px}.ag-theme-balham .ag-ltr .ag-row-level-99 .ag-pivot-leaf-group{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-level-99 .ag-pivot-leaf-group{margin-right:28px}.ag-theme-balham .ag-ltr .ag-row-group-leaf-indent{margin-left:28px}.ag-theme-balham .ag-rtl .ag-row-group-leaf-indent{margin-right:28px}.ag-theme-balham .ag-value-change-delta{padding-right:2px}.ag-theme-balham .ag-value-change-delta-up{color:#43a047;color:var(--ag-value-change-delta-up-color,#43a047)}.ag-theme-balham .ag-value-change-delta-down{color:#e53935;color:var(--ag-value-change-delta-down-color,#e53935)}.ag-theme-balham .ag-value-change-value{background-color:transparent;border-radius:1px;padding-left:1px;padding-right:1px;-webkit-transition:background-color 1s;transition:background-color 1s}.ag-theme-balham .ag-value-change-value-highlight{background-color:rgba(22,160,133,.5);background-color:var(--ag-value-change-value-highlight-background-color,rgba(22,160,133,.5));-webkit-transition:background-color .1s;transition:background-color .1s}.ag-theme-balham .ag-cell-data-changed{background-color:rgba(22,160,133,.5)!important;background-color:var(--ag-value-change-value-highlight-background-color,rgba(22,160,133,.5))!important}.ag-theme-balham .ag-cell-data-changed-animation{background-color:transparent}.ag-theme-balham .ag-cell-highlight{background-color:#0091ea!important;background-color:var(--ag-range-selection-highlight-color,var(--ag-balham-active-color,#0091ea))!important}.ag-theme-balham .ag-row{background-color:#fff;background-color:var(--ag-background-color,#fff);border-bottom-style:solid;border-color:#d9dcde;border-color:var(--ag-row-border-color,#d9dcde);border-width:1px;color:#000;color:var(--ag-data-color,var(--ag-foreground-color,#000));height:28px}.ag-theme-balham .ag-row-highlight-above:after,.ag-theme-balham .ag-row-highlight-below:after{background-color:#0091ea;background-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea));content:"";height:1px;left:1px;position:absolute;width:calc(100% - 1px)}.ag-theme-balham .ag-row-highlight-above:after{top:-1px}.ag-theme-balham .ag-row-highlight-above.ag-row-first:after{top:0}.ag-theme-balham .ag-row-highlight-below:after{bottom:0}.ag-theme-balham .ag-row-odd{background-color:#fcfdfe;background-color:var(--ag-odd-row-background-color,#fcfdfe)}.ag-theme-balham .ag-body-horizontal-scroll:not(.ag-scrollbar-invisible) .ag-horizontal-left-spacer:not(.ag-scroller-corner){border-right:1px solid #bdc3c7;border-right-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-body-horizontal-scroll:not(.ag-scrollbar-invisible) .ag-horizontal-right-spacer:not(.ag-scroller-corner){border-left:1px solid #bdc3c7;border-left-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-row-hover{background-color:#ecf0f1;background-color:var(--ag-row-hover-color,#ecf0f1)}.ag-theme-balham .ag-column-hover{background-color:#ecf0f1;background-color:var(--ag-column-hover-color,#ecf0f1)}.ag-theme-balham .ag-ltr .ag-right-aligned-cell{text-align:right}.ag-theme-balham .ag-rtl .ag-right-aligned-cell{text-align:left}.ag-theme-balham .ag-ltr .ag-right-aligned-cell .ag-cell-value,.ag-theme-balham .ag-ltr .ag-right-aligned-cell .ag-group-value{margin-left:auto}.ag-theme-balham .ag-rtl .ag-right-aligned-cell .ag-cell-value,.ag-theme-balham .ag-rtl .ag-right-aligned-cell .ag-group-value{margin-right:auto}.ag-theme-balham .ag-cell,.ag-theme-balham .ag-full-width-row .ag-cell-wrapper.ag-row-group{-webkit-font-smoothing:subpixel-antialiased;border:1px solid transparent;line-height:min(26px,26px);line-height:min(var(--ag-line-height,26px),26px);padding-left:11px;padding-right:11px}.ag-theme-balham .ag-row>.ag-cell-wrapper{padding-left:11px;padding-right:11px}.ag-theme-balham .ag-row-dragging{cursor:move;opacity:.5}.ag-theme-balham .ag-cell-inline-editing{height:28px}.ag-theme-balham .ag-cell-inline-editing,.ag-theme-balham .ag-popup-editor{background:#fff;background:var(--ag-background-color,#fff);background-color:#f5f7f7;background-color:var(--ag-control-panel-background-color,#f5f7f7);border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-radius:2px;-webkit-box-shadow:none;box-shadow:none;padding:0}.ag-theme-balham .ag-large-text-input{height:auto;padding:12px}.ag-theme-balham .ag-details-row{background-color:#fff;background-color:var(--ag-background-color,#fff);padding:20px}.ag-theme-balham .ag-layout-auto-height .ag-center-cols-clipper,.ag-theme-balham .ag-layout-auto-height .ag-center-cols-container,.ag-theme-balham .ag-layout-print .ag-center-cols-clipper,.ag-theme-balham .ag-layout-print .ag-center-cols-container{min-height:50px}.ag-theme-balham .ag-overlay-loading-wrapper{background-color:hsla(0,0%,100%,.66);background-color:var(--ag-modal-overlay-background-color,hsla(0,0%,100%,.66))}.ag-theme-balham .ag-overlay-loading-center{background:#fff;background:var(--ag-background-color,#fff);border-radius:2px;-webkit-box-shadow:none;box-shadow:none;padding:4px}.ag-theme-balham .ag-overlay-no-rows-wrapper.ag-layout-auto-height{padding-top:30px}.ag-theme-balham .ag-loading{align-items:center;display:flex;height:100%;padding-left:12px}.ag-theme-balham .ag-loading-icon{padding-right:12px}.ag-theme-balham .ag-icon-loading{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:spin;animation-name:spin;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.ag-theme-balham .ag-floating-top{border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-floating-bottom{border-top:1px solid #bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-ltr .ag-cell{border-right:solid transparent}.ag-theme-balham .ag-rtl .ag-cell{border-left:solid transparent}.ag-theme-balham .ag-ltr .ag-cell{border-right-width:1px}.ag-theme-balham .ag-rtl .ag-cell{border-left-width:1px}.ag-theme-balham .ag-cell.ag-cell-first-right-pinned:not(.ag-cell-range-left):not(.ag-cell-range-single-cell){border-left:1px solid #bdc3c7;border-left-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-cell.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell){border-right:1px solid #bdc3c7;border-right-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-row-selected{background-color:#b7e4ff;background-color:var(--ag-selected-row-background-color,#b7e4ff)}.ag-theme-balham .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-single-cell:not(.ag-cell-inline-editing),.ag-theme-balham .ag-cell-range-selected:not(.ag-cell-focus){background-color:rgba(0,145,234,.2);background-color:var(--ag-range-selection-background-color,rgba(0,145,234,.2))}.ag-theme-balham .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-single-cell:not(.ag-cell-inline-editing).ag-cell-range-chart,.ag-theme-balham .ag-cell-range-selected:not(.ag-cell-focus).ag-cell-range-chart{background-color:rgba(0,88,255,.1)!important;background-color:var(--ag-range-selection-chart-background-color,rgba(0,88,255,.1))!important}.ag-theme-balham .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-single-cell:not(.ag-cell-inline-editing).ag-cell-range-chart.ag-cell-range-chart-category,.ag-theme-balham .ag-cell-range-selected:not(.ag-cell-focus).ag-cell-range-chart.ag-cell-range-chart-category{background-color:rgba(0,255,132,.1)!important;background-color:var(--ag-range-selection-chart-category-background-color,rgba(0,255,132,.1))!important}.ag-theme-balham .ag-cell-range-selected-1:not(.ag-cell-focus),.ag-theme-balham .ag-root:not(.ag-context-menu-open) .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-1:not(.ag-cell-inline-editing){background-color:rgba(0,145,234,.2);background-color:var(--ag-range-selection-background-color-1,var(--ag-range-selection-background-color,rgba(0,145,234,.2)))}.ag-theme-balham .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-2,.ag-theme-balham .ag-cell-range-selected-2:not(.ag-cell-focus){background-color:rgba(0,145,234,.36);background-color:var(--ag-range-selection-background-color-2,rgba(0,145,234,.36))}.ag-theme-balham .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-3,.ag-theme-balham .ag-cell-range-selected-3:not(.ag-cell-focus){background-color:rgba(0,145,234,.488);background-color:var(--ag-range-selection-background-color-3,rgba(0,145,234,.488))}.ag-theme-balham .ag-body-viewport:not(.ag-has-focus) .ag-cell-range-selected-4,.ag-theme-balham .ag-cell-range-selected-4:not(.ag-cell-focus){background-color:rgba(0,145,234,.59);background-color:var(--ag-range-selection-background-color-4,rgba(0,145,234,.59))}.ag-theme-balham .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-top{border-top-color:#0091ea;border-top-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-right{border-right-color:#0091ea;border-right-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-bottom{border-bottom-color:#0091ea;border-bottom-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-cell.ag-cell-range-selected:not(.ag-cell-range-single-cell).ag-cell-range-left{border-left-color:#0091ea;border-left-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-ltr .ag-cell-range-single-cell,.ag-theme-balham .ag-ltr .ag-cell-range-single-cell.ag-cell-range-handle,.ag-theme-balham .ag-ltr .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),.ag-theme-balham .ag-ltr .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),.ag-theme-balham .ag-ltr .ag-has-focus .ag-full-width-row.ag-row-focus .ag-cell-wrapper.ag-row-group,.ag-theme-balham .ag-rtl .ag-cell-range-single-cell,.ag-theme-balham .ag-rtl .ag-cell-range-single-cell.ag-cell-range-handle,.ag-theme-balham .ag-rtl .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),.ag-theme-balham .ag-rtl .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),.ag-theme-balham .ag-rtl .ag-has-focus .ag-full-width-row.ag-row-focus .ag-cell-wrapper.ag-row-group{border:1px solid #0091ea;border-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea));outline:medium none invert;outline:initial}.ag-theme-balham .ag-cell.ag-selection-fill-top,.ag-theme-balham .ag-cell.ag-selection-fill-top.ag-cell-range-selected{border-top:1px dashed #0091ea;border-top-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-ltr .ag-cell.ag-selection-fill-right,.ag-theme-balham .ag-ltr .ag-cell.ag-selection-fill-right.ag-cell-range-selected{border-right:1px dashed #0091ea;border-right-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-rtl .ag-cell.ag-selection-fill-right,.ag-theme-balham .ag-rtl .ag-cell.ag-selection-fill-right.ag-cell-range-selected{border-left:1px dashed #0091ea;border-left-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-cell.ag-selection-fill-bottom,.ag-theme-balham .ag-cell.ag-selection-fill-bottom.ag-cell-range-selected{border-bottom:1px dashed #0091ea;border-bottom-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-ltr .ag-cell.ag-selection-fill-left,.ag-theme-balham .ag-ltr .ag-cell.ag-selection-fill-left.ag-cell-range-selected{border-left:1px dashed #0091ea;border-left-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-rtl .ag-cell.ag-selection-fill-left,.ag-theme-balham .ag-rtl .ag-cell.ag-selection-fill-left.ag-cell-range-selected{border-right:1px dashed #0091ea;border-right-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea))}.ag-theme-balham .ag-fill-handle,.ag-theme-balham .ag-range-handle{background-color:#0091ea;background-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea));bottom:-1px;height:6px;position:absolute;width:6px}.ag-theme-balham .ag-ltr .ag-fill-handle,.ag-theme-balham .ag-ltr .ag-range-handle{right:-1px}.ag-theme-balham .ag-rtl .ag-fill-handle,.ag-theme-balham .ag-rtl .ag-range-handle{left:-1px}.ag-theme-balham .ag-fill-handle{cursor:cell}.ag-theme-balham .ag-range-handle{cursor:nwse-resize}.ag-theme-balham .ag-cell-inline-editing{border-color:#719ece!important;border-color:var(--ag-input-focus-border-color,#719ece)!important}.ag-theme-balham .ag-menu{background:#fff;background:var(--ag-background-color,#fff);border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-radius:2px;-webkit-box-shadow:none;box-shadow:none;padding:0}.ag-theme-balham .ag-menu-list{cursor:default;padding:4px 0}.ag-theme-balham .ag-menu-separator{height:9px}.ag-theme-balham .ag-menu-separator-part:after{border-top:1px solid #bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7);content:"";display:block}.ag-theme-balham .ag-compact-menu-option-active,.ag-theme-balham .ag-menu-option-active{background-color:#ecf0f1;background-color:var(--ag-row-hover-color,#ecf0f1)}.ag-theme-balham .ag-compact-menu-option-part,.ag-theme-balham .ag-menu-option-part{line-height:16px;padding:6px 0}.ag-theme-balham .ag-compact-menu-option-disabled,.ag-theme-balham .ag-menu-option-disabled{opacity:.5}.ag-theme-balham .ag-compact-menu-option-icon,.ag-theme-balham .ag-menu-option-icon{width:16px}.ag-theme-balham .ag-ltr .ag-compact-menu-option-icon,.ag-theme-balham .ag-ltr .ag-menu-option-icon{padding-left:8px}.ag-theme-balham .ag-rtl .ag-compact-menu-option-icon,.ag-theme-balham .ag-rtl .ag-menu-option-icon{padding-right:8px}.ag-theme-balham .ag-compact-menu-option-text,.ag-theme-balham .ag-menu-option-text{padding-left:8px;padding-right:8px}.ag-theme-balham .ag-ltr .ag-compact-menu-option-shortcut,.ag-theme-balham .ag-ltr .ag-menu-option-shortcut{padding-right:4px}.ag-theme-balham .ag-rtl .ag-compact-menu-option-shortcut,.ag-theme-balham .ag-rtl .ag-menu-option-shortcut{padding-left:4px}.ag-theme-balham .ag-compact-menu-option-popup-pointer,.ag-theme-balham .ag-menu-option-popup-pointer{padding-right:4px}.ag-theme-balham .ag-tabs{min-width:220px}.ag-theme-balham .ag-tabs-header{display:flex;width:100%}.ag-theme-balham .ag-tab{align-items:center;border-bottom:0 solid transparent;cursor:pointer;display:flex;flex:none;justify-content:center}.ag-theme-balham .ag-keyboard-focus .ag-tab:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-tab:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-tab-selected{border-bottom-color:#0091ea;border-bottom-color:var(--ag-selected-tab-underline-color,var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea)))}.ag-theme-balham .ag-menu-header{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54))}.ag-theme-balham .ag-filter-separator{border-top:1px solid #bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-menu:not(.ag-tabs) .ag-filter-select{min-width:167px}.ag-theme-balham .ag-tabs .ag-filter-select{min-width:206px}.ag-theme-balham .ag-filter-select .ag-picker-field-wrapper{width:0}.ag-theme-balham .ag-filter-condition-operator{height:17px}.ag-theme-balham .ag-ltr .ag-filter-condition-operator-or{margin-left:8px}.ag-theme-balham .ag-rtl .ag-filter-condition-operator-or{margin-right:8px}.ag-theme-balham .ag-set-filter-select-all{padding-top:6px}.ag-theme-balham .ag-filter-no-matches,.ag-theme-balham .ag-set-filter-list{height:144px}.ag-theme-balham .ag-set-filter-filter{margin-left:6px;margin-right:6px;margin-top:6px}.ag-theme-balham .ag-filter-to{margin-top:4px}.ag-theme-balham .ag-mini-filter{margin:6px}.ag-theme-balham .ag-set-filter-item{margin:0 6px}.ag-theme-balham .ag-ltr .ag-set-filter-item-value{margin-left:6px}.ag-theme-balham .ag-rtl .ag-set-filter-item-value{margin-right:6px}.ag-theme-balham .ag-filter-apply-panel{border-top:1px solid #bdc3c7;border-top-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7));padding:6px}.ag-theme-balham .ag-filter-apply-panel-button{line-height:1.5}.ag-theme-balham .ag-ltr .ag-filter-apply-panel-button{margin-left:8px}.ag-theme-balham .ag-rtl .ag-filter-apply-panel-button{margin-right:8px}.ag-theme-balham .ag-simple-filter-body-wrapper{padding:6px 6px 2px}.ag-theme-balham .ag-simple-filter-body-wrapper>*{margin-bottom:4px}.ag-theme-balham .ag-filter-no-matches{padding:6px}.ag-theme-balham .ag-multi-filter-menu-item{margin:4px 0}.ag-theme-balham .ag-multi-filter-group-title-bar{background-color:transparent;padding:8px 4px}.ag-theme-balham .ag-keyboard-focus .ag-multi-filter-group-title-bar:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-multi-filter-group-title-bar:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-side-bar{position:relative}.ag-theme-balham .ag-tool-panel-wrapper{background-color:#f5f7f7;background-color:var(--ag-control-panel-background-color,#f5f7f7);width:200px}.ag-theme-balham .ag-side-buttons{color:#000;color:var(--ag-foreground-color,#000);overflow:hidden;padding-top:16px;position:relative;width:20px}.ag-theme-balham button.ag-side-button-button{background:transparent;background-position-x:center;background-position-y:center;background-repeat:no-repeat;border-bottom:#bdc3c7;border-bottom:1px solid var(--ag-border-color,#bdc3c7);border-left:none;border-right:none;border-top:#bdc3c7;border-top:1px solid var(--ag-border-color,#bdc3c7);color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;line-height:inherit;margin:0;min-height:72px;padding:8px 0;width:calc(100% + 1px)}.ag-theme-balham button.ag-side-button-button:focus{-webkit-box-shadow:none;box-shadow:none}.ag-theme-balham .ag-keyboard-focus .ag-side-button-button:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-side-button-button:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-selected .ag-side-button-button{background-color:#f5f7f7;background-color:var(--ag-control-panel-background-color,#f5f7f7);border-bottom-color:#bdc3c7;border-bottom-color:var(--ag-border-color,#bdc3c7);border-top-color:#bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-side-button-icon-wrapper{margin-bottom:3px}.ag-theme-balham .ag-ltr .ag-side-bar-left,.ag-theme-balham .ag-rtl .ag-side-bar-right{border-right:1px solid #bdc3c7;border-right-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-ltr .ag-side-bar-left .ag-tool-panel-wrapper,.ag-theme-balham .ag-rtl .ag-side-bar-right .ag-tool-panel-wrapper{border-left:1px solid #bdc3c7;border-left-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-ltr .ag-side-bar-left .ag-side-button-button,.ag-theme-balham .ag-rtl .ag-side-bar-right .ag-side-button-button{border-right:0 solid transparent;margin-right:-1px;padding-right:1px}.ag-theme-balham .ag-ltr .ag-side-bar-left .ag-selected .ag-side-button-button,.ag-theme-balham .ag-rtl .ag-side-bar-right .ag-selected .ag-side-button-button{border-right-color:#0091ea;border-right-color:var(--ag-selected-tab-underline-color,var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea)))}.ag-theme-balham .ag-ltr .ag-side-bar-right,.ag-theme-balham .ag-rtl .ag-side-bar-left{border-left:1px solid #bdc3c7;border-left-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-ltr .ag-side-bar-right .ag-tool-panel-wrapper,.ag-theme-balham .ag-rtl .ag-side-bar-left .ag-tool-panel-wrapper{border-right:1px solid #bdc3c7;border-right-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-ltr .ag-side-bar-right .ag-side-button-button,.ag-theme-balham .ag-rtl .ag-side-bar-left .ag-side-button-button{border-left:0 solid transparent;margin-left:-1px;padding-left:1px}.ag-theme-balham .ag-ltr .ag-side-bar-right .ag-selected .ag-side-button-button,.ag-theme-balham .ag-rtl .ag-side-bar-left .ag-selected .ag-side-button-button{border-left-color:#0091ea;border-left-color:var(--ag-selected-tab-underline-color,var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea)))}.ag-theme-balham .ag-filter-toolpanel-header{height:24px}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-header,.ag-theme-balham .ag-ltr .ag-filter-toolpanel-search{padding-left:4px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-header,.ag-theme-balham .ag-rtl .ag-filter-toolpanel-search{padding-right:4px}.ag-theme-balham .ag-keyboard-focus .ag-filter-toolpanel-header:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-filter-toolpanel-header:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-filter-toolpanel-group.ag-has-filter>.ag-group-title-bar .ag-group-title:after{-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f114";font-family:agGridBalham;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;line-height:16px;position:absolute;text-transform:none}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group.ag-has-filter>.ag-group-title-bar .ag-group-title:after{padding-left:4px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group.ag-has-filter>.ag-group-title-bar .ag-group-title:after{padding-right:4px}.ag-theme-balham .ag-filter-toolpanel-group-level-0-header{height:32px}.ag-theme-balham .ag-filter-toolpanel-group-item{margin-bottom:2px;margin-top:2px}.ag-theme-balham .ag-filter-toolpanel-search{height:32px}.ag-theme-balham .ag-filter-toolpanel-search-input{flex-grow:1;height:16px}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-search-input{margin-right:4px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-search-input{margin-left:4px}.ag-theme-balham .ag-filter-toolpanel-group-level-0{border-top:1px solid #bdc3c7;border-top-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7))}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-expand,.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-title-bar-icon{margin-right:4px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-expand,.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-title-bar-icon{margin-left:4px}.ag-theme-balham .ag-filter-toolpanel-group-level-1 .ag-filter-toolpanel-group-level-1-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-1 .ag-filter-toolpanel-group-level-2-header{padding-left:20px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-1 .ag-filter-toolpanel-group-level-2-header{padding-right:20px}.ag-theme-balham .ag-filter-toolpanel-group-level-2 .ag-filter-toolpanel-group-level-2-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-2 .ag-filter-toolpanel-group-level-3-header{padding-left:36px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-2 .ag-filter-toolpanel-group-level-3-header{padding-right:36px}.ag-theme-balham .ag-filter-toolpanel-group-level-3 .ag-filter-toolpanel-group-level-3-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-3 .ag-filter-toolpanel-group-level-4-header{padding-left:52px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-3 .ag-filter-toolpanel-group-level-4-header{padding-right:52px}.ag-theme-balham .ag-filter-toolpanel-group-level-4 .ag-filter-toolpanel-group-level-4-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-4 .ag-filter-toolpanel-group-level-5-header{padding-left:68px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-4 .ag-filter-toolpanel-group-level-5-header{padding-right:68px}.ag-theme-balham .ag-filter-toolpanel-group-level-5 .ag-filter-toolpanel-group-level-5-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-5 .ag-filter-toolpanel-group-level-6-header{padding-left:84px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-5 .ag-filter-toolpanel-group-level-6-header{padding-right:84px}.ag-theme-balham .ag-filter-toolpanel-group-level-6 .ag-filter-toolpanel-group-level-6-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-6 .ag-filter-toolpanel-group-level-7-header{padding-left:100px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-6 .ag-filter-toolpanel-group-level-7-header{padding-right:100px}.ag-theme-balham .ag-filter-toolpanel-group-level-7 .ag-filter-toolpanel-group-level-7-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-7 .ag-filter-toolpanel-group-level-8-header{padding-left:116px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-7 .ag-filter-toolpanel-group-level-8-header{padding-right:116px}.ag-theme-balham .ag-filter-toolpanel-group-level-8 .ag-filter-toolpanel-group-level-8-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-8 .ag-filter-toolpanel-group-level-9-header{padding-left:132px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-8 .ag-filter-toolpanel-group-level-9-header{padding-right:132px}.ag-theme-balham .ag-filter-toolpanel-group-level-9 .ag-filter-toolpanel-group-level-9-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-9 .ag-filter-toolpanel-group-level-10-header{padding-left:148px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-9 .ag-filter-toolpanel-group-level-10-header{padding-right:148px}.ag-theme-balham .ag-filter-toolpanel-group-level-10 .ag-filter-toolpanel-group-level-10-header.ag-filter-toolpanel-group-title-bar{background-color:transparent}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-group-level-10 .ag-filter-toolpanel-group-level-11-header{padding-left:164px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-group-level-10 .ag-filter-toolpanel-group-level-11-header{padding-right:164px}.ag-theme-balham .ag-filter-toolpanel-instance-header.ag-filter-toolpanel-group-level-1-header{padding-left:4px}.ag-theme-balham .ag-filter-toolpanel-instance-filter{border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-border-color,#bdc3c7);border-top:1px solid #bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7);margin-top:4px}.ag-theme-balham .ag-ltr .ag-filter-toolpanel-instance-header-icon{margin-left:4px}.ag-theme-balham .ag-rtl .ag-filter-toolpanel-instance-header-icon{margin-right:4px}.ag-theme-balham .ag-pivot-mode-panel{display:flex;height:32px;min-height:32px}.ag-theme-balham .ag-pivot-mode-select{align-items:center;display:flex}.ag-theme-balham .ag-ltr .ag-pivot-mode-select{margin-left:6px}.ag-theme-balham .ag-rtl .ag-pivot-mode-select{margin-right:6px}.ag-theme-balham .ag-keyboard-focus .ag-column-select-header:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-column-select-header:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-column-select-header{align-items:center;height:32px;padding:0 6px}.ag-theme-balham .ag-column-panel-column-select,.ag-theme-balham .ag-column-select-header{border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7))}.ag-theme-balham .ag-column-panel-column-select{border-top:1px solid #bdc3c7;border-top-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7))}.ag-theme-balham .ag-column-group-icons,.ag-theme-balham .ag-column-select-header-icon{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54))}.ag-theme-balham .ag-column-select-list .ag-list-item-hovered:after{background-color:#0091ea;background-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea));content:"";height:1px;left:0;position:absolute;right:0}.ag-theme-balham .ag-column-select-list .ag-item-highlight-top:after{top:0}.ag-theme-balham .ag-column-select-list .ag-item-highlight-bottom:after{bottom:0}.ag-theme-balham .ag-header{background-color:#f5f7f7;background-color:var(--ag-header-background-color,#f5f7f7);border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-header-row{color:rgba(0,0,0,.54);color:var(--ag-header-foreground-color,var(--ag-secondary-foreground-color,rgba(0,0,0,.54)));height:32px}.ag-theme-balham .ag-pinned-right-header{border-left:1px solid #bdc3c7;border-left-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-pinned-left-header{border-right:1px solid #bdc3c7;border-right-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-label-icon{margin-left:4px}.ag-theme-balham .ag-ltr .ag-header-cell.ag-right-aligned-header .ag-header-label-icon,.ag-theme-balham .ag-rtl .ag-header-cell:not(.ag-right-aligned-header) .ag-header-label-icon{margin-right:4px}.ag-theme-balham .ag-rtl .ag-header-cell.ag-right-aligned-header .ag-header-label-icon{margin-left:4px}.ag-theme-balham .ag-header-cell,.ag-theme-balham .ag-header-group-cell{padding-left:12px;padding-right:12px}.ag-theme-balham .ag-header-cell.ag-header-cell-moving,.ag-theme-balham .ag-header-group-cell.ag-header-cell-moving{background-color:#fff;background-color:var(--ag-header-cell-moving-background-color,var(--ag-background-color,#fff))}.ag-theme-balham .ag-keyboard-focus .ag-header-cell:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-header-cell:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-keyboard-focus .ag-header-group-cell:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-header-group-cell:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.ag-theme-balham .ag-header-icon{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54))}.ag-theme-balham .ag-header-expand-icon{cursor:pointer}.ag-theme-balham .ag-ltr .ag-header-expand-icon{padding-left:4px}.ag-theme-balham .ag-rtl .ag-header-expand-icon{padding-right:4px}.ag-theme-balham .ag-header-row:not(:first-child) .ag-header-cell,.ag-theme-balham .ag-header-row:not(:first-child) .ag-header-group-cell.ag-header-group-cell-with-group{border-top:1px solid #bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-header-cell:after,.ag-theme-balham .ag-header-group-cell:after{background-color:hsla(204,8%,76%,.5);background-color:var(--ag-header-column-separator-color,hsla(204,8%,76%,.5));content:"";display:block;height:50%;position:absolute;top:25%;width:1px;z-index:1}.ag-theme-balham .ag-ltr .ag-header-cell:after,.ag-theme-balham .ag-ltr .ag-header-group-cell:after{right:0}.ag-theme-balham .ag-rtl .ag-header-cell:after,.ag-theme-balham .ag-rtl .ag-header-group-cell:after{left:0}.ag-theme-balham .ag-ltr .ag-header-select-all{margin-right:12px}.ag-theme-balham .ag-ltr .ag-floating-filter-button,.ag-theme-balham .ag-rtl .ag-header-select-all{margin-left:12px}.ag-theme-balham .ag-rtl .ag-floating-filter-button{margin-right:12px}.ag-theme-balham .ag-floating-filter-button-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;height:16px;line-height:inherit;padding:0;width:16px}.ag-theme-balham .ag-filter-loading{background-color:#f5f7f7;background-color:var(--ag-control-panel-background-color,#f5f7f7);height:100%;padding:6px;position:absolute;width:100%;z-index:1}.ag-theme-balham .ag-paging-panel{border-top:1px solid #bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7);color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));height:32px}.ag-theme-balham .ag-paging-panel>*{margin:0 12px}.ag-theme-balham .ag-paging-button{cursor:pointer}.ag-theme-balham .ag-paging-button.ag-disabled{color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38));cursor:default}.ag-theme-balham .ag-keyboard-focus .ag-paging-button:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-paging-button:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.ag-theme-balham .ag-paging-button,.ag-theme-balham .ag-paging-description{margin:0 4px}.ag-theme-balham .ag-status-bar{border-top:1px solid #bdc3c7;border-top-color:var(--ag-border-color,#bdc3c7);color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38));line-height:1.5;padding-left:16px;padding-right:16px}.ag-theme-balham .ag-status-name-value-value{color:#000;color:var(--ag-foreground-color,#000)}.ag-theme-balham .ag-status-bar-center{text-align:center}.ag-theme-balham .ag-status-name-value{margin-left:4px;margin-right:4px;padding-bottom:8px;padding-top:8px}.ag-theme-balham .ag-column-drop-cell{background:#dddede;background:var(--ag-chip-background-color,#dddede);border:1px solid transparent;border-radius:16px;height:16px;padding:0 2px}.ag-theme-balham .ag-keyboard-focus .ag-column-drop-cell:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-column-drop-cell:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 4px);left:2px;pointer-events:none;position:absolute;top:2px;width:calc(100% - 4px)}.ag-theme-balham .ag-column-drop-cell-text{margin:0 4px}.ag-theme-balham .ag-column-drop-cell-button{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));margin:0 2px;min-width:16px}.ag-theme-balham .ag-column-drop-cell-drag-handle{margin-left:8px}.ag-theme-balham .ag-column-drop-cell-ghost{opacity:.5}.ag-theme-balham .ag-column-drop-horizontal{background-color:#f5f7f7;background-color:var(--ag-control-panel-background-color,#f5f7f7);border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-border-color,#bdc3c7);color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));height:28px}.ag-theme-balham .ag-ltr .ag-column-drop-horizontal{padding-left:12px}.ag-theme-balham .ag-rtl .ag-column-drop-horizontal{padding-right:12px}.ag-theme-balham .ag-ltr .ag-column-drop-horizontal-half-width:not(:last-child){border-right:1px solid #bdc3c7;border-right-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-rtl .ag-column-drop-horizontal-half-width:not(:last-child){border-left:1px solid #bdc3c7;border-left-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-column-drop-horizontal-cell-separator{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));margin:0 4px}.ag-theme-balham .ag-column-drop-horizontal-empty-message{color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38))}.ag-theme-balham .ag-ltr .ag-column-drop-horizontal-icon{margin-right:12px}.ag-theme-balham .ag-rtl .ag-column-drop-horizontal-icon{margin-left:12px}.ag-theme-balham .ag-column-drop-vertical-list{padding-bottom:4px;padding-left:4px;padding-right:4px}.ag-theme-balham .ag-column-drop-vertical-cell{margin-top:4px}.ag-theme-balham .ag-column-drop-vertical{border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7));min-height:50px}.ag-theme-balham .ag-column-drop-vertical.ag-last-column-drop{border-bottom:none}.ag-theme-balham .ag-column-drop-vertical-icon{margin-left:4px;margin-right:4px}.ag-theme-balham .ag-column-drop-vertical-empty-message{bottom:0;color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38));left:0;margin-top:4px;overflow:hidden;position:absolute;right:0;top:0}.ag-theme-balham .ag-select-agg-func-popup{background:#fff;background:var(--ag-background-color,#fff);border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-radius:2px;-webkit-box-shadow:none;box-shadow:none;height:70px;padding:0}.ag-theme-balham .ag-select-agg-func-virtual-list-item{cursor:default;padding-left:8px}.ag-theme-balham .ag-select-agg-func-virtual-list-item:hover{background-color:#b7e4ff;background-color:var(--ag-selected-row-background-color,#b7e4ff)}.ag-theme-balham .ag-keyboard-focus .ag-select-agg-func-virtual-list-item:focus{outline:none}.ag-theme-balham .ag-keyboard-focus .ag-select-agg-func-virtual-list-item:focus:after{background-color:transparent;border:1px solid #719ece;border-color:var(--ag-input-focus-border-color,#719ece);content:"";display:block;height:calc(100% - 2px);left:1px;pointer-events:none;position:absolute;top:1px;width:calc(100% - 2px)}.ag-theme-balham .ag-chart-menu{background:#fff;background:var(--ag-background-color,#fff);border-radius:2px}.ag-theme-balham .ag-chart-menu-icon{border-radius:2px;color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54));cursor:pointer;font-size:24px;height:24px;line-height:24px;margin:2px 0;opacity:.5;width:24px}.ag-theme-balham .ag-chart-menu-icon:hover{opacity:1}.ag-theme-balham .ag-chart-mini-thumbnail{border:1px solid #bdc3c7;border-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7));border-radius:5px;margin:5px}.ag-theme-balham .ag-chart-mini-thumbnail:nth-last-child(3),.ag-theme-balham .ag-chart-mini-thumbnail:nth-last-child(3)~.ag-chart-mini-thumbnail{margin-left:auto;margin-right:auto}.ag-theme-balham .ag-ltr .ag-chart-mini-thumbnail:first-child{margin-left:0}.ag-theme-balham .ag-ltr .ag-chart-mini-thumbnail:last-child,.ag-theme-balham .ag-rtl .ag-chart-mini-thumbnail:first-child{margin-right:0}.ag-theme-balham .ag-rtl .ag-chart-mini-thumbnail:last-child{margin-left:0}.ag-theme-balham .ag-chart-mini-thumbnail.ag-selected{border-color:#0091ea;border-color:var(--ag-minichart-selected-chart-color,var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea)))}.ag-theme-balham .ag-chart-settings-card-item{background:#000;background:var(--ag-foreground-color,#000);border-radius:4px;height:8px;width:8px}.ag-theme-balham .ag-chart-settings-card-item.ag-selected{background-color:#0091ea;background-color:var(--ag-minichart-selected-page-color,var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea)))}.ag-theme-balham .ag-chart-data-column-drag-handle{margin-left:4px}.ag-theme-balham .ag-charts-data-group-title-bar,.ag-theme-balham .ag-charts-format-top-level-group-title-bar,.ag-theme-balham .ag-charts-settings-group-title-bar{border-top:1px solid #bdc3c7;border-top-color:var(--ag-secondary-border-color,var(--ag-border-color,#bdc3c7))}.ag-theme-balham .ag-charts-settings-group-container{padding:4px}.ag-theme-balham .ag-charts-data-group-container{padding:3px 6px}.ag-theme-balham .ag-charts-data-group-container .ag-charts-data-group-item:not(.ag-charts-format-sub-level-group){height:24px}.ag-theme-balham .ag-charts-data-group-container .ag-list-item-hovered:after{background-color:#0091ea;background-color:var(--ag-range-selection-border-color,var(--ag-balham-active-color,#0091ea));content:"";height:1px;left:0;position:absolute;right:0}.ag-theme-balham .ag-charts-data-group-container .ag-item-highlight-top:after{top:0}.ag-theme-balham .ag-charts-data-group-container .ag-item-highlight-bottom:after{bottom:0}.ag-theme-balham .ag-charts-format-top-level-group-container{margin-left:8px;padding:4px}.ag-theme-balham .ag-charts-format-top-level-group-item{margin:4px 0}.ag-theme-balham .ag-charts-format-sub-level-group-container{padding:6px 6px 2px}.ag-theme-balham .ag-charts-format-sub-level-group-container>*{margin-bottom:4px}.ag-theme-balham .ag-charts-group-container.ag-group-container-horizontal{padding:4px}.ag-theme-balham .ag-chart-data-section,.ag-theme-balham .ag-chart-format-section{display:flex;margin:0}.ag-theme-balham .ag-chart-menu-panel{background-color:#f5f7f7;background-color:var(--ag-control-panel-background-color,#f5f7f7)}.ag-theme-balham .ag-ltr .ag-chart-menu-panel{border-left:1px solid #bdc3c7;border-left-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-rtl .ag-chart-menu-panel{border-right:1px solid #bdc3c7;border-right-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-date-time-list-page-title{flex-grow:1;text-align:center}.ag-theme-balham .ag-date-time-list-page-column-label,.ag-theme-balham .ag-date-time-list-page-entry{text-align:center}.ag-theme-balham .ag-checkbox-input-wrapper{-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#fff;background-color:var(--ag-checkbox-background-color,var(--ag-background-color,#fff));border-radius:3px;display:inline-block;flex:none;font-family:agGridBalham;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;height:16px;line-height:16px;text-transform:none;vertical-align:middle;width:16px}.ag-theme-balham .ag-checkbox-input-wrapper input{-webkit-appearance:none;height:100%;opacity:0;width:100%}.ag-theme-balham .ag-checkbox-input-wrapper:active,.ag-theme-balham .ag-checkbox-input-wrapper:focus-within{-webkit-box-shadow:0 0 2px 1px #719ece;box-shadow:0 0 2px 1px #719ece;outline:none}.ag-theme-balham .ag-checkbox-input-wrapper.ag-disabled{opacity:.5}.ag-theme-balham .ag-checkbox-input-wrapper:after{color:#7f8c8d;color:var(--ag-checkbox-unchecked-color,#7f8c8d);content:"\f108";left:0;pointer-events:none;position:absolute;top:0}.ag-theme-balham .ag-checkbox-input-wrapper.ag-checked:after{color:#0091ea;color:var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea));content:"\f106";left:0;pointer-events:none;position:absolute;top:0}.ag-theme-balham .ag-checkbox-input-wrapper.ag-indeterminate:after{color:#7f8c8d;color:var(--ag-checkbox-indeterminate-color,var(--ag-checkbox-unchecked-color,#7f8c8d));content:"\f107";left:0;pointer-events:none;position:absolute;top:0}.ag-theme-balham .ag-toggle-button-input-wrapper{background-color:#7f8c8d;background-color:var(--ag-toggle-button-off-background-color,var(--ag-checkbox-unchecked-color,#7f8c8d));border:1px solid #7f8c8d;border-color:var(--ag-toggle-button-off-border-color,var(--ag-checkbox-unchecked-color,#7f8c8d));border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;flex:none;height:16px;position:relative;width:32px}.ag-theme-balham .ag-toggle-button-input-wrapper input{height:100%;opacity:0;width:100%}.ag-theme-balham .ag-toggle-button-input-wrapper:focus-within{-webkit-box-shadow:0 0 2px 1px #719ece;box-shadow:0 0 2px 1px #719ece;outline:none}.ag-theme-balham .ag-toggle-button-input-wrapper.ag-disabled{opacity:.5}.ag-theme-balham .ag-toggle-button-input-wrapper.ag-checked{background-color:#0091ea;background-color:var(--ag-toggle-button-on-background-color,var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea)));border-color:#0091ea;border-color:var(--ag-toggle-button-on-border-color,var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea)))}.ag-theme-balham .ag-toggle-button-input-wrapper:before{background-color:#fff;background-color:var(--ag-toggle-button-switch-background-color,var(--ag-background-color,#fff));border:1px solid #7f8c8d;border-color:var(--ag-toggle-button-switch-border-color,var(--ag-toggle-button-off-border-color,var(--ag-checkbox-unchecked-color,#7f8c8d)));border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;content:" ";display:block;height:16px;left:-1px;position:absolute;top:-1px;-webkit-transition:left .1s;transition:left .1s;width:16px}.ag-theme-balham .ag-toggle-button-input-wrapper.ag-checked:before{border-color:#0091ea;border-color:var(--ag-toggle-button-on-border-color,var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea)));left:calc(100% - 16px)}.ag-theme-balham .ag-radio-button-input-wrapper{-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#fff;background-color:var(--ag-checkbox-background-color,var(--ag-background-color,#fff));border-radius:3px;border-radius:16px;display:inline-block;flex:none;font-family:agGridBalham;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;height:16px;line-height:16px;text-transform:none;vertical-align:middle;width:16px}.ag-theme-balham .ag-radio-button-input-wrapper input{-webkit-appearance:none;height:100%;opacity:0;width:100%}.ag-theme-balham .ag-radio-button-input-wrapper:active,.ag-theme-balham .ag-radio-button-input-wrapper:focus-within{-webkit-box-shadow:0 0 2px 1px #719ece;box-shadow:0 0 2px 1px #719ece;outline:none}.ag-theme-balham .ag-radio-button-input-wrapper.ag-disabled{opacity:.5}.ag-theme-balham .ag-radio-button-input-wrapper:after{color:#7f8c8d;color:var(--ag-checkbox-unchecked-color,#7f8c8d);content:"\f126";left:0;pointer-events:none;position:absolute;top:0}.ag-theme-balham .ag-radio-button-input-wrapper.ag-checked:after{color:#0091ea;color:var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea));content:"\f127";left:0;pointer-events:none;position:absolute;top:0}.ag-theme-balham input[class^=ag-][type=range]{-webkit-appearance:none;background:none;height:100%;overflow:visible;width:100%}.ag-theme-balham input[class^=ag-][type=range]::-webkit-slider-runnable-track{background-color:#bdc3c7;background-color:var(--ag-border-color,#bdc3c7);border-radius:2px;border-radius:3px;height:3px;margin:0;padding:0;width:100%}.ag-theme-balham input[class^=ag-][type=range]::-moz-range-track{background-color:#bdc3c7;background-color:var(--ag-border-color,#bdc3c7);border-radius:2px;border-radius:3px;height:3px;margin:0;padding:0;width:100%}.ag-theme-balham input[class^=ag-][type=range]::-ms-track{background-color:#bdc3c7;background-color:var(--ag-border-color,#bdc3c7);border-radius:2px;border-radius:3px;color:transparent;height:3px;margin:0;padding:0;width:100%;width:calc(100% - 2px)}.ag-theme-balham input[class^=ag-][type=range]::-webkit-slider-thumb{-webkit-appearance:none;background-color:#fff;background-color:var(--ag-background-color,#fff);border:1px solid #7f8c8d;border-color:var(--ag-checkbox-unchecked-color,#7f8c8d);border-radius:16px;height:16px;margin:0;padding:0;-webkit-transform:translateY(-6.5px);transform:translateY(-6.5px);width:16px}.ag-theme-balham input[class^=ag-][type=range]::-ms-thumb{-webkit-appearance:none;background-color:#fff;background-color:var(--ag-background-color,#fff);border:1px solid #7f8c8d;border-color:var(--ag-checkbox-unchecked-color,#7f8c8d);border-radius:16px;height:16px;margin:0;padding:0;width:16px}.ag-theme-balham input[class^=ag-][type=range]::-moz-ag-range-thumb{-webkit-appearance:none;background-color:#fff;background-color:var(--ag-background-color,#fff);border:1px solid #7f8c8d;border-color:var(--ag-checkbox-unchecked-color,#7f8c8d);border-radius:16px;height:16px;margin:0;padding:0;width:16px}.ag-theme-balham input[class^=ag-][type=range]:focus{outline:none}.ag-theme-balham input[class^=ag-][type=range]:focus::-webkit-slider-thumb{border-color:#0091ea;border-color:var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea));-webkit-box-shadow:0 0 2px 1px #719ece;box-shadow:0 0 2px 1px #719ece}.ag-theme-balham input[class^=ag-][type=range]:focus::-ms-thumb{border-color:#0091ea;border-color:var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea));box-shadow:0 0 2px 1px #719ece}.ag-theme-balham input[class^=ag-][type=range]:focus::-moz-ag-range-thumb{border-color:#0091ea;border-color:var(--ag-checkbox-checked-color,var(--ag-balham-active-color,#0091ea));box-shadow:0 0 2px 1px #719ece}.ag-theme-balham input[class^=ag-][type=range]:active::-webkit-slider-runnable-track{background-color:#719ece;background-color:var(--ag-input-focus-border-color,#719ece)}.ag-theme-balham input[class^=ag-][type=range]:active::-moz-ag-range-track{background-color:#719ece;background-color:var(--ag-input-focus-border-color,#719ece)}.ag-theme-balham input[class^=ag-][type=range]:active::-ms-track{background-color:#719ece;background-color:var(--ag-input-focus-border-color,#719ece)}.ag-theme-balham input[class^=ag-][type=range]:disabled{opacity:.5}.ag-theme-balham .ag-filter-toolpanel-header,.ag-theme-balham .ag-filter-toolpanel-search,.ag-theme-balham .ag-header-row,.ag-theme-balham .ag-multi-filter-group-title-bar,.ag-theme-balham .ag-status-bar{color:rgba(0,0,0,.54);color:var(--ag-header-foreground-color,var(--ag-secondary-foreground-color,rgba(0,0,0,.54)));font-weight:600}.ag-theme-balham .ag-ltr input[class^=ag-]:not([type]),.ag-theme-balham .ag-ltr input[class^=ag-][type=date],.ag-theme-balham .ag-ltr input[class^=ag-][type=datetime-local],.ag-theme-balham .ag-ltr input[class^=ag-][type=number],.ag-theme-balham .ag-ltr input[class^=ag-][type=tel],.ag-theme-balham .ag-ltr input[class^=ag-][type=text],.ag-theme-balham .ag-ltr textarea[class^=ag-]{padding-left:4px}.ag-theme-balham .ag-rtl input[class^=ag-]:not([type]),.ag-theme-balham .ag-rtl input[class^=ag-][type=date],.ag-theme-balham .ag-rtl input[class^=ag-][type=datetime-local],.ag-theme-balham .ag-rtl input[class^=ag-][type=number],.ag-theme-balham .ag-rtl input[class^=ag-][type=tel],.ag-theme-balham .ag-rtl input[class^=ag-][type=text],.ag-theme-balham .ag-rtl textarea[class^=ag-]{padding-right:4px}.ag-theme-balham .ag-column-drop-vertical-empty-message,.ag-theme-balham .ag-status-bar{color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38));font-weight:600}.ag-theme-balham .ag-dnd-ghost{font-weight:600}.ag-theme-balham .ag-tab{border:1px solid transparent;margin:4px 4px -1px;padding:4px 8px}.ag-theme-balham .ag-tab-selected{background-color:#fff;background-color:var(--ag-background-color,#fff);border-color:#bdc3c7;border-color:var(--ag-border-color,#bdc3c7);border-bottom-color:transparent}.ag-theme-balham .ag-tabs-header{border-bottom:1px solid #bdc3c7;border-bottom-color:var(--ag-border-color,#bdc3c7)}.ag-theme-balham .ag-column-drop-cell{height:24px}.ag-theme-balham .ag-column-drop-vertical-title{color:#000;color:var(--ag-foreground-color,#000)}.ag-theme-balham .ag-column-drop-vertical-cell{margin-left:8px;margin-right:8px}.ag-theme-balham .ag-column-drop-vertical-cell-text{margin-left:8px}.ag-theme-balham .ag-column-drop-vertical-icon{color:rgba(0,0,0,.54);color:var(--ag-secondary-foreground-color,rgba(0,0,0,.54))}.ag-theme-balham .ag-ltr .ag-column-drop-vertical-empty-message{padding-left:24px;padding-right:4px}.ag-theme-balham .ag-rtl .ag-column-drop-vertical-empty-message{padding-left:4px;padding-right:24px}.ag-theme-balham .ag-column-drop-horizontal{height:32px}.ag-theme-balham .ag-column-drop-empty{color:rgba(0,0,0,.38);color:var(--ag-disabled-foreground-color,rgba(0,0,0,.38))}.ag-theme-balham .ag-column-drop-horizontal-cell-text{margin-left:8px}.ag-theme-balham .ag-column-drop-vertical{padding-top:8px}.ag-theme-balham .ag-menu-header{background-color:#f5f7f7;background-color:var(--ag-header-background-color,#f5f7f7)}.ag-theme-balham .ag-overlay-loading-center{background-color:#fff;background-color:var(--ag-background-color,#fff);border:1px solid #bdc3c7;border-color:var(--ag-border-color,#bdc3c7);color:#000;color:var(--ag-foreground-color,#000);padding:16px}.ag-theme-balham .ag-tooltip{background-color:#cbd0d3;border:none}.ag-theme-balham .ag-panel-title-bar-button-icon{font-size:20px}.ag-theme-balham .ag-chart-data-section,.ag-theme-balham .ag-chart-format-section{padding-bottom:2px}.ag-theme-balham .ag-group-toolbar{background-color:rgba(226,233,235,.5);background-color:var(--ag-subheader-toolbar-background-color,rgba(226,233,235,.5))}.ag-theme-balham .ag-chart-tab{padding-top:2px}.ag-theme-balham .ag-charts-format-sub-level-group-item{margin-bottom:6px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.pdf-outer-container{align-items:center;display:flex;height:100%;justify-content:center;overflow:hidden;padding-left:16px;width:100%}.pdf-viewer{display:flex;flex-direction:column;height:100%;overflow-y:scroll}.paginator{background-color:hsla(0,0%,98%,.6);padding-bottom:15px;padding-top:10px;position:sticky;top:0;z-index:1001}.document,.paginator{align-items:center;display:flex;justify-content:center}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.RequestStateWrapper-error{margin-left:auto;margin-right:auto;margin-top:50px;width:auto}.metrics-plot-container{align-items:flex-start;display:flex;width:100%}.metrics-plot-container .plot-controls{display:flex;flex-direction:column;min-height:500px}.metrics-plot-container .plot-controls .inline-control{align-items:center;display:flex;margin-top:25px}.metrics-plot-container .plot-controls .inline-control .control-label{margin-right:10px}.metrics-plot-container .plot-controls .block-control{margin-top:25px}.metrics-plot-container .metrics-plot-data{display:flex;flex:1 1;flex-direction:column}.metrics-plot-container .metrics-plot-view-container{flex:1 1;min-height:500px}.metrics-plot-container .metrics-summary{margin:20px 20px 20px 60px}.metrics-plot-container .metrics-summary .html-table-view{display:inline-block;margin-bottom:25px}.metrics-plot-container .metrics-summary .html-table-view th{min-width:auto}.html-table-view table{min-width:400px;width:auto}.html-table-view th{color:#888;font-size:13px;margin-right:80px;min-width:200px;width:auto}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.ant-form-item{margin-bottom:8px}.ant-table-placeholder{padding:8px}.ant-modal-mask,.ant-modal-wrap div{animation-duration:0s!important}.fa{animation-duration:2s!important}.ant-dropdown-menu-item:hover,.ant-select-dropdown .ant-select-dropdown-menu-item-active,.ant-select-dropdown .ant-select-dropdown-menu-item:active,.ant-select-dropdown .ant-select-dropdown-menu-item:hover{background-color:#0193e1;background-image:none;color:#fff}.ant-dropdown-menu-item,.ant-select-dropdown .ant-select-dropdown-menu-item{transition:all 0s}.ant-table-placeholder{z-index:0}.ant-collapse-borderless{background-color:transparent}.ant-collapse-header{width:-moz-fit-content;width:fit-content}a{color:#2374bb}a:focus,a:hover{color:#005580}.ant-btn-primary{background-color:#2374bb;border-color:#2374bb}.ant-table-placeholder{color:#6b6b6b}.ant-radio-button-wrapper-checked:first-child,.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled),.ant-tabs-nav .ant-tabs-tab-active{color:#2374bb}.ant-alert,.ant-form,.ant-form-item,.ant-table{font-size:13px!important}.editable-note-actions{margin-top:16px}.editable-note-actions button+button{margin-left:16px}.mde-header{background:var(--secondary-background-color)}.collapsible-section.ant-collapse>.ant-collapse-item>.ant-collapse-header{align-items:center;display:flex;font-size:16px;padding-left:0;padding-right:0}.collapsible-section .ant-collapse-content-box{padding-left:0;padding-right:0}.collapsible-section .ant-collapse-item{border:0;overflow:hidden}.far,.fas{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto}.model-version-table{margin-bottom:25px}.model-version-table .model-version-link{cursor:pointer}.model-version-table .model-version-status-icon{font-size:13px}.model-version-table .ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan]):before{display:none}.table-endpoint-container{max-width:200px;width:200px}.table-endpoint-text{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-alert{border-radius:2px;margin-bottom:16px}.status-alert .model-version-status-icon{margin-left:-3px}.status-alert.status-alert-info .icon-pending{color:green;margin-right:4px}.status-alert.status-alert-info{border-left:2px solid #3895d3}.status-alert.status-alert-error{border-left:2px solid red}.breadcrumb-header-wrapper{display:flex;justify-content:space-between;width:100%}.breadcrumb-header{align-items:center;color:#333;display:flex;font-size:18px;font-weight:700;margin-bottom:24px;margin-right:10px}.version-follow-icon{margin-left:auto}.ant-popover-content{max-width:500px}.stage-transition-dropdown .ant-tag{border-radius:4px;cursor:pointer}.model-version-update-form .ant-form-item{margin-bottom:0}.model-version-update-form .ant-form-item-label{text-align:left;width:100%}.model-version-update-form div[role=status][class^=css-]{margin-right:-.5px}.metadata-container{align-items:center;display:flex;flex-wrap:wrap}.metadata-entry{margin-bottom:16px}.icon-pending,.icon-ready{color:green}.icon-fail{color:red}body{margin:0;padding:0}#root{height:100%}.center{text-align:center}.error-image{display:block;margin:12% auto 60px}
|