From 75687711f35355bc30e4829439384aab28fcac6d Mon Sep 17 00:00:00 2001 From: href Date: Wed, 1 Sep 2021 10:30:18 +0200 Subject: Commit all the changes that hasn't been committed + updates. --- priv/static/css/metricsgraphics.css | 548 + priv/static/css/tailwind-ui.min.css | 1 + priv/static/js/d3.v4.min.js | 2 + priv/static/js/jquery3.1.0.min.js | 4 + priv/static/js/metricsgraphics.min.js | 1 + priv/static/js/metricsgraphics/MG.js | 1 + priv/static/js/metricsgraphics/charts/bar.js | 792 + priv/static/js/metricsgraphics/charts/histogram.js | 222 + priv/static/js/metricsgraphics/charts/line.js | 922 + priv/static/js/metricsgraphics/charts/missing.js | 144 + priv/static/js/metricsgraphics/charts/point.js | 383 + priv/static/js/metricsgraphics/charts/table.js | 220 + .../common/bootstrap_tooltip_popover.js | 626 + priv/static/js/metricsgraphics/common/brush.js | 126 + .../js/metricsgraphics/common/chart_title.js | 67 + .../js/metricsgraphics/common/data_graphic.js | 205 + priv/static/js/metricsgraphics/common/hooks.js | 63 + priv/static/js/metricsgraphics/common/init.js | 273 + priv/static/js/metricsgraphics/common/markers.js | 132 + priv/static/js/metricsgraphics/common/register.js | 16 + priv/static/js/metricsgraphics/common/rollover.js | 98 + priv/static/js/metricsgraphics/common/scales.js | 340 + .../js/metricsgraphics/common/window_listeners.js | 82 + priv/static/js/metricsgraphics/common/x_axis.js | 600 + priv/static/js/metricsgraphics/common/y_axis.js | 1072 + priv/static/js/metricsgraphics/common/zoom.js | 85 + .../metricsgraphics/layout/bootstrap_dropdown.js | 177 + priv/static/js/metricsgraphics/layout/button.js | 126 + priv/static/js/metricsgraphics/misc/error.js | 16 + priv/static/js/metricsgraphics/misc/formatters.js | 147 + priv/static/js/metricsgraphics/misc/markup.js | 66 + priv/static/js/metricsgraphics/misc/process.js | 368 + priv/static/js/metricsgraphics/misc/smoothers.js | 280 + priv/static/js/metricsgraphics/misc/transitions.js | 31 + priv/static/js/metricsgraphics/misc/utility.js | 619 + .../metrics-graphics-3.0-alpha3/.editorconfig | 32 + priv/static/metrics-graphics-3.0-alpha3/.gitignore | 17 + .../metrics-graphics-3.0-alpha3/.jshintignore | 2 + priv/static/metrics-graphics-3.0-alpha3/.jshintrc | 14 + .../static/metrics-graphics-3.0-alpha3/.travis.yml | 30 + .../metrics-graphics-3.0-alpha3/CHANGELOG.md | 343 + priv/static/metrics-graphics-3.0-alpha3/HOOKS.md | 18 + priv/static/metrics-graphics-3.0-alpha3/LICENSE | 362 + priv/static/metrics-graphics-3.0-alpha3/README.md | 146 + priv/static/metrics-graphics-3.0-alpha3/bower.json | 41 + .../metrics-graphics-3.0-alpha3/contribute.json | 30 + .../dist/metricsgraphics.js | 7697 +++++++ .../examples/charts/annotations.htm | 338 + .../examples/charts/auto-time-formatting.htm | 296 + .../examples/charts/axes.htm | 486 + .../examples/charts/brushing_zooming.htm | 166 + .../examples/charts/data.htm | 386 + .../examples/charts/experimental.htm | 1159 + .../examples/charts/lines.htm | 335 + .../examples/charts/multilines.htm | 368 + .../examples/charts/other.htm | 48 + .../examples/charts/rollovers.htm | 309 + .../examples/charts/updating.htm | 169 + .../examples/css/highlightjs-default.css | 153 + .../css/metricsgraphics-demo-accessible.css | 26 + .../examples/css/metricsgraphics-demo-dark.css | 686 + .../examples/css/metricsgraphics-demo.css | 220 + .../examples/css/railscasts.css | 187 + .../examples/data/brief-1.json | 402 + .../examples/data/brief-2.json | 402 + .../examples/data/confidence_band.json | 548 + .../examples/data/fake_users1.json | 483 + .../examples/data/fake_users2.json | 1448 ++ .../examples/data/fake_users3.json | 1448 ++ .../examples/data/firefox_releases.json | 168 + .../examples/data/float.json | 802 + .../examples/data/log.json | 802 + .../examples/data/make_fake_data.py | 56 + .../examples/data/missing-is-hidden-accessor.json | 57 + .../examples/data/missing-is-hidden-multi.json | 1436 ++ .../examples/data/missing-is-hidden.json | 39 + .../examples/data/missing-y.json | 35 + .../examples/data/multiline.json | 902 + .../examples/data/neg1.json | 602 + .../examples/data/neg2.json | 30 + .../examples/data/nh-gop.tsv | 6 + .../examples/data/points1.json | 802 + .../examples/data/small-range.json | 26 + .../examples/data/some_currency.json | 402 + .../examples/data/some_percentage.json | 482 + .../examples/data/split_by.json | 548 + .../examples/data/ufo-sightings.json | 266 + .../examples/data/ufo_dates.csv | 22841 +++++++++++++++++++ .../examples/data/xnotdate.json | 34 + .../examples/examples.htm | 113 + .../examples/images/divider.png | Bin 0 -> 2879 bytes .../examples/images/logo.svg | 242 + .../metrics-graphics-3.0-alpha3/examples/index.htm | 269 + .../examples/interactive-demo.htm | 236 + .../examples/js/lib/highlight.pack.js | 1 + .../examples/js/lib/mode-javascript.js | 1 + .../examples/js/lib/worker-javascript.js | 1 + .../examples/js/main.js | 125 + .../metrics-graphics-3.0-alpha3/gulp/index.js | 136 + .../static/metrics-graphics-3.0-alpha3/gulpfile.js | 3 + priv/static/metrics-graphics-3.0-alpha3/index.js | 1 + .../metrics-graphics-3.0-alpha3/package.json | 66 + .../metrics-graphics-3.0-alpha3/renovate.json | 8 + .../metrics-graphics-3.0-alpha3/src/index.html | 238 + .../src/scss/.gitignore | 0 .../static/metrics-graphics-3.0-alpha3/testem.json | 50 + .../tests/charts/bar_test.js | 95 + .../tests/charts/histogram_test.js | 64 + .../tests/charts/line_test.js | 289 + .../tests/charts/missing_test.js | 90 + .../tests/charts/point_test.js | 137 + .../tests/common/.gitkeep | 0 .../tests/common/chart_title_test.js | 93 + .../tests/common/data_graphic_test.js | 59 + .../tests/common/hooks_test.js | 159 + .../tests/common/init_test.js | 246 + .../tests/common/markers_test.js | 160 + .../tests/common/resize_test.js | 44 + .../tests/common/x_axis_test.js | 227 + .../tests/common/y_axis_test.js | 208 + .../metrics-graphics-3.0-alpha3/tests/helpers.js | 20 + .../tests/misc/.gitkeep | 0 .../tests/misc/process_test.js | 14 + .../tests/misc/utility_test.js | 90 + 124 files changed, 61471 insertions(+) create mode 100644 priv/static/css/metricsgraphics.css create mode 100644 priv/static/css/tailwind-ui.min.css create mode 100644 priv/static/js/d3.v4.min.js create mode 100644 priv/static/js/jquery3.1.0.min.js create mode 100644 priv/static/js/metricsgraphics.min.js create mode 100644 priv/static/js/metricsgraphics/MG.js create mode 100644 priv/static/js/metricsgraphics/charts/bar.js create mode 100644 priv/static/js/metricsgraphics/charts/histogram.js create mode 100644 priv/static/js/metricsgraphics/charts/line.js create mode 100644 priv/static/js/metricsgraphics/charts/missing.js create mode 100644 priv/static/js/metricsgraphics/charts/point.js create mode 100644 priv/static/js/metricsgraphics/charts/table.js create mode 100755 priv/static/js/metricsgraphics/common/bootstrap_tooltip_popover.js create mode 100644 priv/static/js/metricsgraphics/common/brush.js create mode 100644 priv/static/js/metricsgraphics/common/chart_title.js create mode 100644 priv/static/js/metricsgraphics/common/data_graphic.js create mode 100644 priv/static/js/metricsgraphics/common/hooks.js create mode 100644 priv/static/js/metricsgraphics/common/init.js create mode 100644 priv/static/js/metricsgraphics/common/markers.js create mode 100644 priv/static/js/metricsgraphics/common/register.js create mode 100644 priv/static/js/metricsgraphics/common/rollover.js create mode 100644 priv/static/js/metricsgraphics/common/scales.js create mode 100644 priv/static/js/metricsgraphics/common/window_listeners.js create mode 100644 priv/static/js/metricsgraphics/common/x_axis.js create mode 100644 priv/static/js/metricsgraphics/common/y_axis.js create mode 100644 priv/static/js/metricsgraphics/common/zoom.js create mode 100755 priv/static/js/metricsgraphics/layout/bootstrap_dropdown.js create mode 100644 priv/static/js/metricsgraphics/layout/button.js create mode 100644 priv/static/js/metricsgraphics/misc/error.js create mode 100644 priv/static/js/metricsgraphics/misc/formatters.js create mode 100644 priv/static/js/metricsgraphics/misc/markup.js create mode 100644 priv/static/js/metricsgraphics/misc/process.js create mode 100644 priv/static/js/metricsgraphics/misc/smoothers.js create mode 100644 priv/static/js/metricsgraphics/misc/transitions.js create mode 100644 priv/static/js/metricsgraphics/misc/utility.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/.editorconfig create mode 100644 priv/static/metrics-graphics-3.0-alpha3/.gitignore create mode 100644 priv/static/metrics-graphics-3.0-alpha3/.jshintignore create mode 100644 priv/static/metrics-graphics-3.0-alpha3/.jshintrc create mode 100644 priv/static/metrics-graphics-3.0-alpha3/.travis.yml create mode 100644 priv/static/metrics-graphics-3.0-alpha3/CHANGELOG.md create mode 100644 priv/static/metrics-graphics-3.0-alpha3/HOOKS.md create mode 100644 priv/static/metrics-graphics-3.0-alpha3/LICENSE create mode 100644 priv/static/metrics-graphics-3.0-alpha3/README.md create mode 100644 priv/static/metrics-graphics-3.0-alpha3/bower.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/contribute.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/dist/metricsgraphics.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/annotations.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/auto-time-formatting.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/axes.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/brushing_zooming.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/data.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/experimental.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/lines.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/multilines.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/rollovers.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/charts/updating.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/css/highlightjs-default.css create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-accessible.css create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-dark.css create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo.css create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/css/railscasts.css create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-1.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-2.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/confidence_band.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users1.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users2.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users3.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/firefox_releases.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/float.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/log.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/make_fake_data.py create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-accessor.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-multi.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-y.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/multiline.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/neg1.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/neg2.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/nh-gop.tsv create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/points1.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/small-range.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/some_currency.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/some_percentage.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/split_by.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo-sightings.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo_dates.csv create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/data/xnotdate.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/examples.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/images/divider.png create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/images/logo.svg create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/index.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/interactive-demo.htm create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/highlight.pack.js create mode 100755 priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/mode-javascript.js create mode 100755 priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/worker-javascript.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/examples/js/main.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/gulp/index.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/gulpfile.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/index.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/package.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/renovate.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/src/index.html create mode 100644 priv/static/metrics-graphics-3.0-alpha3/src/scss/.gitignore create mode 100644 priv/static/metrics-graphics-3.0-alpha3/testem.json create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/charts/bar_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/charts/histogram_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/charts/line_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/charts/missing_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/charts/point_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/.gitkeep create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/chart_title_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/data_graphic_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/hooks_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/init_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/markers_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/resize_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/x_axis_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/common/y_axis_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/helpers.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/misc/.gitkeep create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/misc/process_test.js create mode 100644 priv/static/metrics-graphics-3.0-alpha3/tests/misc/utility_test.js (limited to 'priv/static') diff --git a/priv/static/css/metricsgraphics.css b/priv/static/css/metricsgraphics.css new file mode 100644 index 0000000..a7d484b --- /dev/null +++ b/priv/static/css/metricsgraphics.css @@ -0,0 +1,548 @@ +.mg-active-datapoint { + fill: black; + font-size: 0.9rem; + font-weight: 400; + opacity: 0.8; +} + +.mg-area-color { + fill: #000; +} + +.mg-area1-color { + fill: #0000ff; +} + +.mg-area2-color { + fill: #05b378; +} + +.mg-area3-color { + fill: #db4437; +} + +.mg-area4-color { + fill: #f8b128; +} + +.mg-area5-color { + fill: #5c5c5c; +} + +.mg-area6-color { + fill: steelblue; +} + +.mg-area7-color { + fill: #f673bf; +} + +.mg-area8-color { + fill: #0b73b0; +} + +.mg-area9-color { + fill: #006400; +} + +.mg-area10-color { + fill: #92514f; +} + +text.mg-barplot-group-label { + font-weight:900; +} + +.mg-barplot rect.mg-bar { + shape-rendering: auto; +} + +.mg-barplot rect.mg-bar.default-bar { + fill: #b6b6fc; +} + +.mg-barplot rect.mg-bar.default-active { + fill: #9e9efc; +} + +.mg-barplot .mg-bar-prediction { + fill: #5b5b5b; +} + +.mg-barplot .mg-bar-baseline { + stroke: #5b5b5b; + stroke-width: 2; +} + +.mg-bar-target-element { + font-size:11px; + padding-left:5px; + padding-right:5px; + font-weight:300; +} + +.mg-baselines line { + opacity: 1; + shape-rendering: auto; + stroke: #b3b2b2; + stroke-width: 1px; +} + +.mg-baselines text { + fill: black; + font-size: 0.9rem; + opacity: 0.6; + stroke: none; +} + +.mg-baselines-small text { + font-size: 0.6rem; +} + +.mg-category-guides line { + stroke: #b3b2b2; +} + +.mg-header { + cursor: default; + font-size: 1.2rem; +} + +.mg-header .mg-chart-description { + fill: #ccc; + font-family: FontAwesome; + font-size: 1.2rem; +} + +.mg-header .mg-warning { + fill: #ccc; + font-family: FontAwesome; + font-size: 1.2rem; +} + +.mg-points circle { + opacity: 0.65; +} + +.mg-popover { + font-size: 0.95rem; +} + +.mg-popover-content { + cursor: auto; + line-height: 17px; +} + +.mg-data-table { + margin-top: 30px; +} + +.mg-data-table thead tr th { + border-bottom: 1px solid darkgray; + cursor: default; + font-size: 1.1rem; + font-weight: normal; + padding: 5px 5px 8px 5px; + text-align: right; +} + +.mg-data-table thead tr th .fa { + color: #ccc; + padding-left: 4px; +} + +.mg-data-table thead tr th .popover { + font-size: 1rem; + font-weight: normal; +} + +.mg-data-table .secondary-title { + color: darkgray; +} + +.mg-data-table tbody tr td { + margin: 2px; + padding: 5px; + vertical-align: top; +} + +.mg-data-table tbody tr td.table-text { + opacity: 0.8; + padding-left: 30px; +} + +.mg-y-axis line.mg-extended-yax-ticks { + opacity: 0.4; +} + +.mg-x-axis line.mg-extended-xax-ticks { + opacity: 0.4; +} + +.mg-histogram .axis path, +.mg-histogram .axis line { + fill: none; + opacity: 0.7; + shape-rendering: auto; + stroke: #ccc; +} + +tspan.hist-symbol { + fill: #9e9efc; +} + +.mg-histogram .mg-bar rect { + fill: #b6b6fc; + shape-rendering: auto; +} + +.mg-histogram .mg-bar rect.active { + fill: #9e9efc; +} + +.mg-least-squares-line { + stroke: red; + stroke-width: 1px; +} + +.mg-lowess-line { + fill: none; + stroke: red; +} + +.mg-rollover-rect * { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.mg-line-color { + stroke: #000; +} + +.mg-hover-line-color { + fill: #000; +} + +.mg-line1-color { + stroke: #4040e8; +} + +.mg-hover-line1-color { + fill: #4040e8; +} + +.mg-line2-color { + stroke: #05b378; +} + +.mg-hover-line2-color { + fill: #05b378; +} + +.mg-line3-color { + stroke: #db4437; +} + +.mg-hover-line3-color { + fill: #db4437; +} + +.mg-line4-color { + stroke: #f8b128; +} + +.mg-hover-line4-color { + fill: #f8b128; +} + +.mg-line5-color { + stroke: #5c5c5c; +} + +.mg-hover-line5-color { + fill: #5c5c5c; +} + +.mg-line6-color { + stroke: steelblue; +} + +.mg-hover-line6-color { + fill: steelblue; +} + +.mg-line7-color { + stroke: #f673bf; +} + +.mg-hover-line7-color { + fill: #f673bf; +} + +.mg-line8-color { + stroke: #0b73b0; +} + +.mg-hover-line8-color { + fill: #0b73b0; +} + +.mg-line9-color { + stroke: #006400; +} + +.mg-hover-line9-color { + fill: #006400; +} + +.mg-line10-color { + stroke: #92514f; +} + +.mg-hover-line10-color { + fill: #92514f ; +} + +.mg-line-legend text { + font-size: 0.9rem; + font-weight: 300; + stroke: none; +} + +.mg-line-legend-color { + color: #000; + fill: #000; +} + +.mg-line1-legend-color { + color: #4040e8; + fill: #4040e8; +} + +.mg-line2-legend-color { + color: #05b378; + fill: #05b378; +} + +.mg-line3-legend-color { + color: #db4437; + fill: #db4437; +} + +.mg-line4-legend-color { + color: #f8b128; + fill: #f8b128; +} + +.mg-line5-legend-color { + color: #5c5c5c; + fill: #5c5c5c; +} + +.mg-line6-legend-color { + color: steelblue; + fill: steelblue; +} + +.mg-line7-legend-color { + color: #f673bf; + fill: #f673bf; +} + +.mg-line8-legend-color { + color: #0b73b0; + fill: #0b73b0; +} + +.mg-line9-legend-color { + color: #006400; + fill: #006400; +} + +.mg-line10-legend-color { + color: #92514f; + fill: #92514f; +} + +.mg-main-area-solid svg .mg-main-area { + fill: #ccccff; + opacity: 1; +} + +.mg-markers line { + opacity: 1; + shape-rendering: auto; + stroke: #b3b2b2; + stroke-width: 1px; +} + +.mg-markers text { + fill: black; + font-size: 0.8rem; + opacity: 0.6; +} + +.mg-missing-text { + opacity: 0.9; +} + +.mg-missing-background { + stroke: blue; + fill: none; + stroke-dasharray: 10,5; + stroke-opacity: 0.05; + stroke-width: 2; +} + +.mg-missing .mg-main-line { + opacity: 0.1; +} + +.mg-missing .mg-main-area { + opacity: 0.03; +} + +path.mg-main-area { + opacity: 0.2; + stroke: none; +} + +path.mg-confidence-band { + fill: #ccc; + opacity: 0.4; + stroke: none; +} + +path.mg-main-line { + fill: none; + opacity: 0.8; + stroke-width: 1.1px; +} + +.mg-points circle { + fill-opacity: 0.4; + stroke-opacity: 1; +} + +circle.mg-points-mono { + fill: #0000ff; + stroke: #0000ff; +} + +tspan.mg-points-mono { + fill: #0000ff; + stroke: #0000ff; +} + +/* a selected point in a scatterplot */ +.mg-points circle.selected { + fill-opacity: 1; +} + +.mg-highlight circle { + fill-opacity: 0; + stroke-width: 4px; + stroke-opacity: 0.3; +} + +.mg-voronoi path { + fill: none; + pointer-events: all; + stroke: none; + stroke-opacity: 0.1; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.mg-x-rug-mono, +.mg-y-rug-mono { + stroke: black; +} + +.mg-x-axis line, +.mg-y-axis line { + opacity: 1; + shape-rendering: auto; + stroke: #b3b2b2; + stroke-width: 1px; +} + +.mg-x-axis text, +.mg-y-axis text, +.mg-histogram .axis text { + fill: black; + font-size: 0.9rem; + opacity: 0.6; +} + +.mg-x-axis .label, +.mg-y-axis .label, +.mg-axis .label { + font-size: 0.8rem; + text-transform: uppercase; + font-weight: 400; +} + +.mg-x-axis-small text, +.mg-y-axis-small text, +.mg-active-datapoint-small { + font-size: 0.6rem; +} + +.mg-x-axis-small .label, +.mg-y-axis-small .label { + font-size: 0.65rem; +} + +.mg-european-hours { +} + +.mg-year-marker text { + fill: black; + font-size: 0.7rem; + opacity: 0.6; +} + +.mg-year-marker line { + opacity: 1; + shape-rendering: auto; + stroke: #b3b2b2; + stroke-width: 1px; +} + +.mg-year-marker-small text { + font-size: 0.6rem; +} + +.mg-brush-container { + cursor: crosshair; +} + +.mg-brush-container .mg-brushing { + cursor: ew-resize; +} + +.mg-brushed, .mg-brushed * { + cursor: zoom-out; +} + +.mg-brush rect.mg-extent { + fill: rgba(0, 0, 0, 0.3); +} + +.mg-brushing-in-progress { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} diff --git a/priv/static/css/tailwind-ui.min.css b/priv/static/css/tailwind-ui.min.css new file mode 100644 index 0000000..003df1c --- /dev/null +++ b/priv/static/css/tailwind-ui.min.css @@ -0,0 +1 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";line-height:1.5}*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#d2d6dc}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:.75rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5}.form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.form-input:-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::placeholder{color:#9fa6b2;opacity:1}.form-input:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:.75rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5}.form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.form-textarea:-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::placeholder{color:#9fa6b2;opacity:1}.form-textarea:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:.75rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding-top:.5rem;padding-right:2.5rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#9fa6b2;border:none}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.25rem}.form-checkbox:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked:focus{border-color:transparent}.form-radio:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;border-radius:100%;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px}.form-radio:focus{outline:0;box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-radio:checked:focus{border-color:transparent}.prose{color:#374151;max-width:65ch}.prose [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose a{color:#5850ec;text-decoration:none;font-weight:600}.prose strong{color:#161e2e;font-weight:600}.prose ol{counter-reset:list-counter;margin-top:1.25em;margin-bottom:1.25em}.prose ol>li{position:relative;counter-increment:list-counter;padding-left:1.75em}.prose ol>li::before{content:counter(list-counter) ".";position:absolute;font-weight:400;color:#6b7280}.prose ul>li{position:relative;padding-left:1.75em}.prose ul>li::before{content:"";position:absolute;background-color:#d2d6dc;border-radius:50%;width:.375em;height:.375em;top:calc(.875em - .1875em);left:.25em}.prose hr{border-color:#e5e7eb;border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose blockquote{font-weight:500;font-style:italic;color:#161e2e;border-left-width:.25rem;border-left-color:#e5e7eb;quotes:"\201C""\201D""\2018""\2019";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.prose blockquote p:first-of-type::before{content:open-quote}.prose blockquote p:last-of-type::after{content:close-quote}.prose h1{color:#1a202c;font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose h2{color:#1a202c;font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose h3{color:#1a202c;font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose h4{color:#1a202c;font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose code{color:#161e2e;font-weight:600;font-size:.875em}.prose code::before{content:"`"}.prose code::after{content:"`"}.prose pre{color:#e5e7eb;background-color:#252f3f;overflow-x:auto;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-right:1.1428571em;padding-bottom:.8571429em;padding-left:1.1428571em}.prose pre code{background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:400;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose pre code::before{content:""}.prose pre code::after{content:""}.prose table{width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose thead{color:#161e2e;font-weight:600;border-bottom-width:1px;border-bottom-color:#d2d6dc}.prose thead th{vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.prose tbody tr{border-bottom-width:1px;border-bottom-color:#e5e7eb}.prose tbody tr:last-child{border-bottom-width:0}.prose tbody td{vertical-align:top;padding-top:.5714286em;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.prose{font-size:1rem;line-height:1.75}.prose p{margin-top:1.25em;margin-bottom:1.25em}.prose img{margin-top:2em;margin-bottom:2em}.prose video{margin-top:2em;margin-bottom:2em}.prose figure{margin-top:2em;margin-bottom:2em}.prose figure>*{margin-top:0;margin-bottom:0}.prose h2 code{font-size:.875em}.prose h3 code{font-size:.9em}.prose ul{margin-top:1.25em;margin-bottom:1.25em}.prose li{margin-top:.5em;margin-bottom:.5em}.prose ol>li:before{left:0}.prose>ul>li p{margin-top:.75em;margin-bottom:.75em}.prose>ul>li>:first-child{margin-top:1.25em}.prose>ul>li>:last-child{margin-bottom:1.25em}.prose>ol>li>:first-child{margin-top:1.25em}.prose>ol>li>:last-child{margin-bottom:1.25em}.prose ol ol,.prose ol ul,.prose ul ol,.prose ul ul{margin-top:.75em;margin-bottom:.75em}.prose hr+*{margin-top:0}.prose h2+*{margin-top:0}.prose h3+*{margin-top:0}.prose h4+*{margin-top:0}.prose thead th:first-child{padding-left:0}.prose thead th:last-child{padding-right:0}.prose tbody td:first-child{padding-left:0}.prose tbody td:last-child{padding-right:0}.prose>:first-child{margin-top:0}.prose>:last-child{margin-bottom:0}.prose h1,.prose h2,.prose h3,.prose h4{color:#161e2e}.prose-sm{font-size:.875rem;line-height:1.7142857}.prose-sm p{margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm [class~=lead]{font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.prose-sm blockquote{margin-top:1.3333333em;margin-bottom:1.3333333em;padding-left:1.1111111em}.prose-sm h1{font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.prose-sm h2{font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.prose-sm h3{font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.prose-sm h4{margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.prose-sm img{margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm video{margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm figure{margin-top:1.7142857em;margin-bottom:1.7142857em}.prose-sm figure>*{margin-top:0;margin-bottom:0}.prose-sm figure figcaption{font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.prose-sm code{font-size:.8571429em}.prose-sm h2 code{font-size:.9em}.prose-sm h3 code{font-size:.8888889em}.prose-sm pre{font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.prose-sm ol{margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm ul{margin-top:1.1428571em;margin-bottom:1.1428571em}.prose-sm li{margin-top:.2857143em;margin-bottom:.2857143em}.prose-sm ol>li{padding-left:1.5714286em}.prose-sm ol>li:before{left:0}.prose-sm ul>li{padding-left:1.5714286em}.prose-sm ul>li::before{height:.3571429em;width:.3571429em;top:calc(.8571429em - .1785714em);left:.2142857em}.prose-sm>ul>li p{margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm>ul>li>:first-child{margin-top:1.1428571em}.prose-sm>ul>li>:last-child{margin-bottom:1.1428571em}.prose-sm>ol>li>:first-child{margin-top:1.1428571em}.prose-sm>ol>li>:last-child{margin-bottom:1.1428571em}.prose-sm ol ol,.prose-sm ol ul,.prose-sm ul ol,.prose-sm ul ul{margin-top:.5714286em;margin-bottom:.5714286em}.prose-sm hr{margin-top:2.8571429em;margin-bottom:2.8571429em}.prose-sm hr+*{margin-top:0}.prose-sm h2+*{margin-top:0}.prose-sm h3+*{margin-top:0}.prose-sm h4+*{margin-top:0}.prose-sm table{font-size:.8571429em;line-height:1.5}.prose-sm thead th{padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.prose-sm thead th:first-child{padding-left:0}.prose-sm thead th:last-child{padding-right:0}.prose-sm tbody td{padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.prose-sm tbody td:first-child{padding-left:0}.prose-sm tbody td:last-child{padding-right:0}.prose-sm>:first-child{margin-top:0}.prose-sm>:last-child{margin-bottom:0}.prose-lg{font-size:1.125rem;line-height:1.7777778}.prose-lg p{margin-top:1.3333333em;margin-bottom:1.3333333em}.prose-lg [class~=lead]{font-size:1.2222222em;line-height:1.4545455;margin-top:1.0909091em;margin-bottom:1.0909091em}.prose-lg blockquote{margin-top:1.6666667em;margin-bottom:1.6666667em;padding-left:1em}.prose-lg h1{font-size:2.6666667em;margin-top:0;margin-bottom:.8333333em;line-height:1}.prose-lg h2{font-size:1.6666667em;margin-top:1.8666667em;margin-bottom:1.0666667em;line-height:1.3333333}.prose-lg h3{font-size:1.3333333em;margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.prose-lg h4{margin-top:1.7777778em;margin-bottom:.4444444em;line-height:1.5555556}.prose-lg img{margin-top:1.7777778em;margin-bottom:1.7777778em}.prose-lg video{margin-top:1.7777778em;margin-bottom:1.7777778em}.prose-lg figure{margin-top:1.7777778em;margin-bottom:1.7777778em}.prose-lg figure>*{margin-top:0;margin-bottom:0}.prose-lg figure figcaption{font-size:.8888889em;line-height:1.5;margin-top:1em}.prose-lg code{font-size:.8888889em}.prose-lg h2 code{font-size:.8666667em}.prose-lg h3 code{font-size:.875em}.prose-lg pre{font-size:.8888889em;line-height:1.75;margin-top:2em;margin-bottom:2em;border-radius:.375rem;padding-top:1em;padding-right:1.5em;padding-bottom:1em;padding-left:1.5em}.prose-lg ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.prose-lg ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.prose-lg li{margin-top:.6666667em;margin-bottom:.6666667em}.prose-lg ol>li{padding-left:1.6666667em}.prose-lg ol>li:before{left:0}.prose-lg ul>li{padding-left:1.6666667em}.prose-lg ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8888889em - .1666667em);left:.2222222em}.prose-lg>ul>li p{margin-top:.8888889em;margin-bottom:.8888889em}.prose-lg>ul>li>:first-child{margin-top:1.3333333em}.prose-lg>ul>li>:last-child{margin-bottom:1.3333333em}.prose-lg>ol>li>:first-child{margin-top:1.3333333em}.prose-lg>ol>li>:last-child{margin-bottom:1.3333333em}.prose-lg ol ol,.prose-lg ol ul,.prose-lg ul ol,.prose-lg ul ul{margin-top:.8888889em;margin-bottom:.8888889em}.prose-lg hr{margin-top:3.1111111em;margin-bottom:3.1111111em}.prose-lg hr+*{margin-top:0}.prose-lg h2+*{margin-top:0}.prose-lg h3+*{margin-top:0}.prose-lg h4+*{margin-top:0}.prose-lg table{font-size:.8888889em;line-height:1.5}.prose-lg thead th{padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.prose-lg thead th:first-child{padding-left:0}.prose-lg thead th:last-child{padding-right:0}.prose-lg tbody td{padding-top:.75em;padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.prose-lg tbody td:first-child{padding-left:0}.prose-lg tbody td:last-child{padding-right:0}.prose-lg>:first-child{margin-top:0}.prose-lg>:last-child{margin-bottom:0}.prose-xl{font-size:1.25rem;line-height:1.8}.prose-xl p{margin-top:1.2em;margin-bottom:1.2em}.prose-xl [class~=lead]{font-size:1.2em;line-height:1.5;margin-top:1em;margin-bottom:1em}.prose-xl blockquote{margin-top:1.6em;margin-bottom:1.6em;padding-left:1.0666667em}.prose-xl h1{font-size:2.8em;margin-top:0;margin-bottom:.8571429em;line-height:1}.prose-xl h2{font-size:1.8em;margin-top:1.5555556em;margin-bottom:.8888889em;line-height:1.1111111}.prose-xl h3{font-size:1.5em;margin-top:1.6em;margin-bottom:.6666667em;line-height:1.3333333}.prose-xl h4{margin-top:1.8em;margin-bottom:.6em;line-height:1.6}.prose-xl img{margin-top:2em;margin-bottom:2em}.prose-xl video{margin-top:2em;margin-bottom:2em}.prose-xl figure{margin-top:2em;margin-bottom:2em}.prose-xl figure>*{margin-top:0;margin-bottom:0}.prose-xl figure figcaption{font-size:.9em;line-height:1.5555556;margin-top:1em}.prose-xl code{font-size:.9em}.prose-xl h2 code{font-size:.8611111em}.prose-xl h3 code{font-size:.9em}.prose-xl pre{font-size:.9em;line-height:1.7777778;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.1111111em;padding-right:1.3333333em;padding-bottom:1.1111111em;padding-left:1.3333333em}.prose-xl ol{margin-top:1.2em;margin-bottom:1.2em}.prose-xl ul{margin-top:1.2em;margin-bottom:1.2em}.prose-xl li{margin-top:.6em;margin-bottom:.6em}.prose-xl ol>li{padding-left:1.8em}.prose-xl ol>li:before{left:0}.prose-xl ul>li{padding-left:1.8em}.prose-xl ul>li::before{width:.35em;height:.35em;top:calc(.9em - .175em);left:.25em}.prose-xl>ul>li p{margin-top:.8em;margin-bottom:.8em}.prose-xl>ul>li>:first-child{margin-top:1.2em}.prose-xl>ul>li>:last-child{margin-bottom:1.2em}.prose-xl>ol>li>:first-child{margin-top:1.2em}.prose-xl>ol>li>:last-child{margin-bottom:1.2em}.prose-xl ol ol,.prose-xl ol ul,.prose-xl ul ol,.prose-xl ul ul{margin-top:.8em;margin-bottom:.8em}.prose-xl hr{margin-top:2.8em;margin-bottom:2.8em}.prose-xl hr+*{margin-top:0}.prose-xl h2+*{margin-top:0}.prose-xl h3+*{margin-top:0}.prose-xl h4+*{margin-top:0}.prose-xl table{font-size:.9em;line-height:1.5555556}.prose-xl thead th{padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.prose-xl thead th:first-child{padding-left:0}.prose-xl thead th:last-child{padding-right:0}.prose-xl tbody td{padding-top:.8888889em;padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.prose-xl tbody td:first-child{padding-left:0}.prose-xl tbody td:last-child{padding-right:0}.prose-xl>:first-child{margin-top:0}.prose-xl>:last-child{margin-bottom:0}.prose-2xl{font-size:1.5rem;line-height:1.6666667}.prose-2xl p{margin-top:1.3333333em;margin-bottom:1.3333333em}.prose-2xl [class~=lead]{font-size:1.25em;line-height:1.4666667;margin-top:1.0666667em;margin-bottom:1.0666667em}.prose-2xl blockquote{margin-top:1.7777778em;margin-bottom:1.7777778em;padding-left:1.1111111em}.prose-2xl h1{font-size:2.6666667em;margin-top:0;margin-bottom:.875em;line-height:1}.prose-2xl h2{font-size:2em;margin-top:1.5em;margin-bottom:.8333333em;line-height:1.0833333}.prose-2xl h3{font-size:1.5em;margin-top:1.5555556em;margin-bottom:.6666667em;line-height:1.2222222}.prose-2xl h4{margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.prose-2xl img{margin-top:2em;margin-bottom:2em}.prose-2xl video{margin-top:2em;margin-bottom:2em}.prose-2xl figure{margin-top:2em;margin-bottom:2em}.prose-2xl figure>*{margin-top:0;margin-bottom:0}.prose-2xl figure figcaption{font-size:.8333333em;line-height:1.6;margin-top:1em}.prose-2xl code{font-size:.8333333em}.prose-2xl h2 code{font-size:.875em}.prose-2xl h3 code{font-size:.8888889em}.prose-2xl pre{font-size:.8333333em;line-height:1.8;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.2em;padding-right:1.6em;padding-bottom:1.2em;padding-left:1.6em}.prose-2xl ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.prose-2xl ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.prose-2xl li{margin-top:.5em;margin-bottom:.5em}.prose-2xl ol>li{padding-left:1.6666667em}.prose-2xl ol>li:before{left:0}.prose-2xl ul>li{padding-left:1.6666667em}.prose-2xl ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8333333em - .1666667em);left:.25em}.prose-2xl>ul>li p{margin-top:.8333333em;margin-bottom:.8333333em}.prose-2xl>ul>li>:first-child{margin-top:1.3333333em}.prose-2xl>ul>li>:last-child{margin-bottom:1.3333333em}.prose-2xl>ol>li>:first-child{margin-top:1.3333333em}.prose-2xl>ol>li>:last-child{margin-bottom:1.3333333em}.prose-2xl ol ol,.prose-2xl ol ul,.prose-2xl ul ol,.prose-2xl ul ul{margin-top:.6666667em;margin-bottom:.6666667em}.prose-2xl hr{margin-top:3em;margin-bottom:3em}.prose-2xl hr+*{margin-top:0}.prose-2xl h2+*{margin-top:0}.prose-2xl h3+*{margin-top:0}.prose-2xl h4+*{margin-top:0}.prose-2xl table{font-size:.8333333em;line-height:1.4}.prose-2xl thead th{padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.prose-2xl thead th:first-child{padding-left:0}.prose-2xl thead th:last-child{padding-right:0}.prose-2xl tbody td{padding-top:.8em;padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.prose-2xl tbody td:first-child{padding-left:0}.prose-2xl tbody td:last-child{padding-right:0}.prose-2xl>:first-child{margin-top:0}.prose-2xl>:last-child{margin-bottom:0}.space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.space-x-0>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0px * var(--space-x-reverse));margin-left:calc(0px * calc(1 - var(--space-x-reverse)))}.space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.25rem * var(--space-y-reverse))}.space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.25rem * var(--space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--space-x-reverse)))}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.5rem * var(--space-y-reverse))}.space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.75rem * var(--space-y-reverse))}.space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.75rem * var(--space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1rem * var(--space-y-reverse))}.space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem * var(--space-y-reverse))}.space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.25rem * var(--space-x-reverse));margin-left:calc(1.25rem * calc(1 - var(--space-x-reverse)))}.space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.5rem * var(--space-y-reverse))}.space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem * var(--space-x-reverse));margin-left:calc(1.5rem * calc(1 - var(--space-x-reverse)))}.space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.75rem * var(--space-y-reverse))}.space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.75rem * var(--space-x-reverse));margin-left:calc(1.75rem * calc(1 - var(--space-x-reverse)))}.space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2rem * var(--space-y-reverse))}.space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.25rem * var(--space-y-reverse))}.space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.25rem * var(--space-x-reverse));margin-left:calc(2.25rem * calc(1 - var(--space-x-reverse)))}.space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.5rem * var(--space-y-reverse))}.space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.5rem * var(--space-x-reverse));margin-left:calc(2.5rem * calc(1 - var(--space-x-reverse)))}.space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.75rem * var(--space-y-reverse))}.space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.75rem * var(--space-x-reverse));margin-left:calc(2.75rem * calc(1 - var(--space-x-reverse)))}.space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3rem * var(--space-y-reverse))}.space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3rem * var(--space-x-reverse));margin-left:calc(3rem * calc(1 - var(--space-x-reverse)))}.space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.25rem * var(--space-y-reverse))}.space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.25rem * var(--space-x-reverse));margin-left:calc(3.25rem * calc(1 - var(--space-x-reverse)))}.space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.5rem * var(--space-y-reverse))}.space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.5rem * var(--space-x-reverse));margin-left:calc(3.5rem * calc(1 - var(--space-x-reverse)))}.space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.75rem * var(--space-y-reverse))}.space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.75rem * var(--space-x-reverse));margin-left:calc(3.75rem * calc(1 - var(--space-x-reverse)))}.space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(4rem * var(--space-y-reverse))}.space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(5rem * var(--space-y-reverse))}.space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(5rem * var(--space-x-reverse));margin-left:calc(5rem * calc(1 - var(--space-x-reverse)))}.space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(6rem * var(--space-y-reverse))}.space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(6rem * var(--space-x-reverse));margin-left:calc(6rem * calc(1 - var(--space-x-reverse)))}.space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(7rem * var(--space-y-reverse))}.space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(7rem * var(--space-x-reverse));margin-left:calc(7rem * calc(1 - var(--space-x-reverse)))}.space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8rem * var(--space-y-reverse))}.space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8rem * var(--space-x-reverse));margin-left:calc(8rem * calc(1 - var(--space-x-reverse)))}.space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(9rem * var(--space-y-reverse))}.space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(9rem * var(--space-x-reverse));margin-left:calc(9rem * calc(1 - var(--space-x-reverse)))}.space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(10rem * var(--space-y-reverse))}.space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(10rem * var(--space-x-reverse));margin-left:calc(10rem * calc(1 - var(--space-x-reverse)))}.space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(11rem * var(--space-y-reverse))}.space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(11rem * var(--space-x-reverse));margin-left:calc(11rem * calc(1 - var(--space-x-reverse)))}.space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(12rem * var(--space-y-reverse))}.space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(12rem * var(--space-x-reverse));margin-left:calc(12rem * calc(1 - var(--space-x-reverse)))}.space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(13rem * var(--space-y-reverse))}.space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(13rem * var(--space-x-reverse));margin-left:calc(13rem * calc(1 - var(--space-x-reverse)))}.space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(14rem * var(--space-y-reverse))}.space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(14rem * var(--space-x-reverse));margin-left:calc(14rem * calc(1 - var(--space-x-reverse)))}.space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(15rem * var(--space-y-reverse))}.space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(15rem * var(--space-x-reverse));margin-left:calc(15rem * calc(1 - var(--space-x-reverse)))}.space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16rem * var(--space-y-reverse))}.space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16rem * var(--space-x-reverse));margin-left:calc(16rem * calc(1 - var(--space-x-reverse)))}.space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(18rem * var(--space-y-reverse))}.space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(18rem * var(--space-x-reverse));margin-left:calc(18rem * calc(1 - var(--space-x-reverse)))}.space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20rem * var(--space-y-reverse))}.space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20rem * var(--space-x-reverse));margin-left:calc(20rem * calc(1 - var(--space-x-reverse)))}.space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(24rem * var(--space-y-reverse))}.space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(24rem * var(--space-x-reverse));margin-left:calc(24rem * calc(1 - var(--space-x-reverse)))}.space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1px * var(--space-y-reverse))}.space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1px * var(--space-x-reverse));margin-left:calc(1px * calc(1 - var(--space-x-reverse)))}.space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.125rem * var(--space-y-reverse))}.space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.125rem * var(--space-x-reverse));margin-left:calc(.125rem * calc(1 - var(--space-x-reverse)))}.space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.375rem * var(--space-y-reverse))}.space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.375rem * var(--space-x-reverse));margin-left:calc(.375rem * calc(1 - var(--space-x-reverse)))}.space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.625rem * var(--space-y-reverse))}.space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.625rem * var(--space-x-reverse));margin-left:calc(.625rem * calc(1 - var(--space-x-reverse)))}.space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.875rem * var(--space-y-reverse))}.space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.875rem * var(--space-x-reverse));margin-left:calc(.875rem * calc(1 - var(--space-x-reverse)))}.space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20% * var(--space-y-reverse))}.space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20% * var(--space-x-reverse));margin-left:calc(20% * calc(1 - var(--space-x-reverse)))}.space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(40% * var(--space-y-reverse))}.space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(40% * var(--space-x-reverse));margin-left:calc(40% * calc(1 - var(--space-x-reverse)))}.space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(60% * var(--space-y-reverse))}.space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(60% * var(--space-x-reverse));margin-left:calc(60% * calc(1 - var(--space-x-reverse)))}.space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(80% * var(--space-y-reverse))}.space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(80% * var(--space-x-reverse));margin-left:calc(80% * calc(1 - var(--space-x-reverse)))}.space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8.333333% * var(--space-y-reverse))}.space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8.333333% * var(--space-x-reverse));margin-left:calc(8.333333% * calc(1 - var(--space-x-reverse)))}.space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(41.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(41.666667% * var(--space-y-reverse))}.space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(41.666667% * var(--space-x-reverse));margin-left:calc(41.666667% * calc(1 - var(--space-x-reverse)))}.space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(58.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(58.333333% * var(--space-y-reverse))}.space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(58.333333% * var(--space-x-reverse));margin-left:calc(58.333333% * calc(1 - var(--space-x-reverse)))}.space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(91.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(91.666667% * var(--space-y-reverse))}.space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(91.666667% * var(--space-x-reverse));margin-left:calc(91.666667% * calc(1 - var(--space-x-reverse)))}.space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(100% * var(--space-y-reverse))}.space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(100% * var(--space-x-reverse));margin-left:calc(100% * calc(1 - var(--space-x-reverse)))}.-space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.25rem * var(--space-y-reverse))}.-space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.25rem * var(--space-x-reverse));margin-left:calc(-.25rem * calc(1 - var(--space-x-reverse)))}.-space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.5rem * var(--space-y-reverse))}.-space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.5rem * var(--space-x-reverse));margin-left:calc(-.5rem * calc(1 - var(--space-x-reverse)))}.-space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.75rem * var(--space-y-reverse))}.-space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.75rem * var(--space-x-reverse));margin-left:calc(-.75rem * calc(1 - var(--space-x-reverse)))}.-space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1rem * var(--space-y-reverse))}.-space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1rem * var(--space-x-reverse));margin-left:calc(-1rem * calc(1 - var(--space-x-reverse)))}.-space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.25rem * var(--space-y-reverse))}.-space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.25rem * var(--space-x-reverse));margin-left:calc(-1.25rem * calc(1 - var(--space-x-reverse)))}.-space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.5rem * var(--space-y-reverse))}.-space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.5rem * var(--space-x-reverse));margin-left:calc(-1.5rem * calc(1 - var(--space-x-reverse)))}.-space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.75rem * var(--space-y-reverse))}.-space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.75rem * var(--space-x-reverse));margin-left:calc(-1.75rem * calc(1 - var(--space-x-reverse)))}.-space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2rem * var(--space-y-reverse))}.-space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2rem * var(--space-x-reverse));margin-left:calc(-2rem * calc(1 - var(--space-x-reverse)))}.-space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.25rem * var(--space-y-reverse))}.-space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.25rem * var(--space-x-reverse));margin-left:calc(-2.25rem * calc(1 - var(--space-x-reverse)))}.-space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.5rem * var(--space-y-reverse))}.-space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.5rem * var(--space-x-reverse));margin-left:calc(-2.5rem * calc(1 - var(--space-x-reverse)))}.-space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.75rem * var(--space-y-reverse))}.-space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.75rem * var(--space-x-reverse));margin-left:calc(-2.75rem * calc(1 - var(--space-x-reverse)))}.-space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3rem * var(--space-y-reverse))}.-space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3rem * var(--space-x-reverse));margin-left:calc(-3rem * calc(1 - var(--space-x-reverse)))}.-space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.25rem * var(--space-y-reverse))}.-space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.25rem * var(--space-x-reverse));margin-left:calc(-3.25rem * calc(1 - var(--space-x-reverse)))}.-space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.5rem * var(--space-y-reverse))}.-space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.5rem * var(--space-x-reverse));margin-left:calc(-3.5rem * calc(1 - var(--space-x-reverse)))}.-space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.75rem * var(--space-y-reverse))}.-space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.75rem * var(--space-x-reverse));margin-left:calc(-3.75rem * calc(1 - var(--space-x-reverse)))}.-space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-4rem * var(--space-y-reverse))}.-space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-4rem * var(--space-x-reverse));margin-left:calc(-4rem * calc(1 - var(--space-x-reverse)))}.-space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-5rem * var(--space-y-reverse))}.-space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-5rem * var(--space-x-reverse));margin-left:calc(-5rem * calc(1 - var(--space-x-reverse)))}.-space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-6rem * var(--space-y-reverse))}.-space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-6rem * var(--space-x-reverse));margin-left:calc(-6rem * calc(1 - var(--space-x-reverse)))}.-space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-7rem * var(--space-y-reverse))}.-space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-7rem * var(--space-x-reverse));margin-left:calc(-7rem * calc(1 - var(--space-x-reverse)))}.-space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8rem * var(--space-y-reverse))}.-space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8rem * var(--space-x-reverse));margin-left:calc(-8rem * calc(1 - var(--space-x-reverse)))}.-space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-9rem * var(--space-y-reverse))}.-space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-9rem * var(--space-x-reverse));margin-left:calc(-9rem * calc(1 - var(--space-x-reverse)))}.-space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-10rem * var(--space-y-reverse))}.-space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-10rem * var(--space-x-reverse));margin-left:calc(-10rem * calc(1 - var(--space-x-reverse)))}.-space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-11rem * var(--space-y-reverse))}.-space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-11rem * var(--space-x-reverse));margin-left:calc(-11rem * calc(1 - var(--space-x-reverse)))}.-space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-12rem * var(--space-y-reverse))}.-space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-12rem * var(--space-x-reverse));margin-left:calc(-12rem * calc(1 - var(--space-x-reverse)))}.-space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-13rem * var(--space-y-reverse))}.-space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-13rem * var(--space-x-reverse));margin-left:calc(-13rem * calc(1 - var(--space-x-reverse)))}.-space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-14rem * var(--space-y-reverse))}.-space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-14rem * var(--space-x-reverse));margin-left:calc(-14rem * calc(1 - var(--space-x-reverse)))}.-space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-15rem * var(--space-y-reverse))}.-space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-15rem * var(--space-x-reverse));margin-left:calc(-15rem * calc(1 - var(--space-x-reverse)))}.-space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16rem * var(--space-y-reverse))}.-space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16rem * var(--space-x-reverse));margin-left:calc(-16rem * calc(1 - var(--space-x-reverse)))}.-space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-18rem * var(--space-y-reverse))}.-space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-18rem * var(--space-x-reverse));margin-left:calc(-18rem * calc(1 - var(--space-x-reverse)))}.-space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20rem * var(--space-y-reverse))}.-space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20rem * var(--space-x-reverse));margin-left:calc(-20rem * calc(1 - var(--space-x-reverse)))}.-space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-24rem * var(--space-y-reverse))}.-space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-24rem * var(--space-x-reverse));margin-left:calc(-24rem * calc(1 - var(--space-x-reverse)))}.-space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1px * var(--space-y-reverse))}.-space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1px * var(--space-x-reverse));margin-left:calc(-1px * calc(1 - var(--space-x-reverse)))}.-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.125rem * var(--space-y-reverse))}.-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.125rem * var(--space-x-reverse));margin-left:calc(-.125rem * calc(1 - var(--space-x-reverse)))}.-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.375rem * var(--space-y-reverse))}.-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.375rem * var(--space-x-reverse));margin-left:calc(-.375rem * calc(1 - var(--space-x-reverse)))}.-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.625rem * var(--space-y-reverse))}.-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.625rem * var(--space-x-reverse));margin-left:calc(-.625rem * calc(1 - var(--space-x-reverse)))}.-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.875rem * var(--space-y-reverse))}.-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.875rem * var(--space-x-reverse));margin-left:calc(-.875rem * calc(1 - var(--space-x-reverse)))}.-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20% * var(--space-y-reverse))}.-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20% * var(--space-x-reverse));margin-left:calc(-20% * calc(1 - var(--space-x-reverse)))}.-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-40% * var(--space-y-reverse))}.-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-40% * var(--space-x-reverse));margin-left:calc(-40% * calc(1 - var(--space-x-reverse)))}.-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-60% * var(--space-y-reverse))}.-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-60% * var(--space-x-reverse));margin-left:calc(-60% * calc(1 - var(--space-x-reverse)))}.-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-80% * var(--space-y-reverse))}.-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-80% * var(--space-x-reverse));margin-left:calc(-80% * calc(1 - var(--space-x-reverse)))}.-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8.33333% * var(--space-y-reverse))}.-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8.33333% * var(--space-x-reverse));margin-left:calc(-8.33333% * calc(1 - var(--space-x-reverse)))}.-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-41.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-41.66667% * var(--space-y-reverse))}.-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-41.66667% * var(--space-x-reverse));margin-left:calc(-41.66667% * calc(1 - var(--space-x-reverse)))}.-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-58.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-58.33333% * var(--space-y-reverse))}.-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-58.33333% * var(--space-x-reverse));margin-left:calc(-58.33333% * calc(1 - var(--space-x-reverse)))}.-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-91.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-91.66667% * var(--space-y-reverse))}.-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-91.66667% * var(--space-x-reverse));margin-left:calc(-91.66667% * calc(1 - var(--space-x-reverse)))}.-space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-100% * var(--space-y-reverse))}.-space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-100% * var(--space-x-reverse));margin-left:calc(-100% * calc(1 - var(--space-x-reverse)))}.space-y-reverse>:not(template)~:not(template){--space-y-reverse:1}.space-x-reverse>:not(template)~:not(template){--space-x-reverse:1}.divide-y-0>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(0px * var(--divide-y-reverse))}.divide-x-0>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(0px * var(--divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--divide-x-reverse)))}.divide-y-2>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(2px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(2px * var(--divide-y-reverse))}.divide-x-2>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(2px * var(--divide-x-reverse));border-left-width:calc(2px * calc(1 - var(--divide-x-reverse)))}.divide-y-4>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(4px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(4px * var(--divide-y-reverse))}.divide-x-4>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(4px * var(--divide-x-reverse));border-left-width:calc(4px * calc(1 - var(--divide-x-reverse)))}.divide-y-8>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(8px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(8px * var(--divide-y-reverse))}.divide-x-8>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(8px * var(--divide-x-reverse));border-left-width:calc(8px * calc(1 - var(--divide-x-reverse)))}.divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px * var(--divide-y-reverse))}.divide-x>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}.divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1}.divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1}.divide-transparent>:not(template)~:not(template){border-color:transparent}.divide-white>:not(template)~:not(template){--divide-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--divide-opacity))}.divide-black>:not(template)~:not(template){--divide-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--divide-opacity))}.divide-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--divide-opacity))}.divide-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--divide-opacity))}.divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.divide-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--divide-opacity))}.divide-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--divide-opacity))}.divide-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--divide-opacity))}.divide-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--divide-opacity))}.divide-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--divide-opacity))}.divide-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--divide-opacity))}.divide-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--divide-opacity))}.divide-cool-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--divide-opacity))}.divide-cool-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--divide-opacity))}.divide-cool-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--divide-opacity))}.divide-cool-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--divide-opacity))}.divide-cool-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--divide-opacity))}.divide-cool-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--divide-opacity))}.divide-cool-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--divide-opacity))}.divide-cool-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--divide-opacity))}.divide-cool-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--divide-opacity))}.divide-cool-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--divide-opacity))}.divide-red-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--divide-opacity))}.divide-red-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--divide-opacity))}.divide-red-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--divide-opacity))}.divide-red-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--divide-opacity))}.divide-red-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--divide-opacity))}.divide-red-500>:not(template)~:not(template){--divide-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--divide-opacity))}.divide-red-600>:not(template)~:not(template){--divide-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--divide-opacity))}.divide-red-700>:not(template)~:not(template){--divide-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--divide-opacity))}.divide-red-800>:not(template)~:not(template){--divide-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--divide-opacity))}.divide-red-900>:not(template)~:not(template){--divide-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--divide-opacity))}.divide-orange-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--divide-opacity))}.divide-orange-100>:not(template)~:not(template){--divide-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--divide-opacity))}.divide-orange-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--divide-opacity))}.divide-orange-300>:not(template)~:not(template){--divide-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--divide-opacity))}.divide-orange-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--divide-opacity))}.divide-orange-500>:not(template)~:not(template){--divide-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--divide-opacity))}.divide-orange-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--divide-opacity))}.divide-orange-700>:not(template)~:not(template){--divide-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--divide-opacity))}.divide-orange-800>:not(template)~:not(template){--divide-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--divide-opacity))}.divide-orange-900>:not(template)~:not(template){--divide-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--divide-opacity))}.divide-yellow-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--divide-opacity))}.divide-yellow-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--divide-opacity))}.divide-yellow-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--divide-opacity))}.divide-yellow-300>:not(template)~:not(template){--divide-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--divide-opacity))}.divide-yellow-400>:not(template)~:not(template){--divide-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--divide-opacity))}.divide-yellow-500>:not(template)~:not(template){--divide-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--divide-opacity))}.divide-yellow-600>:not(template)~:not(template){--divide-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--divide-opacity))}.divide-yellow-700>:not(template)~:not(template){--divide-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--divide-opacity))}.divide-yellow-800>:not(template)~:not(template){--divide-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--divide-opacity))}.divide-yellow-900>:not(template)~:not(template){--divide-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--divide-opacity))}.divide-green-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--divide-opacity))}.divide-green-100>:not(template)~:not(template){--divide-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--divide-opacity))}.divide-green-200>:not(template)~:not(template){--divide-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--divide-opacity))}.divide-green-300>:not(template)~:not(template){--divide-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--divide-opacity))}.divide-green-400>:not(template)~:not(template){--divide-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--divide-opacity))}.divide-green-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--divide-opacity))}.divide-green-600>:not(template)~:not(template){--divide-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--divide-opacity))}.divide-green-700>:not(template)~:not(template){--divide-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--divide-opacity))}.divide-green-800>:not(template)~:not(template){--divide-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--divide-opacity))}.divide-green-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--divide-opacity))}.divide-teal-50>:not(template)~:not(template){--divide-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--divide-opacity))}.divide-teal-100>:not(template)~:not(template){--divide-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--divide-opacity))}.divide-teal-200>:not(template)~:not(template){--divide-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--divide-opacity))}.divide-teal-300>:not(template)~:not(template){--divide-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--divide-opacity))}.divide-teal-400>:not(template)~:not(template){--divide-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--divide-opacity))}.divide-teal-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--divide-opacity))}.divide-teal-600>:not(template)~:not(template){--divide-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--divide-opacity))}.divide-teal-700>:not(template)~:not(template){--divide-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--divide-opacity))}.divide-teal-800>:not(template)~:not(template){--divide-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--divide-opacity))}.divide-teal-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--divide-opacity))}.divide-blue-50>:not(template)~:not(template){--divide-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--divide-opacity))}.divide-blue-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--divide-opacity))}.divide-blue-200>:not(template)~:not(template){--divide-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--divide-opacity))}.divide-blue-300>:not(template)~:not(template){--divide-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--divide-opacity))}.divide-blue-400>:not(template)~:not(template){--divide-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--divide-opacity))}.divide-blue-500>:not(template)~:not(template){--divide-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--divide-opacity))}.divide-blue-600>:not(template)~:not(template){--divide-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--divide-opacity))}.divide-blue-700>:not(template)~:not(template){--divide-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--divide-opacity))}.divide-blue-800>:not(template)~:not(template){--divide-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--divide-opacity))}.divide-blue-900>:not(template)~:not(template){--divide-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--divide-opacity))}.divide-indigo-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--divide-opacity))}.divide-indigo-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--divide-opacity))}.divide-indigo-200>:not(template)~:not(template){--divide-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--divide-opacity))}.divide-indigo-300>:not(template)~:not(template){--divide-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--divide-opacity))}.divide-indigo-400>:not(template)~:not(template){--divide-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--divide-opacity))}.divide-indigo-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--divide-opacity))}.divide-indigo-600>:not(template)~:not(template){--divide-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--divide-opacity))}.divide-indigo-700>:not(template)~:not(template){--divide-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--divide-opacity))}.divide-indigo-800>:not(template)~:not(template){--divide-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--divide-opacity))}.divide-indigo-900>:not(template)~:not(template){--divide-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--divide-opacity))}.divide-purple-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--divide-opacity))}.divide-purple-100>:not(template)~:not(template){--divide-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--divide-opacity))}.divide-purple-200>:not(template)~:not(template){--divide-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--divide-opacity))}.divide-purple-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--divide-opacity))}.divide-purple-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--divide-opacity))}.divide-purple-500>:not(template)~:not(template){--divide-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--divide-opacity))}.divide-purple-600>:not(template)~:not(template){--divide-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--divide-opacity))}.divide-purple-700>:not(template)~:not(template){--divide-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--divide-opacity))}.divide-purple-800>:not(template)~:not(template){--divide-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--divide-opacity))}.divide-purple-900>:not(template)~:not(template){--divide-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--divide-opacity))}.divide-pink-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--divide-opacity))}.divide-pink-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--divide-opacity))}.divide-pink-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--divide-opacity))}.divide-pink-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--divide-opacity))}.divide-pink-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--divide-opacity))}.divide-pink-500>:not(template)~:not(template){--divide-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--divide-opacity))}.divide-pink-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--divide-opacity))}.divide-pink-700>:not(template)~:not(template){--divide-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--divide-opacity))}.divide-pink-800>:not(template)~:not(template){--divide-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--divide-opacity))}.divide-pink-900>:not(template)~:not(template){--divide-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--divide-opacity))}.divide-opacity-0>:not(template)~:not(template){--divide-opacity:0}.divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25}.divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5}.divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75}.divide-opacity-100>:not(template)~:not(template){--divide-opacity:1}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.focus\:sr-only:focus{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.focus\:not-sr-only:focus{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.bg-fixed{background-attachment:fixed}.bg-local{background-attachment:local}.bg-scroll{background-attachment:scroll}.bg-transparent{background-color:transparent}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:hover .group-hover\:bg-transparent{background-color:transparent}.group:hover .group-hover\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:hover .group-hover\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:hover .group-hover\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:hover .group-hover\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:hover .group-hover\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:hover .group-hover\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:hover .group-hover\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:hover .group-hover\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:hover .group-hover\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:hover .group-hover\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:hover .group-hover\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:hover .group-hover\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:hover .group-hover\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:hover .group-hover\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:hover .group-hover\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:hover .group-hover\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:hover .group-hover\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:hover .group-hover\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:hover .group-hover\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:hover .group-hover\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:hover .group-hover\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:hover .group-hover\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:hover .group-hover\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:hover .group-hover\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:hover .group-hover\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:hover .group-hover\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:hover .group-hover\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:hover .group-hover\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:hover .group-hover\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:hover .group-hover\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:hover .group-hover\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:focus .group-focus\:bg-transparent{background-color:transparent}.group:focus .group-focus\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:focus .group-focus\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:focus .group-focus\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:focus .group-focus\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:focus .group-focus\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:focus .group-focus\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:focus .group-focus\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:focus .group-focus\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:focus .group-focus\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:focus .group-focus\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:focus .group-focus\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:focus .group-focus\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:focus .group-focus\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:focus .group-focus\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:focus .group-focus\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:focus .group-focus\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:focus .group-focus\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:focus .group-focus\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:focus .group-focus\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:focus .group-focus\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:focus .group-focus\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:focus .group-focus\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:focus .group-focus\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:focus .group-focus\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:focus .group-focus\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:focus .group-focus\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:focus .group-focus\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:focus .group-focus\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:focus .group-focus\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:focus .group-focus\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.hover\:bg-transparent:hover{background-color:transparent}.hover\:bg-white:hover{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.hover\:bg-black:hover{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.hover\:bg-gray-200:hover{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.hover\:bg-gray-400:hover{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.hover\:bg-gray-500:hover{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.hover\:bg-gray-600:hover{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.hover\:bg-gray-700:hover{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.hover\:bg-gray-900:hover{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.hover\:bg-cool-gray-50:hover{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.hover\:bg-cool-gray-100:hover{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.hover\:bg-cool-gray-200:hover{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.hover\:bg-cool-gray-300:hover{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.hover\:bg-cool-gray-400:hover{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.hover\:bg-cool-gray-500:hover{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.hover\:bg-cool-gray-600:hover{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.hover\:bg-cool-gray-700:hover{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.hover\:bg-cool-gray-800:hover{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.hover\:bg-cool-gray-900:hover{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.hover\:bg-red-50:hover{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.hover\:bg-red-100:hover{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.hover\:bg-red-200:hover{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.hover\:bg-red-300:hover{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.hover\:bg-red-400:hover{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.hover\:bg-red-500:hover{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.hover\:bg-red-600:hover{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.hover\:bg-red-700:hover{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.hover\:bg-red-800:hover{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.hover\:bg-red-900:hover{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.hover\:bg-orange-50:hover{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.hover\:bg-orange-100:hover{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.hover\:bg-orange-200:hover{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.hover\:bg-orange-300:hover{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.hover\:bg-orange-400:hover{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.hover\:bg-orange-500:hover{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.hover\:bg-orange-600:hover{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.hover\:bg-orange-700:hover{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.hover\:bg-orange-800:hover{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.hover\:bg-orange-900:hover{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.hover\:bg-yellow-50:hover{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.hover\:bg-yellow-100:hover{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.hover\:bg-yellow-200:hover{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.hover\:bg-yellow-300:hover{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.hover\:bg-yellow-400:hover{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.hover\:bg-yellow-500:hover{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.hover\:bg-yellow-600:hover{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.hover\:bg-yellow-700:hover{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.hover\:bg-yellow-800:hover{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.hover\:bg-yellow-900:hover{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.hover\:bg-green-50:hover{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.hover\:bg-green-100:hover{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.hover\:bg-green-200:hover{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.hover\:bg-green-300:hover{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.hover\:bg-green-400:hover{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.hover\:bg-green-600:hover{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.hover\:bg-green-700:hover{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.hover\:bg-green-800:hover{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.hover\:bg-green-900:hover{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.hover\:bg-teal-50:hover{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.hover\:bg-teal-100:hover{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.hover\:bg-teal-200:hover{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.hover\:bg-teal-300:hover{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.hover\:bg-teal-400:hover{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.hover\:bg-teal-500:hover{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.hover\:bg-teal-600:hover{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.hover\:bg-teal-700:hover{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.hover\:bg-teal-800:hover{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.hover\:bg-teal-900:hover{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.hover\:bg-blue-50:hover{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.hover\:bg-blue-100:hover{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.hover\:bg-blue-200:hover{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.hover\:bg-blue-300:hover{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.hover\:bg-blue-400:hover{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.hover\:bg-blue-500:hover{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.hover\:bg-blue-600:hover{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.hover\:bg-blue-700:hover{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.hover\:bg-blue-800:hover{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.hover\:bg-blue-900:hover{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.hover\:bg-indigo-50:hover{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.hover\:bg-indigo-100:hover{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.hover\:bg-indigo-200:hover{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.hover\:bg-indigo-300:hover{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.hover\:bg-indigo-400:hover{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.hover\:bg-indigo-700:hover{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.hover\:bg-indigo-800:hover{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.hover\:bg-indigo-900:hover{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.hover\:bg-purple-50:hover{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.hover\:bg-purple-100:hover{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.hover\:bg-purple-200:hover{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.hover\:bg-purple-300:hover{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.hover\:bg-purple-400:hover{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.hover\:bg-purple-500:hover{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.hover\:bg-purple-600:hover{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.hover\:bg-purple-700:hover{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.hover\:bg-purple-800:hover{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.hover\:bg-purple-900:hover{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.hover\:bg-pink-50:hover{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.hover\:bg-pink-100:hover{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.hover\:bg-pink-200:hover{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.hover\:bg-pink-300:hover{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.hover\:bg-pink-400:hover{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.hover\:bg-pink-500:hover{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.hover\:bg-pink-600:hover{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.hover\:bg-pink-700:hover{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.hover\:bg-pink-800:hover{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.hover\:bg-pink-900:hover{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.focus\:bg-transparent:focus{background-color:transparent}.focus\:bg-white:focus{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.focus\:bg-black:focus{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.focus\:bg-gray-200:focus{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.focus\:bg-gray-300:focus{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.focus\:bg-gray-400:focus{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.focus\:bg-gray-500:focus{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.focus\:bg-gray-600:focus{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.focus\:bg-gray-700:focus{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.focus\:bg-gray-800:focus{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.focus\:bg-gray-900:focus{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.focus\:bg-cool-gray-50:focus{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.focus\:bg-cool-gray-100:focus{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.focus\:bg-cool-gray-200:focus{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.focus\:bg-cool-gray-300:focus{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.focus\:bg-cool-gray-400:focus{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.focus\:bg-cool-gray-500:focus{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.focus\:bg-cool-gray-600:focus{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.focus\:bg-cool-gray-700:focus{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.focus\:bg-cool-gray-800:focus{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.focus\:bg-cool-gray-900:focus{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.focus\:bg-red-50:focus{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.focus\:bg-red-100:focus{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.focus\:bg-red-200:focus{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.focus\:bg-red-300:focus{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.focus\:bg-red-400:focus{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.focus\:bg-red-500:focus{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.focus\:bg-red-600:focus{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.focus\:bg-red-700:focus{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.focus\:bg-red-800:focus{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.focus\:bg-red-900:focus{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.focus\:bg-orange-50:focus{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.focus\:bg-orange-100:focus{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.focus\:bg-orange-200:focus{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.focus\:bg-orange-300:focus{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.focus\:bg-orange-400:focus{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.focus\:bg-orange-500:focus{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.focus\:bg-orange-600:focus{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.focus\:bg-orange-700:focus{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.focus\:bg-orange-800:focus{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.focus\:bg-orange-900:focus{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.focus\:bg-yellow-50:focus{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.focus\:bg-yellow-100:focus{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.focus\:bg-yellow-200:focus{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.focus\:bg-yellow-300:focus{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.focus\:bg-yellow-400:focus{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.focus\:bg-yellow-500:focus{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.focus\:bg-yellow-600:focus{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.focus\:bg-yellow-700:focus{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.focus\:bg-yellow-800:focus{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.focus\:bg-yellow-900:focus{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.focus\:bg-green-50:focus{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.focus\:bg-green-100:focus{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.focus\:bg-green-200:focus{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.focus\:bg-green-300:focus{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.focus\:bg-green-400:focus{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.focus\:bg-green-500:focus{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.focus\:bg-green-600:focus{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.focus\:bg-green-700:focus{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.focus\:bg-green-800:focus{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.focus\:bg-green-900:focus{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.focus\:bg-teal-50:focus{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.focus\:bg-teal-100:focus{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.focus\:bg-teal-200:focus{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.focus\:bg-teal-300:focus{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.focus\:bg-teal-400:focus{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.focus\:bg-teal-500:focus{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.focus\:bg-teal-600:focus{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.focus\:bg-teal-700:focus{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.focus\:bg-teal-800:focus{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.focus\:bg-teal-900:focus{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.focus\:bg-blue-50:focus{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.focus\:bg-blue-100:focus{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.focus\:bg-blue-200:focus{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.focus\:bg-blue-300:focus{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.focus\:bg-blue-400:focus{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.focus\:bg-blue-500:focus{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.focus\:bg-blue-600:focus{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.focus\:bg-blue-700:focus{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.focus\:bg-blue-800:focus{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.focus\:bg-blue-900:focus{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.focus\:bg-indigo-50:focus{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.focus\:bg-indigo-100:focus{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.focus\:bg-indigo-200:focus{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.focus\:bg-indigo-300:focus{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.focus\:bg-indigo-400:focus{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.focus\:bg-indigo-500:focus{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.focus\:bg-indigo-600:focus{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.focus\:bg-indigo-700:focus{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.focus\:bg-indigo-800:focus{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.focus\:bg-indigo-900:focus{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.focus\:bg-purple-50:focus{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.focus\:bg-purple-100:focus{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.focus\:bg-purple-200:focus{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.focus\:bg-purple-300:focus{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.focus\:bg-purple-400:focus{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.focus\:bg-purple-500:focus{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.focus\:bg-purple-600:focus{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.focus\:bg-purple-700:focus{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.focus\:bg-purple-800:focus{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.focus\:bg-purple-900:focus{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.focus\:bg-pink-50:focus{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.focus\:bg-pink-100:focus{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.focus\:bg-pink-200:focus{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.focus\:bg-pink-300:focus{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.focus\:bg-pink-400:focus{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.focus\:bg-pink-500:focus{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.focus\:bg-pink-600:focus{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.focus\:bg-pink-700:focus{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.focus\:bg-pink-800:focus{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.focus\:bg-pink-900:focus{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.active\:bg-transparent:active{background-color:transparent}.active\:bg-white:active{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.active\:bg-black:active{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.active\:bg-gray-50:active{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.active\:bg-gray-100:active{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.active\:bg-gray-200:active{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.active\:bg-gray-300:active{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.active\:bg-gray-400:active{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.active\:bg-gray-500:active{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.active\:bg-gray-600:active{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.active\:bg-gray-700:active{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.active\:bg-gray-800:active{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.active\:bg-gray-900:active{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.active\:bg-cool-gray-50:active{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.active\:bg-cool-gray-100:active{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.active\:bg-cool-gray-200:active{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.active\:bg-cool-gray-300:active{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.active\:bg-cool-gray-400:active{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.active\:bg-cool-gray-500:active{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.active\:bg-cool-gray-600:active{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.active\:bg-cool-gray-700:active{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.active\:bg-cool-gray-800:active{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.active\:bg-cool-gray-900:active{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.active\:bg-red-50:active{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.active\:bg-red-100:active{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.active\:bg-red-200:active{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.active\:bg-red-300:active{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.active\:bg-red-400:active{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.active\:bg-red-500:active{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.active\:bg-red-600:active{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.active\:bg-red-700:active{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.active\:bg-red-800:active{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.active\:bg-red-900:active{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.active\:bg-orange-50:active{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.active\:bg-orange-100:active{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.active\:bg-orange-200:active{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.active\:bg-orange-300:active{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.active\:bg-orange-400:active{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.active\:bg-orange-500:active{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.active\:bg-orange-600:active{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.active\:bg-orange-700:active{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.active\:bg-orange-800:active{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.active\:bg-orange-900:active{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.active\:bg-yellow-50:active{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.active\:bg-yellow-100:active{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.active\:bg-yellow-200:active{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.active\:bg-yellow-300:active{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.active\:bg-yellow-400:active{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.active\:bg-yellow-500:active{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.active\:bg-yellow-600:active{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.active\:bg-yellow-700:active{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.active\:bg-yellow-800:active{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.active\:bg-yellow-900:active{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.active\:bg-green-50:active{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.active\:bg-green-100:active{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.active\:bg-green-200:active{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.active\:bg-green-300:active{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.active\:bg-green-400:active{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.active\:bg-green-500:active{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.active\:bg-green-600:active{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.active\:bg-green-700:active{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.active\:bg-green-800:active{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.active\:bg-green-900:active{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.active\:bg-teal-50:active{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.active\:bg-teal-100:active{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.active\:bg-teal-200:active{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.active\:bg-teal-300:active{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.active\:bg-teal-400:active{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.active\:bg-teal-500:active{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.active\:bg-teal-600:active{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.active\:bg-teal-700:active{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.active\:bg-teal-800:active{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.active\:bg-teal-900:active{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.active\:bg-blue-50:active{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.active\:bg-blue-100:active{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.active\:bg-blue-200:active{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.active\:bg-blue-300:active{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.active\:bg-blue-400:active{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.active\:bg-blue-500:active{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.active\:bg-blue-600:active{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.active\:bg-blue-700:active{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.active\:bg-blue-800:active{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.active\:bg-blue-900:active{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.active\:bg-indigo-50:active{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.active\:bg-indigo-100:active{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.active\:bg-indigo-200:active{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.active\:bg-indigo-300:active{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.active\:bg-indigo-400:active{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.active\:bg-indigo-500:active{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.active\:bg-indigo-600:active{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.active\:bg-indigo-700:active{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.active\:bg-indigo-800:active{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.active\:bg-indigo-900:active{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.active\:bg-purple-50:active{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.active\:bg-purple-100:active{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.active\:bg-purple-200:active{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.active\:bg-purple-300:active{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.active\:bg-purple-400:active{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.active\:bg-purple-500:active{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.active\:bg-purple-600:active{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.active\:bg-purple-700:active{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.active\:bg-purple-800:active{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.active\:bg-purple-900:active{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.active\:bg-pink-50:active{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.active\:bg-pink-100:active{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.active\:bg-pink-200:active{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.active\:bg-pink-300:active{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.active\:bg-pink-400:active{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.active\:bg-pink-500:active{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.active\:bg-pink-600:active{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.active\:bg-pink-700:active{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.active\:bg-pink-800:active{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.active\:bg-pink-900:active{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.bg-opacity-0{--bg-opacity:0}.bg-opacity-25{--bg-opacity:0.25}.bg-opacity-50{--bg-opacity:0.5}.bg-opacity-75{--bg-opacity:0.75}.bg-opacity-100{--bg-opacity:1}.hover\:bg-opacity-0:hover{--bg-opacity:0}.hover\:bg-opacity-25:hover{--bg-opacity:0.25}.hover\:bg-opacity-50:hover{--bg-opacity:0.5}.hover\:bg-opacity-75:hover{--bg-opacity:0.75}.hover\:bg-opacity-100:hover{--bg-opacity:1}.focus\:bg-opacity-0:focus{--bg-opacity:0}.focus\:bg-opacity-25:focus{--bg-opacity:0.25}.focus\:bg-opacity-50:focus{--bg-opacity:0.5}.focus\:bg-opacity-75:focus{--bg-opacity:0.75}.focus\:bg-opacity-100:focus{--bg-opacity:1}.bg-bottom{background-position:bottom}.bg-center{background-position:center}.bg-left{background-position:left}.bg-left-bottom{background-position:left bottom}.bg-left-top{background-position:left top}.bg-right{background-position:right}.bg-right-bottom{background-position:right bottom}.bg-right-top{background-position:right top}.bg-top{background-position:top}.bg-repeat{background-repeat:repeat}.bg-no-repeat{background-repeat:no-repeat}.bg-repeat-x{background-repeat:repeat-x}.bg-repeat-y{background-repeat:repeat-y}.bg-repeat-round{background-repeat:round}.bg-repeat-space{background-repeat:space}.bg-auto{background-size:auto}.bg-cover{background-size:cover}.bg-contain{background-size:contain}.border-collapse{border-collapse:collapse}.border-separate{border-collapse:separate}.border-transparent{border-color:transparent}.border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:hover .group-hover\:border-transparent{border-color:transparent}.group:hover .group-hover\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:hover .group-hover\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:hover .group-hover\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:hover .group-hover\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:hover .group-hover\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:hover .group-hover\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:hover .group-hover\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:hover .group-hover\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:hover .group-hover\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:hover .group-hover\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:hover .group-hover\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:hover .group-hover\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:hover .group-hover\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:hover .group-hover\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:hover .group-hover\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:hover .group-hover\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:hover .group-hover\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:hover .group-hover\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:hover .group-hover\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:hover .group-hover\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:hover .group-hover\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:hover .group-hover\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:hover .group-hover\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:hover .group-hover\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:hover .group-hover\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:hover .group-hover\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:hover .group-hover\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:hover .group-hover\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:hover .group-hover\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:hover .group-hover\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:hover .group-hover\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:hover .group-hover\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:hover .group-hover\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:hover .group-hover\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:hover .group-hover\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:hover .group-hover\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:hover .group-hover\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:hover .group-hover\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:hover .group-hover\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:hover .group-hover\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:hover .group-hover\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:hover .group-hover\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:hover .group-hover\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:hover .group-hover\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:hover .group-hover\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:hover .group-hover\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:hover .group-hover\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:hover .group-hover\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:hover .group-hover\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:hover .group-hover\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:hover .group-hover\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:hover .group-hover\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:hover .group-hover\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:hover .group-hover\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:hover .group-hover\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:hover .group-hover\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:hover .group-hover\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:hover .group-hover\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:hover .group-hover\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:hover .group-hover\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:hover .group-hover\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:hover .group-hover\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:hover .group-hover\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:hover .group-hover\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:hover .group-hover\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:hover .group-hover\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:hover .group-hover\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:hover .group-hover\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:hover .group-hover\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:hover .group-hover\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:hover .group-hover\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:hover .group-hover\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:hover .group-hover\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:hover .group-hover\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:hover .group-hover\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:hover .group-hover\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:hover .group-hover\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:hover .group-hover\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:hover .group-hover\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:hover .group-hover\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:hover .group-hover\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:hover .group-hover\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:hover .group-hover\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:hover .group-hover\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:hover .group-hover\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:hover .group-hover\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:hover .group-hover\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:hover .group-hover\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:hover .group-hover\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:hover .group-hover\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:hover .group-hover\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:hover .group-hover\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:hover .group-hover\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:hover .group-hover\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:hover .group-hover\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:hover .group-hover\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:hover .group-hover\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:hover .group-hover\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:hover .group-hover\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:hover .group-hover\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:hover .group-hover\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:hover .group-hover\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:hover .group-hover\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:focus .group-focus\:border-transparent{border-color:transparent}.group:focus .group-focus\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:focus .group-focus\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:focus .group-focus\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:focus .group-focus\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:focus .group-focus\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:focus .group-focus\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:focus .group-focus\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:focus .group-focus\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:focus .group-focus\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:focus .group-focus\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:focus .group-focus\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:focus .group-focus\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:focus .group-focus\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:focus .group-focus\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:focus .group-focus\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:focus .group-focus\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:focus .group-focus\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:focus .group-focus\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:focus .group-focus\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:focus .group-focus\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:focus .group-focus\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:focus .group-focus\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:focus .group-focus\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:focus .group-focus\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:focus .group-focus\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:focus .group-focus\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:focus .group-focus\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:focus .group-focus\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:focus .group-focus\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:focus .group-focus\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:focus .group-focus\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:focus .group-focus\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:focus .group-focus\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:focus .group-focus\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:focus .group-focus\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:focus .group-focus\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:focus .group-focus\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:focus .group-focus\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:focus .group-focus\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:focus .group-focus\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:focus .group-focus\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:focus .group-focus\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:focus .group-focus\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:focus .group-focus\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:focus .group-focus\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:focus .group-focus\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:focus .group-focus\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:focus .group-focus\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:focus .group-focus\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:focus .group-focus\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:focus .group-focus\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:focus .group-focus\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:focus .group-focus\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:focus .group-focus\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:focus .group-focus\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:focus .group-focus\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:focus .group-focus\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:focus .group-focus\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:focus .group-focus\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:focus .group-focus\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:focus .group-focus\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:focus .group-focus\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:focus .group-focus\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:focus .group-focus\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:focus .group-focus\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:focus .group-focus\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:focus .group-focus\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:focus .group-focus\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:focus .group-focus\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:focus .group-focus\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:focus .group-focus\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:focus .group-focus\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:focus .group-focus\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:focus .group-focus\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:focus .group-focus\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:focus .group-focus\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:focus .group-focus\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:focus .group-focus\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:focus .group-focus\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:focus .group-focus\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:focus .group-focus\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:focus .group-focus\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:focus .group-focus\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:focus .group-focus\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:focus .group-focus\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:focus .group-focus\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:focus .group-focus\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:focus .group-focus\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:focus .group-focus\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:focus .group-focus\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:focus .group-focus\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:focus .group-focus\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:focus .group-focus\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:focus .group-focus\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:focus .group-focus\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:focus .group-focus\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:focus .group-focus\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:focus .group-focus\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:focus .group-focus\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:focus .group-focus\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:focus .group-focus\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:focus .group-focus\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:focus .group-focus\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.hover\:border-transparent:hover{border-color:transparent}.hover\:border-white:hover{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.hover\:border-black:hover{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.hover\:border-gray-50:hover{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.hover\:border-gray-100:hover{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.hover\:border-gray-300:hover{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.hover\:border-gray-400:hover{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.hover\:border-gray-500:hover{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.hover\:border-gray-600:hover{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.hover\:border-gray-700:hover{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.hover\:border-gray-800:hover{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.hover\:border-gray-900:hover{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.hover\:border-cool-gray-50:hover{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.hover\:border-cool-gray-100:hover{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.hover\:border-cool-gray-200:hover{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.hover\:border-cool-gray-300:hover{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.hover\:border-cool-gray-400:hover{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.hover\:border-cool-gray-500:hover{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.hover\:border-cool-gray-600:hover{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.hover\:border-cool-gray-700:hover{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.hover\:border-cool-gray-800:hover{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.hover\:border-cool-gray-900:hover{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.hover\:border-red-50:hover{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.hover\:border-red-100:hover{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.hover\:border-red-200:hover{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.hover\:border-red-300:hover{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.hover\:border-red-500:hover{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.hover\:border-red-600:hover{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.hover\:border-red-700:hover{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.hover\:border-red-800:hover{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.hover\:border-red-900:hover{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.hover\:border-orange-50:hover{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.hover\:border-orange-100:hover{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.hover\:border-orange-200:hover{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.hover\:border-orange-300:hover{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.hover\:border-orange-400:hover{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.hover\:border-orange-500:hover{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.hover\:border-orange-600:hover{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.hover\:border-orange-700:hover{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.hover\:border-orange-800:hover{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.hover\:border-orange-900:hover{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.hover\:border-yellow-50:hover{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.hover\:border-yellow-100:hover{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.hover\:border-yellow-200:hover{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.hover\:border-yellow-300:hover{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.hover\:border-yellow-400:hover{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.hover\:border-yellow-500:hover{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.hover\:border-yellow-600:hover{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.hover\:border-yellow-700:hover{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.hover\:border-yellow-800:hover{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.hover\:border-yellow-900:hover{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.hover\:border-green-50:hover{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.hover\:border-green-100:hover{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.hover\:border-green-200:hover{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.hover\:border-green-300:hover{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.hover\:border-green-400:hover{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.hover\:border-green-500:hover{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.hover\:border-green-600:hover{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.hover\:border-green-700:hover{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.hover\:border-green-800:hover{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.hover\:border-green-900:hover{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.hover\:border-teal-50:hover{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.hover\:border-teal-100:hover{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.hover\:border-teal-200:hover{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.hover\:border-teal-300:hover{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.hover\:border-teal-400:hover{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.hover\:border-teal-500:hover{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.hover\:border-teal-600:hover{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.hover\:border-teal-700:hover{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.hover\:border-teal-800:hover{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.hover\:border-teal-900:hover{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.hover\:border-blue-50:hover{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.hover\:border-blue-100:hover{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.hover\:border-blue-200:hover{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.hover\:border-blue-300:hover{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.hover\:border-blue-400:hover{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.hover\:border-blue-500:hover{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.hover\:border-blue-600:hover{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.hover\:border-blue-700:hover{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.hover\:border-blue-800:hover{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.hover\:border-blue-900:hover{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.hover\:border-indigo-50:hover{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.hover\:border-indigo-100:hover{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.hover\:border-indigo-200:hover{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.hover\:border-indigo-300:hover{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.hover\:border-indigo-400:hover{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.hover\:border-indigo-500:hover{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.hover\:border-indigo-700:hover{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.hover\:border-indigo-800:hover{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.hover\:border-indigo-900:hover{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.hover\:border-purple-50:hover{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.hover\:border-purple-100:hover{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.hover\:border-purple-200:hover{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.hover\:border-purple-300:hover{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.hover\:border-purple-400:hover{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.hover\:border-purple-500:hover{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.hover\:border-purple-600:hover{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.hover\:border-purple-700:hover{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.hover\:border-purple-800:hover{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.hover\:border-purple-900:hover{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.hover\:border-pink-50:hover{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.hover\:border-pink-100:hover{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.hover\:border-pink-200:hover{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.hover\:border-pink-300:hover{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.hover\:border-pink-400:hover{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.hover\:border-pink-500:hover{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.hover\:border-pink-600:hover{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.hover\:border-pink-700:hover{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.hover\:border-pink-800:hover{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.hover\:border-pink-900:hover{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.focus\:border-transparent:focus{border-color:transparent}.focus\:border-white:focus{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.focus\:border-black:focus{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.focus\:border-gray-50:focus{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.focus\:border-gray-100:focus{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.focus\:border-gray-200:focus{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.focus\:border-gray-300:focus{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.focus\:border-gray-400:focus{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.focus\:border-gray-500:focus{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.focus\:border-gray-600:focus{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.focus\:border-gray-700:focus{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.focus\:border-gray-800:focus{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.focus\:border-gray-900:focus{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.focus\:border-cool-gray-50:focus{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.focus\:border-cool-gray-100:focus{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.focus\:border-cool-gray-200:focus{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.focus\:border-cool-gray-300:focus{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.focus\:border-cool-gray-400:focus{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.focus\:border-cool-gray-500:focus{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.focus\:border-cool-gray-600:focus{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.focus\:border-cool-gray-700:focus{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.focus\:border-cool-gray-800:focus{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.focus\:border-cool-gray-900:focus{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.focus\:border-red-50:focus{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.focus\:border-red-100:focus{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.focus\:border-red-200:focus{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.focus\:border-red-300:focus{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.focus\:border-red-400:focus{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.focus\:border-red-500:focus{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.focus\:border-red-600:focus{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.focus\:border-red-700:focus{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.focus\:border-red-800:focus{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.focus\:border-red-900:focus{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.focus\:border-orange-50:focus{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.focus\:border-orange-100:focus{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.focus\:border-orange-200:focus{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.focus\:border-orange-300:focus{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.focus\:border-orange-400:focus{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.focus\:border-orange-500:focus{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.focus\:border-orange-600:focus{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.focus\:border-orange-700:focus{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.focus\:border-orange-800:focus{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.focus\:border-orange-900:focus{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.focus\:border-yellow-50:focus{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.focus\:border-yellow-100:focus{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.focus\:border-yellow-200:focus{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.focus\:border-yellow-300:focus{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.focus\:border-yellow-400:focus{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.focus\:border-yellow-500:focus{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.focus\:border-yellow-600:focus{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.focus\:border-yellow-700:focus{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.focus\:border-yellow-800:focus{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.focus\:border-yellow-900:focus{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.focus\:border-green-50:focus{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.focus\:border-green-100:focus{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.focus\:border-green-200:focus{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.focus\:border-green-300:focus{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.focus\:border-green-400:focus{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.focus\:border-green-500:focus{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.focus\:border-green-600:focus{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.focus\:border-green-700:focus{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.focus\:border-green-800:focus{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.focus\:border-green-900:focus{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.focus\:border-teal-50:focus{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.focus\:border-teal-100:focus{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.focus\:border-teal-200:focus{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.focus\:border-teal-300:focus{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.focus\:border-teal-400:focus{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.focus\:border-teal-500:focus{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.focus\:border-teal-600:focus{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.focus\:border-teal-700:focus{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.focus\:border-teal-800:focus{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.focus\:border-teal-900:focus{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.focus\:border-blue-50:focus{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.focus\:border-blue-100:focus{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.focus\:border-blue-200:focus{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.focus\:border-blue-400:focus{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.focus\:border-blue-500:focus{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.focus\:border-blue-600:focus{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.focus\:border-blue-700:focus{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.focus\:border-blue-800:focus{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.focus\:border-blue-900:focus{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.focus\:border-indigo-50:focus{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.focus\:border-indigo-100:focus{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.focus\:border-indigo-200:focus{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.focus\:border-indigo-300:focus{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.focus\:border-indigo-400:focus{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.focus\:border-indigo-500:focus{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.focus\:border-indigo-600:focus{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.focus\:border-indigo-700:focus{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.focus\:border-indigo-800:focus{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.focus\:border-indigo-900:focus{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.focus\:border-purple-50:focus{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.focus\:border-purple-100:focus{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.focus\:border-purple-200:focus{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.focus\:border-purple-300:focus{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.focus\:border-purple-400:focus{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.focus\:border-purple-500:focus{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.focus\:border-purple-600:focus{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.focus\:border-purple-700:focus{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.focus\:border-purple-800:focus{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.focus\:border-purple-900:focus{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.focus\:border-pink-50:focus{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.focus\:border-pink-100:focus{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.focus\:border-pink-200:focus{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.focus\:border-pink-300:focus{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.focus\:border-pink-400:focus{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.focus\:border-pink-500:focus{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.focus\:border-pink-600:focus{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.focus\:border-pink-700:focus{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.focus\:border-pink-800:focus{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.focus\:border-pink-900:focus{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.border-opacity-0{--border-opacity:0}.border-opacity-25{--border-opacity:0.25}.border-opacity-50{--border-opacity:0.5}.border-opacity-75{--border-opacity:0.75}.border-opacity-100{--border-opacity:1}.hover\:border-opacity-0:hover{--border-opacity:0}.hover\:border-opacity-25:hover{--border-opacity:0.25}.hover\:border-opacity-50:hover{--border-opacity:0.5}.hover\:border-opacity-75:hover{--border-opacity:0.75}.hover\:border-opacity-100:hover{--border-opacity:1}.focus\:border-opacity-0:focus{--border-opacity:0}.focus\:border-opacity-25:focus{--border-opacity:0.25}.focus\:border-opacity-50:focus{--border-opacity:0.5}.focus\:border-opacity-75:focus{--border-opacity:0.75}.focus\:border-opacity-100:focus{--border-opacity:1}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.rounded-t-sm{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.rounded-r-sm{border-top-right-radius:.125rem;border-bottom-right-radius:.125rem}.rounded-b-sm{border-bottom-right-radius:.125rem;border-bottom-left-radius:.125rem}.rounded-l-sm{border-top-left-radius:.125rem;border-bottom-left-radius:.125rem}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.rounded-b-lg{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.rounded-t-full{border-top-left-radius:9999px;border-top-right-radius:9999px}.rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.rounded-b-full{border-bottom-right-radius:9999px;border-bottom-left-radius:9999px}.rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.rounded-tl-none{border-top-left-radius:0}.rounded-tr-none{border-top-right-radius:0}.rounded-br-none{border-bottom-right-radius:0}.rounded-bl-none{border-bottom-left-radius:0}.rounded-tl-sm{border-top-left-radius:.125rem}.rounded-tr-sm{border-top-right-radius:.125rem}.rounded-br-sm{border-bottom-right-radius:.125rem}.rounded-bl-sm{border-bottom-left-radius:.125rem}.rounded-tl{border-top-left-radius:.25rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.rounded-tl-md{border-top-left-radius:.375rem}.rounded-tr-md{border-top-right-radius:.375rem}.rounded-br-md{border-bottom-right-radius:.375rem}.rounded-bl-md{border-bottom-left-radius:.375rem}.rounded-tl-lg{border-top-left-radius:.5rem}.rounded-tr-lg{border-top-right-radius:.5rem}.rounded-br-lg{border-bottom-right-radius:.5rem}.rounded-bl-lg{border-bottom-left-radius:.5rem}.rounded-tl-full{border-top-left-radius:9999px}.rounded-tr-full{border-top-right-radius:9999px}.rounded-br-full{border-bottom-right-radius:9999px}.rounded-bl-full{border-bottom-left-radius:9999px}.border-solid{border-style:solid}.border-dashed{border-style:dashed}.border-dotted{border-style:dotted}.border-double{border-style:double}.border-none{border-style:none}.border-0{border-width:0}.border-2{border-width:2px}.border-4{border-width:4px}.border-8{border-width:8px}.border{border-width:1px}.border-t-0{border-top-width:0}.border-r-0{border-right-width:0}.border-b-0{border-bottom-width:0}.border-l-0{border-left-width:0}.border-t-2{border-top-width:2px}.border-r-2{border-right-width:2px}.border-b-2{border-bottom-width:2px}.border-l-2{border-left-width:2px}.border-t-4{border-top-width:4px}.border-r-4{border-right-width:4px}.border-b-4{border-bottom-width:4px}.border-l-4{border-left-width:4px}.border-t-8{border-top-width:8px}.border-r-8{border-right-width:8px}.border-b-8{border-bottom-width:8px}.border-l-8{border-left-width:8px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-b{border-bottom-width:1px}.border-l{border-left-width:1px}.box-border{box-sizing:border-box}.box-content{box-sizing:content-box}.cursor-auto{cursor:auto}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.cursor-text{cursor:text}.cursor-move{cursor:move}.cursor-not-allowed{cursor:not-allowed}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.table-column{display:table-column}.table-column-group{display:table-column-group}.table-footer-group{display:table-footer-group}.table-header-group{display:table-header-group}.table-row-group{display:table-row-group}.table-row{display:table-row}.flow-root{display:flow-root}.grid{display:grid}.inline-grid{display:inline-grid}.hidden{display:none}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-no-wrap{flex-wrap:nowrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.self-auto{align-self:auto}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.content-center{align-content:center}.content-start{align-content:flex-start}.content-end{align-content:flex-end}.content-between{align-content:space-between}.content-around{align-content:space-around}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-initial{flex:0 1 auto}.flex-none{flex:none}.flex-grow-0{flex-grow:0}.flex-grow{flex-grow:1}.flex-shrink-0{flex-shrink:0}.flex-shrink{flex-shrink:1}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.order-first{order:-9999}.order-last{order:9999}.order-none{order:0}.float-right{float:right}.float-left{float:left}.float-none{float:none}.clearfix:after{content:"";display:table;clear:both}.clear-left{clear:left}.clear-right{clear:right}.clear-both{clear:both}.clear-none{clear:none}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.font-serif{font-family:Georgia,Cambria,"Times New Roman",Times,serif}.font-mono{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.font-hairline{font-weight:100}.font-thin{font-weight:200}.font-light{font-weight:300}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-black{font-weight:900}.hover\:font-hairline:hover{font-weight:100}.hover\:font-thin:hover{font-weight:200}.hover\:font-light:hover{font-weight:300}.hover\:font-normal:hover{font-weight:400}.hover\:font-medium:hover{font-weight:500}.hover\:font-semibold:hover{font-weight:600}.hover\:font-bold:hover{font-weight:700}.hover\:font-extrabold:hover{font-weight:800}.hover\:font-black:hover{font-weight:900}.focus\:font-hairline:focus{font-weight:100}.focus\:font-thin:focus{font-weight:200}.focus\:font-light:focus{font-weight:300}.focus\:font-normal:focus{font-weight:400}.focus\:font-medium:focus{font-weight:500}.focus\:font-semibold:focus{font-weight:600}.focus\:font-bold:focus{font-weight:700}.focus\:font-extrabold:focus{font-weight:800}.focus\:font-black:focus{font-weight:900}.h-0{height:0}.h-1{height:.25rem}.h-2{height:.5rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-11{height:2.75rem}.h-12{height:3rem}.h-13{height:3.25rem}.h-14{height:3.5rem}.h-15{height:3.75rem}.h-16{height:4rem}.h-20{height:5rem}.h-24{height:6rem}.h-28{height:7rem}.h-32{height:8rem}.h-36{height:9rem}.h-40{height:10rem}.h-44{height:11rem}.h-48{height:12rem}.h-52{height:13rem}.h-56{height:14rem}.h-60{height:15rem}.h-64{height:16rem}.h-72{height:18rem}.h-80{height:20rem}.h-96{height:24rem}.h-auto{height:auto}.h-px{height:1px}.h-0\.5{height:.125rem}.h-1\.5{height:.375rem}.h-2\.5{height:.625rem}.h-3\.5{height:.875rem}.h-1\/2{height:50%}.h-1\/3{height:33.333333%}.h-2\/3{height:66.666667%}.h-1\/4{height:25%}.h-2\/4{height:50%}.h-3\/4{height:75%}.h-1\/5{height:20%}.h-2\/5{height:40%}.h-3\/5{height:60%}.h-4\/5{height:80%}.h-1\/6{height:16.666667%}.h-2\/6{height:33.333333%}.h-3\/6{height:50%}.h-4\/6{height:66.666667%}.h-5\/6{height:83.333333%}.h-1\/12{height:8.333333%}.h-2\/12{height:16.666667%}.h-3\/12{height:25%}.h-4\/12{height:33.333333%}.h-5\/12{height:41.666667%}.h-6\/12{height:50%}.h-7\/12{height:58.333333%}.h-8\/12{height:66.666667%}.h-9\/12{height:75%}.h-10\/12{height:83.333333%}.h-11\/12{height:91.666667%}.h-full{height:100%}.h-screen{height:100vh}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.25rem}.text-5xl{font-size:3rem}.text-6xl{font-size:4rem}.leading-3{line-height:.75rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-8{line-height:2rem}.leading-9{line-height:2.25rem}.leading-10{line-height:2.5rem}.leading-none{line-height:1}.leading-tight{line-height:1.25}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.leading-loose{line-height:2}.list-inside{list-style-position:inside}.list-outside{list-style-position:outside}.list-none{list-style-type:none}.list-disc{list-style-type:disc}.list-decimal{list-style-type:decimal}.m-0{margin:0}.m-1{margin:.25rem}.m-2{margin:.5rem}.m-3{margin:.75rem}.m-4{margin:1rem}.m-5{margin:1.25rem}.m-6{margin:1.5rem}.m-7{margin:1.75rem}.m-8{margin:2rem}.m-9{margin:2.25rem}.m-10{margin:2.5rem}.m-11{margin:2.75rem}.m-12{margin:3rem}.m-13{margin:3.25rem}.m-14{margin:3.5rem}.m-15{margin:3.75rem}.m-16{margin:4rem}.m-20{margin:5rem}.m-24{margin:6rem}.m-28{margin:7rem}.m-32{margin:8rem}.m-36{margin:9rem}.m-40{margin:10rem}.m-44{margin:11rem}.m-48{margin:12rem}.m-52{margin:13rem}.m-56{margin:14rem}.m-60{margin:15rem}.m-64{margin:16rem}.m-72{margin:18rem}.m-80{margin:20rem}.m-96{margin:24rem}.m-auto{margin:auto}.m-px{margin:1px}.m-0\.5{margin:.125rem}.m-1\.5{margin:.375rem}.m-2\.5{margin:.625rem}.m-3\.5{margin:.875rem}.m-1\/2{margin:50%}.m-1\/3{margin:33.333333%}.m-2\/3{margin:66.666667%}.m-1\/4{margin:25%}.m-2\/4{margin:50%}.m-3\/4{margin:75%}.m-1\/5{margin:20%}.m-2\/5{margin:40%}.m-3\/5{margin:60%}.m-4\/5{margin:80%}.m-1\/6{margin:16.666667%}.m-2\/6{margin:33.333333%}.m-3\/6{margin:50%}.m-4\/6{margin:66.666667%}.m-5\/6{margin:83.333333%}.m-1\/12{margin:8.333333%}.m-2\/12{margin:16.666667%}.m-3\/12{margin:25%}.m-4\/12{margin:33.333333%}.m-5\/12{margin:41.666667%}.m-6\/12{margin:50%}.m-7\/12{margin:58.333333%}.m-8\/12{margin:66.666667%}.m-9\/12{margin:75%}.m-10\/12{margin:83.333333%}.m-11\/12{margin:91.666667%}.m-full{margin:100%}.-m-1{margin:-.25rem}.-m-2{margin:-.5rem}.-m-3{margin:-.75rem}.-m-4{margin:-1rem}.-m-5{margin:-1.25rem}.-m-6{margin:-1.5rem}.-m-7{margin:-1.75rem}.-m-8{margin:-2rem}.-m-9{margin:-2.25rem}.-m-10{margin:-2.5rem}.-m-11{margin:-2.75rem}.-m-12{margin:-3rem}.-m-13{margin:-3.25rem}.-m-14{margin:-3.5rem}.-m-15{margin:-3.75rem}.-m-16{margin:-4rem}.-m-20{margin:-5rem}.-m-24{margin:-6rem}.-m-28{margin:-7rem}.-m-32{margin:-8rem}.-m-36{margin:-9rem}.-m-40{margin:-10rem}.-m-44{margin:-11rem}.-m-48{margin:-12rem}.-m-52{margin:-13rem}.-m-56{margin:-14rem}.-m-60{margin:-15rem}.-m-64{margin:-16rem}.-m-72{margin:-18rem}.-m-80{margin:-20rem}.-m-96{margin:-24rem}.-m-px{margin:-1px}.-m-0\.5{margin:-.125rem}.-m-1\.5{margin:-.375rem}.-m-2\.5{margin:-.625rem}.-m-3\.5{margin:-.875rem}.-m-1\/2{margin:-50%}.-m-1\/3{margin:-33.33333%}.-m-2\/3{margin:-66.66667%}.-m-1\/4{margin:-25%}.-m-2\/4{margin:-50%}.-m-3\/4{margin:-75%}.-m-1\/5{margin:-20%}.-m-2\/5{margin:-40%}.-m-3\/5{margin:-60%}.-m-4\/5{margin:-80%}.-m-1\/6{margin:-16.66667%}.-m-2\/6{margin:-33.33333%}.-m-3\/6{margin:-50%}.-m-4\/6{margin:-66.66667%}.-m-5\/6{margin:-83.33333%}.-m-1\/12{margin:-8.33333%}.-m-2\/12{margin:-16.66667%}.-m-3\/12{margin:-25%}.-m-4\/12{margin:-33.33333%}.-m-5\/12{margin:-41.66667%}.-m-6\/12{margin:-50%}.-m-7\/12{margin:-58.33333%}.-m-8\/12{margin:-66.66667%}.-m-9\/12{margin:-75%}.-m-10\/12{margin:-83.33333%}.-m-11\/12{margin:-91.66667%}.-m-full{margin:-100%}.my-0{margin-top:0;margin-bottom:0}.mx-0{margin-left:0;margin-right:0}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-5{margin-top:1.25rem;margin-bottom:1.25rem}.mx-5{margin-left:1.25rem;margin-right:1.25rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.my-7{margin-top:1.75rem;margin-bottom:1.75rem}.mx-7{margin-left:1.75rem;margin-right:1.75rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.my-9{margin-top:2.25rem;margin-bottom:2.25rem}.mx-9{margin-left:2.25rem;margin-right:2.25rem}.my-10{margin-top:2.5rem;margin-bottom:2.5rem}.mx-10{margin-left:2.5rem;margin-right:2.5rem}.my-11{margin-top:2.75rem;margin-bottom:2.75rem}.mx-11{margin-left:2.75rem;margin-right:2.75rem}.my-12{margin-top:3rem;margin-bottom:3rem}.mx-12{margin-left:3rem;margin-right:3rem}.my-13{margin-top:3.25rem;margin-bottom:3.25rem}.mx-13{margin-left:3.25rem;margin-right:3.25rem}.my-14{margin-top:3.5rem;margin-bottom:3.5rem}.mx-14{margin-left:3.5rem;margin-right:3.5rem}.my-15{margin-top:3.75rem;margin-bottom:3.75rem}.mx-15{margin-left:3.75rem;margin-right:3.75rem}.my-16{margin-top:4rem;margin-bottom:4rem}.mx-16{margin-left:4rem;margin-right:4rem}.my-20{margin-top:5rem;margin-bottom:5rem}.mx-20{margin-left:5rem;margin-right:5rem}.my-24{margin-top:6rem;margin-bottom:6rem}.mx-24{margin-left:6rem;margin-right:6rem}.my-28{margin-top:7rem;margin-bottom:7rem}.mx-28{margin-left:7rem;margin-right:7rem}.my-32{margin-top:8rem;margin-bottom:8rem}.mx-32{margin-left:8rem;margin-right:8rem}.my-36{margin-top:9rem;margin-bottom:9rem}.mx-36{margin-left:9rem;margin-right:9rem}.my-40{margin-top:10rem;margin-bottom:10rem}.mx-40{margin-left:10rem;margin-right:10rem}.my-44{margin-top:11rem;margin-bottom:11rem}.mx-44{margin-left:11rem;margin-right:11rem}.my-48{margin-top:12rem;margin-bottom:12rem}.mx-48{margin-left:12rem;margin-right:12rem}.my-52{margin-top:13rem;margin-bottom:13rem}.mx-52{margin-left:13rem;margin-right:13rem}.my-56{margin-top:14rem;margin-bottom:14rem}.mx-56{margin-left:14rem;margin-right:14rem}.my-60{margin-top:15rem;margin-bottom:15rem}.mx-60{margin-left:15rem;margin-right:15rem}.my-64{margin-top:16rem;margin-bottom:16rem}.mx-64{margin-left:16rem;margin-right:16rem}.my-72{margin-top:18rem;margin-bottom:18rem}.mx-72{margin-left:18rem;margin-right:18rem}.my-80{margin-top:20rem;margin-bottom:20rem}.mx-80{margin-left:20rem;margin-right:20rem}.my-96{margin-top:24rem;margin-bottom:24rem}.mx-96{margin-left:24rem;margin-right:24rem}.my-auto{margin-top:auto;margin-bottom:auto}.mx-auto{margin-left:auto;margin-right:auto}.my-px{margin-top:1px;margin-bottom:1px}.mx-px{margin-left:1px;margin-right:1px}.my-0\.5{margin-top:.125rem;margin-bottom:.125rem}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.my-1\.5{margin-top:.375rem;margin-bottom:.375rem}.mx-1\.5{margin-left:.375rem;margin-right:.375rem}.my-2\.5{margin-top:.625rem;margin-bottom:.625rem}.mx-2\.5{margin-left:.625rem;margin-right:.625rem}.my-3\.5{margin-top:.875rem;margin-bottom:.875rem}.mx-3\.5{margin-left:.875rem;margin-right:.875rem}.my-1\/2{margin-top:50%;margin-bottom:50%}.mx-1\/2{margin-left:50%;margin-right:50%}.my-1\/3{margin-top:33.333333%;margin-bottom:33.333333%}.mx-1\/3{margin-left:33.333333%;margin-right:33.333333%}.my-2\/3{margin-top:66.666667%;margin-bottom:66.666667%}.mx-2\/3{margin-left:66.666667%;margin-right:66.666667%}.my-1\/4{margin-top:25%;margin-bottom:25%}.mx-1\/4{margin-left:25%;margin-right:25%}.my-2\/4{margin-top:50%;margin-bottom:50%}.mx-2\/4{margin-left:50%;margin-right:50%}.my-3\/4{margin-top:75%;margin-bottom:75%}.mx-3\/4{margin-left:75%;margin-right:75%}.my-1\/5{margin-top:20%;margin-bottom:20%}.mx-1\/5{margin-left:20%;margin-right:20%}.my-2\/5{margin-top:40%;margin-bottom:40%}.mx-2\/5{margin-left:40%;margin-right:40%}.my-3\/5{margin-top:60%;margin-bottom:60%}.mx-3\/5{margin-left:60%;margin-right:60%}.my-4\/5{margin-top:80%;margin-bottom:80%}.mx-4\/5{margin-left:80%;margin-right:80%}.my-1\/6{margin-top:16.666667%;margin-bottom:16.666667%}.mx-1\/6{margin-left:16.666667%;margin-right:16.666667%}.my-2\/6{margin-top:33.333333%;margin-bottom:33.333333%}.mx-2\/6{margin-left:33.333333%;margin-right:33.333333%}.my-3\/6{margin-top:50%;margin-bottom:50%}.mx-3\/6{margin-left:50%;margin-right:50%}.my-4\/6{margin-top:66.666667%;margin-bottom:66.666667%}.mx-4\/6{margin-left:66.666667%;margin-right:66.666667%}.my-5\/6{margin-top:83.333333%;margin-bottom:83.333333%}.mx-5\/6{margin-left:83.333333%;margin-right:83.333333%}.my-1\/12{margin-top:8.333333%;margin-bottom:8.333333%}.mx-1\/12{margin-left:8.333333%;margin-right:8.333333%}.my-2\/12{margin-top:16.666667%;margin-bottom:16.666667%}.mx-2\/12{margin-left:16.666667%;margin-right:16.666667%}.my-3\/12{margin-top:25%;margin-bottom:25%}.mx-3\/12{margin-left:25%;margin-right:25%}.my-4\/12{margin-top:33.333333%;margin-bottom:33.333333%}.mx-4\/12{margin-left:33.333333%;margin-right:33.333333%}.my-5\/12{margin-top:41.666667%;margin-bottom:41.666667%}.mx-5\/12{margin-left:41.666667%;margin-right:41.666667%}.my-6\/12{margin-top:50%;margin-bottom:50%}.mx-6\/12{margin-left:50%;margin-right:50%}.my-7\/12{margin-top:58.333333%;margin-bottom:58.333333%}.mx-7\/12{margin-left:58.333333%;margin-right:58.333333%}.my-8\/12{margin-top:66.666667%;margin-bottom:66.666667%}.mx-8\/12{margin-left:66.666667%;margin-right:66.666667%}.my-9\/12{margin-top:75%;margin-bottom:75%}.mx-9\/12{margin-left:75%;margin-right:75%}.my-10\/12{margin-top:83.333333%;margin-bottom:83.333333%}.mx-10\/12{margin-left:83.333333%;margin-right:83.333333%}.my-11\/12{margin-top:91.666667%;margin-bottom:91.666667%}.mx-11\/12{margin-left:91.666667%;margin-right:91.666667%}.my-full{margin-top:100%;margin-bottom:100%}.mx-full{margin-left:100%;margin-right:100%}.-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.-mx-2{margin-left:-.5rem;margin-right:-.5rem}.-my-3{margin-top:-.75rem;margin-bottom:-.75rem}.-mx-3{margin-left:-.75rem;margin-right:-.75rem}.-my-4{margin-top:-1rem;margin-bottom:-1rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-my-5{margin-top:-1.25rem;margin-bottom:-1.25rem}.-mx-5{margin-left:-1.25rem;margin-right:-1.25rem}.-my-6{margin-top:-1.5rem;margin-bottom:-1.5rem}.-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.-my-7{margin-top:-1.75rem;margin-bottom:-1.75rem}.-mx-7{margin-left:-1.75rem;margin-right:-1.75rem}.-my-8{margin-top:-2rem;margin-bottom:-2rem}.-mx-8{margin-left:-2rem;margin-right:-2rem}.-my-9{margin-top:-2.25rem;margin-bottom:-2.25rem}.-mx-9{margin-left:-2.25rem;margin-right:-2.25rem}.-my-10{margin-top:-2.5rem;margin-bottom:-2.5rem}.-mx-10{margin-left:-2.5rem;margin-right:-2.5rem}.-my-11{margin-top:-2.75rem;margin-bottom:-2.75rem}.-mx-11{margin-left:-2.75rem;margin-right:-2.75rem}.-my-12{margin-top:-3rem;margin-bottom:-3rem}.-mx-12{margin-left:-3rem;margin-right:-3rem}.-my-13{margin-top:-3.25rem;margin-bottom:-3.25rem}.-mx-13{margin-left:-3.25rem;margin-right:-3.25rem}.-my-14{margin-top:-3.5rem;margin-bottom:-3.5rem}.-mx-14{margin-left:-3.5rem;margin-right:-3.5rem}.-my-15{margin-top:-3.75rem;margin-bottom:-3.75rem}.-mx-15{margin-left:-3.75rem;margin-right:-3.75rem}.-my-16{margin-top:-4rem;margin-bottom:-4rem}.-mx-16{margin-left:-4rem;margin-right:-4rem}.-my-20{margin-top:-5rem;margin-bottom:-5rem}.-mx-20{margin-left:-5rem;margin-right:-5rem}.-my-24{margin-top:-6rem;margin-bottom:-6rem}.-mx-24{margin-left:-6rem;margin-right:-6rem}.-my-28{margin-top:-7rem;margin-bottom:-7rem}.-mx-28{margin-left:-7rem;margin-right:-7rem}.-my-32{margin-top:-8rem;margin-bottom:-8rem}.-mx-32{margin-left:-8rem;margin-right:-8rem}.-my-36{margin-top:-9rem;margin-bottom:-9rem}.-mx-36{margin-left:-9rem;margin-right:-9rem}.-my-40{margin-top:-10rem;margin-bottom:-10rem}.-mx-40{margin-left:-10rem;margin-right:-10rem}.-my-44{margin-top:-11rem;margin-bottom:-11rem}.-mx-44{margin-left:-11rem;margin-right:-11rem}.-my-48{margin-top:-12rem;margin-bottom:-12rem}.-mx-48{margin-left:-12rem;margin-right:-12rem}.-my-52{margin-top:-13rem;margin-bottom:-13rem}.-mx-52{margin-left:-13rem;margin-right:-13rem}.-my-56{margin-top:-14rem;margin-bottom:-14rem}.-mx-56{margin-left:-14rem;margin-right:-14rem}.-my-60{margin-top:-15rem;margin-bottom:-15rem}.-mx-60{margin-left:-15rem;margin-right:-15rem}.-my-64{margin-top:-16rem;margin-bottom:-16rem}.-mx-64{margin-left:-16rem;margin-right:-16rem}.-my-72{margin-top:-18rem;margin-bottom:-18rem}.-mx-72{margin-left:-18rem;margin-right:-18rem}.-my-80{margin-top:-20rem;margin-bottom:-20rem}.-mx-80{margin-left:-20rem;margin-right:-20rem}.-my-96{margin-top:-24rem;margin-bottom:-24rem}.-mx-96{margin-left:-24rem;margin-right:-24rem}.-my-px{margin-top:-1px;margin-bottom:-1px}.-mx-px{margin-left:-1px;margin-right:-1px}.-my-0\.5{margin-top:-.125rem;margin-bottom:-.125rem}.-mx-0\.5{margin-left:-.125rem;margin-right:-.125rem}.-my-1\.5{margin-top:-.375rem;margin-bottom:-.375rem}.-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.-my-2\.5{margin-top:-.625rem;margin-bottom:-.625rem}.-mx-2\.5{margin-left:-.625rem;margin-right:-.625rem}.-my-3\.5{margin-top:-.875rem;margin-bottom:-.875rem}.-mx-3\.5{margin-left:-.875rem;margin-right:-.875rem}.-my-1\/2{margin-top:-50%;margin-bottom:-50%}.-mx-1\/2{margin-left:-50%;margin-right:-50%}.-my-1\/3{margin-top:-33.33333%;margin-bottom:-33.33333%}.-mx-1\/3{margin-left:-33.33333%;margin-right:-33.33333%}.-my-2\/3{margin-top:-66.66667%;margin-bottom:-66.66667%}.-mx-2\/3{margin-left:-66.66667%;margin-right:-66.66667%}.-my-1\/4{margin-top:-25%;margin-bottom:-25%}.-mx-1\/4{margin-left:-25%;margin-right:-25%}.-my-2\/4{margin-top:-50%;margin-bottom:-50%}.-mx-2\/4{margin-left:-50%;margin-right:-50%}.-my-3\/4{margin-top:-75%;margin-bottom:-75%}.-mx-3\/4{margin-left:-75%;margin-right:-75%}.-my-1\/5{margin-top:-20%;margin-bottom:-20%}.-mx-1\/5{margin-left:-20%;margin-right:-20%}.-my-2\/5{margin-top:-40%;margin-bottom:-40%}.-mx-2\/5{margin-left:-40%;margin-right:-40%}.-my-3\/5{margin-top:-60%;margin-bottom:-60%}.-mx-3\/5{margin-left:-60%;margin-right:-60%}.-my-4\/5{margin-top:-80%;margin-bottom:-80%}.-mx-4\/5{margin-left:-80%;margin-right:-80%}.-my-1\/6{margin-top:-16.66667%;margin-bottom:-16.66667%}.-mx-1\/6{margin-left:-16.66667%;margin-right:-16.66667%}.-my-2\/6{margin-top:-33.33333%;margin-bottom:-33.33333%}.-mx-2\/6{margin-left:-33.33333%;margin-right:-33.33333%}.-my-3\/6{margin-top:-50%;margin-bottom:-50%}.-mx-3\/6{margin-left:-50%;margin-right:-50%}.-my-4\/6{margin-top:-66.66667%;margin-bottom:-66.66667%}.-mx-4\/6{margin-left:-66.66667%;margin-right:-66.66667%}.-my-5\/6{margin-top:-83.33333%;margin-bottom:-83.33333%}.-mx-5\/6{margin-left:-83.33333%;margin-right:-83.33333%}.-my-1\/12{margin-top:-8.33333%;margin-bottom:-8.33333%}.-mx-1\/12{margin-left:-8.33333%;margin-right:-8.33333%}.-my-2\/12{margin-top:-16.66667%;margin-bottom:-16.66667%}.-mx-2\/12{margin-left:-16.66667%;margin-right:-16.66667%}.-my-3\/12{margin-top:-25%;margin-bottom:-25%}.-mx-3\/12{margin-left:-25%;margin-right:-25%}.-my-4\/12{margin-top:-33.33333%;margin-bottom:-33.33333%}.-mx-4\/12{margin-left:-33.33333%;margin-right:-33.33333%}.-my-5\/12{margin-top:-41.66667%;margin-bottom:-41.66667%}.-mx-5\/12{margin-left:-41.66667%;margin-right:-41.66667%}.-my-6\/12{margin-top:-50%;margin-bottom:-50%}.-mx-6\/12{margin-left:-50%;margin-right:-50%}.-my-7\/12{margin-top:-58.33333%;margin-bottom:-58.33333%}.-mx-7\/12{margin-left:-58.33333%;margin-right:-58.33333%}.-my-8\/12{margin-top:-66.66667%;margin-bottom:-66.66667%}.-mx-8\/12{margin-left:-66.66667%;margin-right:-66.66667%}.-my-9\/12{margin-top:-75%;margin-bottom:-75%}.-mx-9\/12{margin-left:-75%;margin-right:-75%}.-my-10\/12{margin-top:-83.33333%;margin-bottom:-83.33333%}.-mx-10\/12{margin-left:-83.33333%;margin-right:-83.33333%}.-my-11\/12{margin-top:-91.66667%;margin-bottom:-91.66667%}.-mx-11\/12{margin-left:-91.66667%;margin-right:-91.66667%}.-my-full{margin-top:-100%;margin-bottom:-100%}.-mx-full{margin-left:-100%;margin-right:-100%}.mt-0{margin-top:0}.mr-0{margin-right:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mt-5{margin-top:1.25rem}.mr-5{margin-right:1.25rem}.mb-5{margin-bottom:1.25rem}.ml-5{margin-left:1.25rem}.mt-6{margin-top:1.5rem}.mr-6{margin-right:1.5rem}.mb-6{margin-bottom:1.5rem}.ml-6{margin-left:1.5rem}.mt-7{margin-top:1.75rem}.mr-7{margin-right:1.75rem}.mb-7{margin-bottom:1.75rem}.ml-7{margin-left:1.75rem}.mt-8{margin-top:2rem}.mr-8{margin-right:2rem}.mb-8{margin-bottom:2rem}.ml-8{margin-left:2rem}.mt-9{margin-top:2.25rem}.mr-9{margin-right:2.25rem}.mb-9{margin-bottom:2.25rem}.ml-9{margin-left:2.25rem}.mt-10{margin-top:2.5rem}.mr-10{margin-right:2.5rem}.mb-10{margin-bottom:2.5rem}.ml-10{margin-left:2.5rem}.mt-11{margin-top:2.75rem}.mr-11{margin-right:2.75rem}.mb-11{margin-bottom:2.75rem}.ml-11{margin-left:2.75rem}.mt-12{margin-top:3rem}.mr-12{margin-right:3rem}.mb-12{margin-bottom:3rem}.ml-12{margin-left:3rem}.mt-13{margin-top:3.25rem}.mr-13{margin-right:3.25rem}.mb-13{margin-bottom:3.25rem}.ml-13{margin-left:3.25rem}.mt-14{margin-top:3.5rem}.mr-14{margin-right:3.5rem}.mb-14{margin-bottom:3.5rem}.ml-14{margin-left:3.5rem}.mt-15{margin-top:3.75rem}.mr-15{margin-right:3.75rem}.mb-15{margin-bottom:3.75rem}.ml-15{margin-left:3.75rem}.mt-16{margin-top:4rem}.mr-16{margin-right:4rem}.mb-16{margin-bottom:4rem}.ml-16{margin-left:4rem}.mt-20{margin-top:5rem}.mr-20{margin-right:5rem}.mb-20{margin-bottom:5rem}.ml-20{margin-left:5rem}.mt-24{margin-top:6rem}.mr-24{margin-right:6rem}.mb-24{margin-bottom:6rem}.ml-24{margin-left:6rem}.mt-28{margin-top:7rem}.mr-28{margin-right:7rem}.mb-28{margin-bottom:7rem}.ml-28{margin-left:7rem}.mt-32{margin-top:8rem}.mr-32{margin-right:8rem}.mb-32{margin-bottom:8rem}.ml-32{margin-left:8rem}.mt-36{margin-top:9rem}.mr-36{margin-right:9rem}.mb-36{margin-bottom:9rem}.ml-36{margin-left:9rem}.mt-40{margin-top:10rem}.mr-40{margin-right:10rem}.mb-40{margin-bottom:10rem}.ml-40{margin-left:10rem}.mt-44{margin-top:11rem}.mr-44{margin-right:11rem}.mb-44{margin-bottom:11rem}.ml-44{margin-left:11rem}.mt-48{margin-top:12rem}.mr-48{margin-right:12rem}.mb-48{margin-bottom:12rem}.ml-48{margin-left:12rem}.mt-52{margin-top:13rem}.mr-52{margin-right:13rem}.mb-52{margin-bottom:13rem}.ml-52{margin-left:13rem}.mt-56{margin-top:14rem}.mr-56{margin-right:14rem}.mb-56{margin-bottom:14rem}.ml-56{margin-left:14rem}.mt-60{margin-top:15rem}.mr-60{margin-right:15rem}.mb-60{margin-bottom:15rem}.ml-60{margin-left:15rem}.mt-64{margin-top:16rem}.mr-64{margin-right:16rem}.mb-64{margin-bottom:16rem}.ml-64{margin-left:16rem}.mt-72{margin-top:18rem}.mr-72{margin-right:18rem}.mb-72{margin-bottom:18rem}.ml-72{margin-left:18rem}.mt-80{margin-top:20rem}.mr-80{margin-right:20rem}.mb-80{margin-bottom:20rem}.ml-80{margin-left:20rem}.mt-96{margin-top:24rem}.mr-96{margin-right:24rem}.mb-96{margin-bottom:24rem}.ml-96{margin-left:24rem}.mt-auto{margin-top:auto}.mr-auto{margin-right:auto}.mb-auto{margin-bottom:auto}.ml-auto{margin-left:auto}.mt-px{margin-top:1px}.mr-px{margin-right:1px}.mb-px{margin-bottom:1px}.ml-px{margin-left:1px}.mt-0\.5{margin-top:.125rem}.mr-0\.5{margin-right:.125rem}.mb-0\.5{margin-bottom:.125rem}.ml-0\.5{margin-left:.125rem}.mt-1\.5{margin-top:.375rem}.mr-1\.5{margin-right:.375rem}.mb-1\.5{margin-bottom:.375rem}.ml-1\.5{margin-left:.375rem}.mt-2\.5{margin-top:.625rem}.mr-2\.5{margin-right:.625rem}.mb-2\.5{margin-bottom:.625rem}.ml-2\.5{margin-left:.625rem}.mt-3\.5{margin-top:.875rem}.mr-3\.5{margin-right:.875rem}.mb-3\.5{margin-bottom:.875rem}.ml-3\.5{margin-left:.875rem}.mt-1\/2{margin-top:50%}.mr-1\/2{margin-right:50%}.mb-1\/2{margin-bottom:50%}.ml-1\/2{margin-left:50%}.mt-1\/3{margin-top:33.333333%}.mr-1\/3{margin-right:33.333333%}.mb-1\/3{margin-bottom:33.333333%}.ml-1\/3{margin-left:33.333333%}.mt-2\/3{margin-top:66.666667%}.mr-2\/3{margin-right:66.666667%}.mb-2\/3{margin-bottom:66.666667%}.ml-2\/3{margin-left:66.666667%}.mt-1\/4{margin-top:25%}.mr-1\/4{margin-right:25%}.mb-1\/4{margin-bottom:25%}.ml-1\/4{margin-left:25%}.mt-2\/4{margin-top:50%}.mr-2\/4{margin-right:50%}.mb-2\/4{margin-bottom:50%}.ml-2\/4{margin-left:50%}.mt-3\/4{margin-top:75%}.mr-3\/4{margin-right:75%}.mb-3\/4{margin-bottom:75%}.ml-3\/4{margin-left:75%}.mt-1\/5{margin-top:20%}.mr-1\/5{margin-right:20%}.mb-1\/5{margin-bottom:20%}.ml-1\/5{margin-left:20%}.mt-2\/5{margin-top:40%}.mr-2\/5{margin-right:40%}.mb-2\/5{margin-bottom:40%}.ml-2\/5{margin-left:40%}.mt-3\/5{margin-top:60%}.mr-3\/5{margin-right:60%}.mb-3\/5{margin-bottom:60%}.ml-3\/5{margin-left:60%}.mt-4\/5{margin-top:80%}.mr-4\/5{margin-right:80%}.mb-4\/5{margin-bottom:80%}.ml-4\/5{margin-left:80%}.mt-1\/6{margin-top:16.666667%}.mr-1\/6{margin-right:16.666667%}.mb-1\/6{margin-bottom:16.666667%}.ml-1\/6{margin-left:16.666667%}.mt-2\/6{margin-top:33.333333%}.mr-2\/6{margin-right:33.333333%}.mb-2\/6{margin-bottom:33.333333%}.ml-2\/6{margin-left:33.333333%}.mt-3\/6{margin-top:50%}.mr-3\/6{margin-right:50%}.mb-3\/6{margin-bottom:50%}.ml-3\/6{margin-left:50%}.mt-4\/6{margin-top:66.666667%}.mr-4\/6{margin-right:66.666667%}.mb-4\/6{margin-bottom:66.666667%}.ml-4\/6{margin-left:66.666667%}.mt-5\/6{margin-top:83.333333%}.mr-5\/6{margin-right:83.333333%}.mb-5\/6{margin-bottom:83.333333%}.ml-5\/6{margin-left:83.333333%}.mt-1\/12{margin-top:8.333333%}.mr-1\/12{margin-right:8.333333%}.mb-1\/12{margin-bottom:8.333333%}.ml-1\/12{margin-left:8.333333%}.mt-2\/12{margin-top:16.666667%}.mr-2\/12{margin-right:16.666667%}.mb-2\/12{margin-bottom:16.666667%}.ml-2\/12{margin-left:16.666667%}.mt-3\/12{margin-top:25%}.mr-3\/12{margin-right:25%}.mb-3\/12{margin-bottom:25%}.ml-3\/12{margin-left:25%}.mt-4\/12{margin-top:33.333333%}.mr-4\/12{margin-right:33.333333%}.mb-4\/12{margin-bottom:33.333333%}.ml-4\/12{margin-left:33.333333%}.mt-5\/12{margin-top:41.666667%}.mr-5\/12{margin-right:41.666667%}.mb-5\/12{margin-bottom:41.666667%}.ml-5\/12{margin-left:41.666667%}.mt-6\/12{margin-top:50%}.mr-6\/12{margin-right:50%}.mb-6\/12{margin-bottom:50%}.ml-6\/12{margin-left:50%}.mt-7\/12{margin-top:58.333333%}.mr-7\/12{margin-right:58.333333%}.mb-7\/12{margin-bottom:58.333333%}.ml-7\/12{margin-left:58.333333%}.mt-8\/12{margin-top:66.666667%}.mr-8\/12{margin-right:66.666667%}.mb-8\/12{margin-bottom:66.666667%}.ml-8\/12{margin-left:66.666667%}.mt-9\/12{margin-top:75%}.mr-9\/12{margin-right:75%}.mb-9\/12{margin-bottom:75%}.ml-9\/12{margin-left:75%}.mt-10\/12{margin-top:83.333333%}.mr-10\/12{margin-right:83.333333%}.mb-10\/12{margin-bottom:83.333333%}.ml-10\/12{margin-left:83.333333%}.mt-11\/12{margin-top:91.666667%}.mr-11\/12{margin-right:91.666667%}.mb-11\/12{margin-bottom:91.666667%}.ml-11\/12{margin-left:91.666667%}.mt-full{margin-top:100%}.mr-full{margin-right:100%}.mb-full{margin-bottom:100%}.ml-full{margin-left:100%}.-mt-1{margin-top:-.25rem}.-mr-1{margin-right:-.25rem}.-mb-1{margin-bottom:-.25rem}.-ml-1{margin-left:-.25rem}.-mt-2{margin-top:-.5rem}.-mr-2{margin-right:-.5rem}.-mb-2{margin-bottom:-.5rem}.-ml-2{margin-left:-.5rem}.-mt-3{margin-top:-.75rem}.-mr-3{margin-right:-.75rem}.-mb-3{margin-bottom:-.75rem}.-ml-3{margin-left:-.75rem}.-mt-4{margin-top:-1rem}.-mr-4{margin-right:-1rem}.-mb-4{margin-bottom:-1rem}.-ml-4{margin-left:-1rem}.-mt-5{margin-top:-1.25rem}.-mr-5{margin-right:-1.25rem}.-mb-5{margin-bottom:-1.25rem}.-ml-5{margin-left:-1.25rem}.-mt-6{margin-top:-1.5rem}.-mr-6{margin-right:-1.5rem}.-mb-6{margin-bottom:-1.5rem}.-ml-6{margin-left:-1.5rem}.-mt-7{margin-top:-1.75rem}.-mr-7{margin-right:-1.75rem}.-mb-7{margin-bottom:-1.75rem}.-ml-7{margin-left:-1.75rem}.-mt-8{margin-top:-2rem}.-mr-8{margin-right:-2rem}.-mb-8{margin-bottom:-2rem}.-ml-8{margin-left:-2rem}.-mt-9{margin-top:-2.25rem}.-mr-9{margin-right:-2.25rem}.-mb-9{margin-bottom:-2.25rem}.-ml-9{margin-left:-2.25rem}.-mt-10{margin-top:-2.5rem}.-mr-10{margin-right:-2.5rem}.-mb-10{margin-bottom:-2.5rem}.-ml-10{margin-left:-2.5rem}.-mt-11{margin-top:-2.75rem}.-mr-11{margin-right:-2.75rem}.-mb-11{margin-bottom:-2.75rem}.-ml-11{margin-left:-2.75rem}.-mt-12{margin-top:-3rem}.-mr-12{margin-right:-3rem}.-mb-12{margin-bottom:-3rem}.-ml-12{margin-left:-3rem}.-mt-13{margin-top:-3.25rem}.-mr-13{margin-right:-3.25rem}.-mb-13{margin-bottom:-3.25rem}.-ml-13{margin-left:-3.25rem}.-mt-14{margin-top:-3.5rem}.-mr-14{margin-right:-3.5rem}.-mb-14{margin-bottom:-3.5rem}.-ml-14{margin-left:-3.5rem}.-mt-15{margin-top:-3.75rem}.-mr-15{margin-right:-3.75rem}.-mb-15{margin-bottom:-3.75rem}.-ml-15{margin-left:-3.75rem}.-mt-16{margin-top:-4rem}.-mr-16{margin-right:-4rem}.-mb-16{margin-bottom:-4rem}.-ml-16{margin-left:-4rem}.-mt-20{margin-top:-5rem}.-mr-20{margin-right:-5rem}.-mb-20{margin-bottom:-5rem}.-ml-20{margin-left:-5rem}.-mt-24{margin-top:-6rem}.-mr-24{margin-right:-6rem}.-mb-24{margin-bottom:-6rem}.-ml-24{margin-left:-6rem}.-mt-28{margin-top:-7rem}.-mr-28{margin-right:-7rem}.-mb-28{margin-bottom:-7rem}.-ml-28{margin-left:-7rem}.-mt-32{margin-top:-8rem}.-mr-32{margin-right:-8rem}.-mb-32{margin-bottom:-8rem}.-ml-32{margin-left:-8rem}.-mt-36{margin-top:-9rem}.-mr-36{margin-right:-9rem}.-mb-36{margin-bottom:-9rem}.-ml-36{margin-left:-9rem}.-mt-40{margin-top:-10rem}.-mr-40{margin-right:-10rem}.-mb-40{margin-bottom:-10rem}.-ml-40{margin-left:-10rem}.-mt-44{margin-top:-11rem}.-mr-44{margin-right:-11rem}.-mb-44{margin-bottom:-11rem}.-ml-44{margin-left:-11rem}.-mt-48{margin-top:-12rem}.-mr-48{margin-right:-12rem}.-mb-48{margin-bottom:-12rem}.-ml-48{margin-left:-12rem}.-mt-52{margin-top:-13rem}.-mr-52{margin-right:-13rem}.-mb-52{margin-bottom:-13rem}.-ml-52{margin-left:-13rem}.-mt-56{margin-top:-14rem}.-mr-56{margin-right:-14rem}.-mb-56{margin-bottom:-14rem}.-ml-56{margin-left:-14rem}.-mt-60{margin-top:-15rem}.-mr-60{margin-right:-15rem}.-mb-60{margin-bottom:-15rem}.-ml-60{margin-left:-15rem}.-mt-64{margin-top:-16rem}.-mr-64{margin-right:-16rem}.-mb-64{margin-bottom:-16rem}.-ml-64{margin-left:-16rem}.-mt-72{margin-top:-18rem}.-mr-72{margin-right:-18rem}.-mb-72{margin-bottom:-18rem}.-ml-72{margin-left:-18rem}.-mt-80{margin-top:-20rem}.-mr-80{margin-right:-20rem}.-mb-80{margin-bottom:-20rem}.-ml-80{margin-left:-20rem}.-mt-96{margin-top:-24rem}.-mr-96{margin-right:-24rem}.-mb-96{margin-bottom:-24rem}.-ml-96{margin-left:-24rem}.-mt-px{margin-top:-1px}.-mr-px{margin-right:-1px}.-mb-px{margin-bottom:-1px}.-ml-px{margin-left:-1px}.-mt-0\.5{margin-top:-.125rem}.-mr-0\.5{margin-right:-.125rem}.-mb-0\.5{margin-bottom:-.125rem}.-ml-0\.5{margin-left:-.125rem}.-mt-1\.5{margin-top:-.375rem}.-mr-1\.5{margin-right:-.375rem}.-mb-1\.5{margin-bottom:-.375rem}.-ml-1\.5{margin-left:-.375rem}.-mt-2\.5{margin-top:-.625rem}.-mr-2\.5{margin-right:-.625rem}.-mb-2\.5{margin-bottom:-.625rem}.-ml-2\.5{margin-left:-.625rem}.-mt-3\.5{margin-top:-.875rem}.-mr-3\.5{margin-right:-.875rem}.-mb-3\.5{margin-bottom:-.875rem}.-ml-3\.5{margin-left:-.875rem}.-mt-1\/2{margin-top:-50%}.-mr-1\/2{margin-right:-50%}.-mb-1\/2{margin-bottom:-50%}.-ml-1\/2{margin-left:-50%}.-mt-1\/3{margin-top:-33.33333%}.-mr-1\/3{margin-right:-33.33333%}.-mb-1\/3{margin-bottom:-33.33333%}.-ml-1\/3{margin-left:-33.33333%}.-mt-2\/3{margin-top:-66.66667%}.-mr-2\/3{margin-right:-66.66667%}.-mb-2\/3{margin-bottom:-66.66667%}.-ml-2\/3{margin-left:-66.66667%}.-mt-1\/4{margin-top:-25%}.-mr-1\/4{margin-right:-25%}.-mb-1\/4{margin-bottom:-25%}.-ml-1\/4{margin-left:-25%}.-mt-2\/4{margin-top:-50%}.-mr-2\/4{margin-right:-50%}.-mb-2\/4{margin-bottom:-50%}.-ml-2\/4{margin-left:-50%}.-mt-3\/4{margin-top:-75%}.-mr-3\/4{margin-right:-75%}.-mb-3\/4{margin-bottom:-75%}.-ml-3\/4{margin-left:-75%}.-mt-1\/5{margin-top:-20%}.-mr-1\/5{margin-right:-20%}.-mb-1\/5{margin-bottom:-20%}.-ml-1\/5{margin-left:-20%}.-mt-2\/5{margin-top:-40%}.-mr-2\/5{margin-right:-40%}.-mb-2\/5{margin-bottom:-40%}.-ml-2\/5{margin-left:-40%}.-mt-3\/5{margin-top:-60%}.-mr-3\/5{margin-right:-60%}.-mb-3\/5{margin-bottom:-60%}.-ml-3\/5{margin-left:-60%}.-mt-4\/5{margin-top:-80%}.-mr-4\/5{margin-right:-80%}.-mb-4\/5{margin-bottom:-80%}.-ml-4\/5{margin-left:-80%}.-mt-1\/6{margin-top:-16.66667%}.-mr-1\/6{margin-right:-16.66667%}.-mb-1\/6{margin-bottom:-16.66667%}.-ml-1\/6{margin-left:-16.66667%}.-mt-2\/6{margin-top:-33.33333%}.-mr-2\/6{margin-right:-33.33333%}.-mb-2\/6{margin-bottom:-33.33333%}.-ml-2\/6{margin-left:-33.33333%}.-mt-3\/6{margin-top:-50%}.-mr-3\/6{margin-right:-50%}.-mb-3\/6{margin-bottom:-50%}.-ml-3\/6{margin-left:-50%}.-mt-4\/6{margin-top:-66.66667%}.-mr-4\/6{margin-right:-66.66667%}.-mb-4\/6{margin-bottom:-66.66667%}.-ml-4\/6{margin-left:-66.66667%}.-mt-5\/6{margin-top:-83.33333%}.-mr-5\/6{margin-right:-83.33333%}.-mb-5\/6{margin-bottom:-83.33333%}.-ml-5\/6{margin-left:-83.33333%}.-mt-1\/12{margin-top:-8.33333%}.-mr-1\/12{margin-right:-8.33333%}.-mb-1\/12{margin-bottom:-8.33333%}.-ml-1\/12{margin-left:-8.33333%}.-mt-2\/12{margin-top:-16.66667%}.-mr-2\/12{margin-right:-16.66667%}.-mb-2\/12{margin-bottom:-16.66667%}.-ml-2\/12{margin-left:-16.66667%}.-mt-3\/12{margin-top:-25%}.-mr-3\/12{margin-right:-25%}.-mb-3\/12{margin-bottom:-25%}.-ml-3\/12{margin-left:-25%}.-mt-4\/12{margin-top:-33.33333%}.-mr-4\/12{margin-right:-33.33333%}.-mb-4\/12{margin-bottom:-33.33333%}.-ml-4\/12{margin-left:-33.33333%}.-mt-5\/12{margin-top:-41.66667%}.-mr-5\/12{margin-right:-41.66667%}.-mb-5\/12{margin-bottom:-41.66667%}.-ml-5\/12{margin-left:-41.66667%}.-mt-6\/12{margin-top:-50%}.-mr-6\/12{margin-right:-50%}.-mb-6\/12{margin-bottom:-50%}.-ml-6\/12{margin-left:-50%}.-mt-7\/12{margin-top:-58.33333%}.-mr-7\/12{margin-right:-58.33333%}.-mb-7\/12{margin-bottom:-58.33333%}.-ml-7\/12{margin-left:-58.33333%}.-mt-8\/12{margin-top:-66.66667%}.-mr-8\/12{margin-right:-66.66667%}.-mb-8\/12{margin-bottom:-66.66667%}.-ml-8\/12{margin-left:-66.66667%}.-mt-9\/12{margin-top:-75%}.-mr-9\/12{margin-right:-75%}.-mb-9\/12{margin-bottom:-75%}.-ml-9\/12{margin-left:-75%}.-mt-10\/12{margin-top:-83.33333%}.-mr-10\/12{margin-right:-83.33333%}.-mb-10\/12{margin-bottom:-83.33333%}.-ml-10\/12{margin-left:-83.33333%}.-mt-11\/12{margin-top:-91.66667%}.-mr-11\/12{margin-right:-91.66667%}.-mb-11\/12{margin-bottom:-91.66667%}.-ml-11\/12{margin-left:-91.66667%}.-mt-full{margin-top:-100%}.-mr-full{margin-right:-100%}.-mb-full{margin-bottom:-100%}.-ml-full{margin-left:-100%}.max-h-0{max-height:0}.max-h-1{max-height:.25rem}.max-h-2{max-height:.5rem}.max-h-3{max-height:.75rem}.max-h-4{max-height:1rem}.max-h-5{max-height:1.25rem}.max-h-6{max-height:1.5rem}.max-h-7{max-height:1.75rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.max-h-10{max-height:2.5rem}.max-h-11{max-height:2.75rem}.max-h-12{max-height:3rem}.max-h-13{max-height:3.25rem}.max-h-14{max-height:3.5rem}.max-h-15{max-height:3.75rem}.max-h-16{max-height:4rem}.max-h-20{max-height:5rem}.max-h-24{max-height:6rem}.max-h-28{max-height:7rem}.max-h-32{max-height:8rem}.max-h-36{max-height:9rem}.max-h-40{max-height:10rem}.max-h-44{max-height:11rem}.max-h-48{max-height:12rem}.max-h-52{max-height:13rem}.max-h-56{max-height:14rem}.max-h-60{max-height:15rem}.max-h-64{max-height:16rem}.max-h-72{max-height:18rem}.max-h-80{max-height:20rem}.max-h-96{max-height:24rem}.max-h-screen{max-height:100vh}.max-h-px{max-height:1px}.max-h-0\.5{max-height:.125rem}.max-h-1\.5{max-height:.375rem}.max-h-2\.5{max-height:.625rem}.max-h-3\.5{max-height:.875rem}.max-h-1\/2{max-height:50%}.max-h-1\/3{max-height:33.333333%}.max-h-2\/3{max-height:66.666667%}.max-h-1\/4{max-height:25%}.max-h-2\/4{max-height:50%}.max-h-3\/4{max-height:75%}.max-h-1\/5{max-height:20%}.max-h-2\/5{max-height:40%}.max-h-3\/5{max-height:60%}.max-h-4\/5{max-height:80%}.max-h-1\/6{max-height:16.666667%}.max-h-2\/6{max-height:33.333333%}.max-h-3\/6{max-height:50%}.max-h-4\/6{max-height:66.666667%}.max-h-5\/6{max-height:83.333333%}.max-h-1\/12{max-height:8.333333%}.max-h-2\/12{max-height:16.666667%}.max-h-3\/12{max-height:25%}.max-h-4\/12{max-height:33.333333%}.max-h-5\/12{max-height:41.666667%}.max-h-6\/12{max-height:50%}.max-h-7\/12{max-height:58.333333%}.max-h-8\/12{max-height:66.666667%}.max-h-9\/12{max-height:75%}.max-h-10\/12{max-height:83.333333%}.max-h-11\/12{max-height:91.666667%}.max-h-full{max-height:100%}.max-w-0{max-width:0}.max-w-none{max-width:none}.max-w-xs{max-width:20rem}.max-w-sm{max-width:24rem}.max-w-md{max-width:28rem}.max-w-lg{max-width:32rem}.max-w-xl{max-width:36rem}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-full{max-width:100%}.max-w-min-content{max-width:-webkit-min-content;max-width:-moz-min-content;max-width:min-content}.max-w-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.max-w-prose{max-width:65ch}.max-w-screen-sm{max-width:640px}.max-w-screen-md{max-width:768px}.max-w-screen-lg{max-width:1024px}.max-w-screen-xl{max-width:1280px}.min-h-0{min-height:0}.min-h-full{min-height:100%}.min-h-screen{min-height:100vh}.min-w-0{min-width:0}.min-w-full{min-width:100%}.min-w-min-content{min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.min-w-max-content{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.object-fill{-o-object-fit:fill;object-fit:fill}.object-none{-o-object-fit:none;object-fit:none}.object-scale-down{-o-object-fit:scale-down;object-fit:scale-down}.object-bottom{-o-object-position:bottom;object-position:bottom}.object-center{-o-object-position:center;object-position:center}.object-left{-o-object-position:left;object-position:left}.object-left-bottom{-o-object-position:left bottom;object-position:left bottom}.object-left-top{-o-object-position:left top;object-position:left top}.object-right{-o-object-position:right;object-position:right}.object-right-bottom{-o-object-position:right bottom;object-position:right bottom}.object-right-top{-o-object-position:right top;object-position:right top}.object-top{-o-object-position:top;object-position:top}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.opacity-100{opacity:1}.hover\:opacity-0:hover{opacity:0}.hover\:opacity-25:hover{opacity:.25}.hover\:opacity-50:hover{opacity:.5}.hover\:opacity-75:hover{opacity:.75}.hover\:opacity-100:hover{opacity:1}.focus\:opacity-0:focus{opacity:0}.focus\:opacity-25:focus{opacity:.25}.focus\:opacity-50:focus{opacity:.5}.focus\:opacity-75:focus{opacity:.75}.focus\:opacity-100:focus{opacity:1}.outline-none{outline:0}.focus\:outline-none:focus{outline:0}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.overflow-x-visible{overflow-x:visible}.overflow-y-visible{overflow-y:visible}.overflow-x-scroll{overflow-x:scroll}.overflow-y-scroll{overflow-y:scroll}.scrolling-touch{-webkit-overflow-scrolling:touch}.scrolling-auto{-webkit-overflow-scrolling:auto}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-7{padding:1.75rem}.p-8{padding:2rem}.p-9{padding:2.25rem}.p-10{padding:2.5rem}.p-11{padding:2.75rem}.p-12{padding:3rem}.p-13{padding:3.25rem}.p-14{padding:3.5rem}.p-15{padding:3.75rem}.p-16{padding:4rem}.p-20{padding:5rem}.p-24{padding:6rem}.p-28{padding:7rem}.p-32{padding:8rem}.p-36{padding:9rem}.p-40{padding:10rem}.p-44{padding:11rem}.p-48{padding:12rem}.p-52{padding:13rem}.p-56{padding:14rem}.p-60{padding:15rem}.p-64{padding:16rem}.p-72{padding:18rem}.p-80{padding:20rem}.p-96{padding:24rem}.p-px{padding:1px}.p-0\.5{padding:.125rem}.p-1\.5{padding:.375rem}.p-2\.5{padding:.625rem}.p-3\.5{padding:.875rem}.p-1\/2{padding:50%}.p-1\/3{padding:33.333333%}.p-2\/3{padding:66.666667%}.p-1\/4{padding:25%}.p-2\/4{padding:50%}.p-3\/4{padding:75%}.p-1\/5{padding:20%}.p-2\/5{padding:40%}.p-3\/5{padding:60%}.p-4\/5{padding:80%}.p-1\/6{padding:16.666667%}.p-2\/6{padding:33.333333%}.p-3\/6{padding:50%}.p-4\/6{padding:66.666667%}.p-5\/6{padding:83.333333%}.p-1\/12{padding:8.333333%}.p-2\/12{padding:16.666667%}.p-3\/12{padding:25%}.p-4\/12{padding:33.333333%}.p-5\/12{padding:41.666667%}.p-6\/12{padding:50%}.p-7\/12{padding:58.333333%}.p-8\/12{padding:66.666667%}.p-9\/12{padding:75%}.p-10\/12{padding:83.333333%}.p-11\/12{padding:91.666667%}.p-full{padding:100%}.py-0{padding-top:0;padding-bottom:0}.px-0{padding-left:0;padding-right:0}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.px-7{padding-left:1.75rem;padding-right:1.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}.px-8{padding-left:2rem;padding-right:2rem}.py-9{padding-top:2.25rem;padding-bottom:2.25rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.py-11{padding-top:2.75rem;padding-bottom:2.75rem}.px-11{padding-left:2.75rem;padding-right:2.75rem}.py-12{padding-top:3rem;padding-bottom:3rem}.px-12{padding-left:3rem;padding-right:3rem}.py-13{padding-top:3.25rem;padding-bottom:3.25rem}.px-13{padding-left:3.25rem;padding-right:3.25rem}.py-14{padding-top:3.5rem;padding-bottom:3.5rem}.px-14{padding-left:3.5rem;padding-right:3.5rem}.py-15{padding-top:3.75rem;padding-bottom:3.75rem}.px-15{padding-left:3.75rem;padding-right:3.75rem}.py-16{padding-top:4rem;padding-bottom:4rem}.px-16{padding-left:4rem;padding-right:4rem}.py-20{padding-top:5rem;padding-bottom:5rem}.px-20{padding-left:5rem;padding-right:5rem}.py-24{padding-top:6rem;padding-bottom:6rem}.px-24{padding-left:6rem;padding-right:6rem}.py-28{padding-top:7rem;padding-bottom:7rem}.px-28{padding-left:7rem;padding-right:7rem}.py-32{padding-top:8rem;padding-bottom:8rem}.px-32{padding-left:8rem;padding-right:8rem}.py-36{padding-top:9rem;padding-bottom:9rem}.px-36{padding-left:9rem;padding-right:9rem}.py-40{padding-top:10rem;padding-bottom:10rem}.px-40{padding-left:10rem;padding-right:10rem}.py-44{padding-top:11rem;padding-bottom:11rem}.px-44{padding-left:11rem;padding-right:11rem}.py-48{padding-top:12rem;padding-bottom:12rem}.px-48{padding-left:12rem;padding-right:12rem}.py-52{padding-top:13rem;padding-bottom:13rem}.px-52{padding-left:13rem;padding-right:13rem}.py-56{padding-top:14rem;padding-bottom:14rem}.px-56{padding-left:14rem;padding-right:14rem}.py-60{padding-top:15rem;padding-bottom:15rem}.px-60{padding-left:15rem;padding-right:15rem}.py-64{padding-top:16rem;padding-bottom:16rem}.px-64{padding-left:16rem;padding-right:16rem}.py-72{padding-top:18rem;padding-bottom:18rem}.px-72{padding-left:18rem;padding-right:18rem}.py-80{padding-top:20rem;padding-bottom:20rem}.px-80{padding-left:20rem;padding-right:20rem}.py-96{padding-top:24rem;padding-bottom:24rem}.px-96{padding-left:24rem;padding-right:24rem}.py-px{padding-top:1px;padding-bottom:1px}.px-px{padding-left:1px;padding-right:1px}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.py-1\/2{padding-top:50%;padding-bottom:50%}.px-1\/2{padding-left:50%;padding-right:50%}.py-1\/3{padding-top:33.333333%;padding-bottom:33.333333%}.px-1\/3{padding-left:33.333333%;padding-right:33.333333%}.py-2\/3{padding-top:66.666667%;padding-bottom:66.666667%}.px-2\/3{padding-left:66.666667%;padding-right:66.666667%}.py-1\/4{padding-top:25%;padding-bottom:25%}.px-1\/4{padding-left:25%;padding-right:25%}.py-2\/4{padding-top:50%;padding-bottom:50%}.px-2\/4{padding-left:50%;padding-right:50%}.py-3\/4{padding-top:75%;padding-bottom:75%}.px-3\/4{padding-left:75%;padding-right:75%}.py-1\/5{padding-top:20%;padding-bottom:20%}.px-1\/5{padding-left:20%;padding-right:20%}.py-2\/5{padding-top:40%;padding-bottom:40%}.px-2\/5{padding-left:40%;padding-right:40%}.py-3\/5{padding-top:60%;padding-bottom:60%}.px-3\/5{padding-left:60%;padding-right:60%}.py-4\/5{padding-top:80%;padding-bottom:80%}.px-4\/5{padding-left:80%;padding-right:80%}.py-1\/6{padding-top:16.666667%;padding-bottom:16.666667%}.px-1\/6{padding-left:16.666667%;padding-right:16.666667%}.py-2\/6{padding-top:33.333333%;padding-bottom:33.333333%}.px-2\/6{padding-left:33.333333%;padding-right:33.333333%}.py-3\/6{padding-top:50%;padding-bottom:50%}.px-3\/6{padding-left:50%;padding-right:50%}.py-4\/6{padding-top:66.666667%;padding-bottom:66.666667%}.px-4\/6{padding-left:66.666667%;padding-right:66.666667%}.py-5\/6{padding-top:83.333333%;padding-bottom:83.333333%}.px-5\/6{padding-left:83.333333%;padding-right:83.333333%}.py-1\/12{padding-top:8.333333%;padding-bottom:8.333333%}.px-1\/12{padding-left:8.333333%;padding-right:8.333333%}.py-2\/12{padding-top:16.666667%;padding-bottom:16.666667%}.px-2\/12{padding-left:16.666667%;padding-right:16.666667%}.py-3\/12{padding-top:25%;padding-bottom:25%}.px-3\/12{padding-left:25%;padding-right:25%}.py-4\/12{padding-top:33.333333%;padding-bottom:33.333333%}.px-4\/12{padding-left:33.333333%;padding-right:33.333333%}.py-5\/12{padding-top:41.666667%;padding-bottom:41.666667%}.px-5\/12{padding-left:41.666667%;padding-right:41.666667%}.py-6\/12{padding-top:50%;padding-bottom:50%}.px-6\/12{padding-left:50%;padding-right:50%}.py-7\/12{padding-top:58.333333%;padding-bottom:58.333333%}.px-7\/12{padding-left:58.333333%;padding-right:58.333333%}.py-8\/12{padding-top:66.666667%;padding-bottom:66.666667%}.px-8\/12{padding-left:66.666667%;padding-right:66.666667%}.py-9\/12{padding-top:75%;padding-bottom:75%}.px-9\/12{padding-left:75%;padding-right:75%}.py-10\/12{padding-top:83.333333%;padding-bottom:83.333333%}.px-10\/12{padding-left:83.333333%;padding-right:83.333333%}.py-11\/12{padding-top:91.666667%;padding-bottom:91.666667%}.px-11\/12{padding-left:91.666667%;padding-right:91.666667%}.py-full{padding-top:100%;padding-bottom:100%}.px-full{padding-left:100%;padding-right:100%}.pt-0{padding-top:0}.pr-0{padding-right:0}.pb-0{padding-bottom:0}.pl-0{padding-left:0}.pt-1{padding-top:.25rem}.pr-1{padding-right:.25rem}.pb-1{padding-bottom:.25rem}.pl-1{padding-left:.25rem}.pt-2{padding-top:.5rem}.pr-2{padding-right:.5rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-3{padding-top:.75rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pl-3{padding-left:.75rem}.pt-4{padding-top:1rem}.pr-4{padding-right:1rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pt-5{padding-top:1.25rem}.pr-5{padding-right:1.25rem}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.pt-6{padding-top:1.5rem}.pr-6{padding-right:1.5rem}.pb-6{padding-bottom:1.5rem}.pl-6{padding-left:1.5rem}.pt-7{padding-top:1.75rem}.pr-7{padding-right:1.75rem}.pb-7{padding-bottom:1.75rem}.pl-7{padding-left:1.75rem}.pt-8{padding-top:2rem}.pr-8{padding-right:2rem}.pb-8{padding-bottom:2rem}.pl-8{padding-left:2rem}.pt-9{padding-top:2.25rem}.pr-9{padding-right:2.25rem}.pb-9{padding-bottom:2.25rem}.pl-9{padding-left:2.25rem}.pt-10{padding-top:2.5rem}.pr-10{padding-right:2.5rem}.pb-10{padding-bottom:2.5rem}.pl-10{padding-left:2.5rem}.pt-11{padding-top:2.75rem}.pr-11{padding-right:2.75rem}.pb-11{padding-bottom:2.75rem}.pl-11{padding-left:2.75rem}.pt-12{padding-top:3rem}.pr-12{padding-right:3rem}.pb-12{padding-bottom:3rem}.pl-12{padding-left:3rem}.pt-13{padding-top:3.25rem}.pr-13{padding-right:3.25rem}.pb-13{padding-bottom:3.25rem}.pl-13{padding-left:3.25rem}.pt-14{padding-top:3.5rem}.pr-14{padding-right:3.5rem}.pb-14{padding-bottom:3.5rem}.pl-14{padding-left:3.5rem}.pt-15{padding-top:3.75rem}.pr-15{padding-right:3.75rem}.pb-15{padding-bottom:3.75rem}.pl-15{padding-left:3.75rem}.pt-16{padding-top:4rem}.pr-16{padding-right:4rem}.pb-16{padding-bottom:4rem}.pl-16{padding-left:4rem}.pt-20{padding-top:5rem}.pr-20{padding-right:5rem}.pb-20{padding-bottom:5rem}.pl-20{padding-left:5rem}.pt-24{padding-top:6rem}.pr-24{padding-right:6rem}.pb-24{padding-bottom:6rem}.pl-24{padding-left:6rem}.pt-28{padding-top:7rem}.pr-28{padding-right:7rem}.pb-28{padding-bottom:7rem}.pl-28{padding-left:7rem}.pt-32{padding-top:8rem}.pr-32{padding-right:8rem}.pb-32{padding-bottom:8rem}.pl-32{padding-left:8rem}.pt-36{padding-top:9rem}.pr-36{padding-right:9rem}.pb-36{padding-bottom:9rem}.pl-36{padding-left:9rem}.pt-40{padding-top:10rem}.pr-40{padding-right:10rem}.pb-40{padding-bottom:10rem}.pl-40{padding-left:10rem}.pt-44{padding-top:11rem}.pr-44{padding-right:11rem}.pb-44{padding-bottom:11rem}.pl-44{padding-left:11rem}.pt-48{padding-top:12rem}.pr-48{padding-right:12rem}.pb-48{padding-bottom:12rem}.pl-48{padding-left:12rem}.pt-52{padding-top:13rem}.pr-52{padding-right:13rem}.pb-52{padding-bottom:13rem}.pl-52{padding-left:13rem}.pt-56{padding-top:14rem}.pr-56{padding-right:14rem}.pb-56{padding-bottom:14rem}.pl-56{padding-left:14rem}.pt-60{padding-top:15rem}.pr-60{padding-right:15rem}.pb-60{padding-bottom:15rem}.pl-60{padding-left:15rem}.pt-64{padding-top:16rem}.pr-64{padding-right:16rem}.pb-64{padding-bottom:16rem}.pl-64{padding-left:16rem}.pt-72{padding-top:18rem}.pr-72{padding-right:18rem}.pb-72{padding-bottom:18rem}.pl-72{padding-left:18rem}.pt-80{padding-top:20rem}.pr-80{padding-right:20rem}.pb-80{padding-bottom:20rem}.pl-80{padding-left:20rem}.pt-96{padding-top:24rem}.pr-96{padding-right:24rem}.pb-96{padding-bottom:24rem}.pl-96{padding-left:24rem}.pt-px{padding-top:1px}.pr-px{padding-right:1px}.pb-px{padding-bottom:1px}.pl-px{padding-left:1px}.pt-0\.5{padding-top:.125rem}.pr-0\.5{padding-right:.125rem}.pb-0\.5{padding-bottom:.125rem}.pl-0\.5{padding-left:.125rem}.pt-1\.5{padding-top:.375rem}.pr-1\.5{padding-right:.375rem}.pb-1\.5{padding-bottom:.375rem}.pl-1\.5{padding-left:.375rem}.pt-2\.5{padding-top:.625rem}.pr-2\.5{padding-right:.625rem}.pb-2\.5{padding-bottom:.625rem}.pl-2\.5{padding-left:.625rem}.pt-3\.5{padding-top:.875rem}.pr-3\.5{padding-right:.875rem}.pb-3\.5{padding-bottom:.875rem}.pl-3\.5{padding-left:.875rem}.pt-1\/2{padding-top:50%}.pr-1\/2{padding-right:50%}.pb-1\/2{padding-bottom:50%}.pl-1\/2{padding-left:50%}.pt-1\/3{padding-top:33.333333%}.pr-1\/3{padding-right:33.333333%}.pb-1\/3{padding-bottom:33.333333%}.pl-1\/3{padding-left:33.333333%}.pt-2\/3{padding-top:66.666667%}.pr-2\/3{padding-right:66.666667%}.pb-2\/3{padding-bottom:66.666667%}.pl-2\/3{padding-left:66.666667%}.pt-1\/4{padding-top:25%}.pr-1\/4{padding-right:25%}.pb-1\/4{padding-bottom:25%}.pl-1\/4{padding-left:25%}.pt-2\/4{padding-top:50%}.pr-2\/4{padding-right:50%}.pb-2\/4{padding-bottom:50%}.pl-2\/4{padding-left:50%}.pt-3\/4{padding-top:75%}.pr-3\/4{padding-right:75%}.pb-3\/4{padding-bottom:75%}.pl-3\/4{padding-left:75%}.pt-1\/5{padding-top:20%}.pr-1\/5{padding-right:20%}.pb-1\/5{padding-bottom:20%}.pl-1\/5{padding-left:20%}.pt-2\/5{padding-top:40%}.pr-2\/5{padding-right:40%}.pb-2\/5{padding-bottom:40%}.pl-2\/5{padding-left:40%}.pt-3\/5{padding-top:60%}.pr-3\/5{padding-right:60%}.pb-3\/5{padding-bottom:60%}.pl-3\/5{padding-left:60%}.pt-4\/5{padding-top:80%}.pr-4\/5{padding-right:80%}.pb-4\/5{padding-bottom:80%}.pl-4\/5{padding-left:80%}.pt-1\/6{padding-top:16.666667%}.pr-1\/6{padding-right:16.666667%}.pb-1\/6{padding-bottom:16.666667%}.pl-1\/6{padding-left:16.666667%}.pt-2\/6{padding-top:33.333333%}.pr-2\/6{padding-right:33.333333%}.pb-2\/6{padding-bottom:33.333333%}.pl-2\/6{padding-left:33.333333%}.pt-3\/6{padding-top:50%}.pr-3\/6{padding-right:50%}.pb-3\/6{padding-bottom:50%}.pl-3\/6{padding-left:50%}.pt-4\/6{padding-top:66.666667%}.pr-4\/6{padding-right:66.666667%}.pb-4\/6{padding-bottom:66.666667%}.pl-4\/6{padding-left:66.666667%}.pt-5\/6{padding-top:83.333333%}.pr-5\/6{padding-right:83.333333%}.pb-5\/6{padding-bottom:83.333333%}.pl-5\/6{padding-left:83.333333%}.pt-1\/12{padding-top:8.333333%}.pr-1\/12{padding-right:8.333333%}.pb-1\/12{padding-bottom:8.333333%}.pl-1\/12{padding-left:8.333333%}.pt-2\/12{padding-top:16.666667%}.pr-2\/12{padding-right:16.666667%}.pb-2\/12{padding-bottom:16.666667%}.pl-2\/12{padding-left:16.666667%}.pt-3\/12{padding-top:25%}.pr-3\/12{padding-right:25%}.pb-3\/12{padding-bottom:25%}.pl-3\/12{padding-left:25%}.pt-4\/12{padding-top:33.333333%}.pr-4\/12{padding-right:33.333333%}.pb-4\/12{padding-bottom:33.333333%}.pl-4\/12{padding-left:33.333333%}.pt-5\/12{padding-top:41.666667%}.pr-5\/12{padding-right:41.666667%}.pb-5\/12{padding-bottom:41.666667%}.pl-5\/12{padding-left:41.666667%}.pt-6\/12{padding-top:50%}.pr-6\/12{padding-right:50%}.pb-6\/12{padding-bottom:50%}.pl-6\/12{padding-left:50%}.pt-7\/12{padding-top:58.333333%}.pr-7\/12{padding-right:58.333333%}.pb-7\/12{padding-bottom:58.333333%}.pl-7\/12{padding-left:58.333333%}.pt-8\/12{padding-top:66.666667%}.pr-8\/12{padding-right:66.666667%}.pb-8\/12{padding-bottom:66.666667%}.pl-8\/12{padding-left:66.666667%}.pt-9\/12{padding-top:75%}.pr-9\/12{padding-right:75%}.pb-9\/12{padding-bottom:75%}.pl-9\/12{padding-left:75%}.pt-10\/12{padding-top:83.333333%}.pr-10\/12{padding-right:83.333333%}.pb-10\/12{padding-bottom:83.333333%}.pl-10\/12{padding-left:83.333333%}.pt-11\/12{padding-top:91.666667%}.pr-11\/12{padding-right:91.666667%}.pb-11\/12{padding-bottom:91.666667%}.pl-11\/12{padding-left:91.666667%}.pt-full{padding-top:100%}.pr-full{padding-right:100%}.pb-full{padding-bottom:100%}.pl-full{padding-left:100%}.placeholder-transparent::-moz-placeholder{color:transparent}.placeholder-transparent:-ms-input-placeholder{color:transparent}.placeholder-transparent::-ms-input-placeholder{color:transparent}.placeholder-transparent::placeholder{color:transparent}.placeholder-white::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.placeholder-white:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.placeholder-white::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.placeholder-white::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.placeholder-black::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.placeholder-black:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.placeholder-black::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.placeholder-black::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.placeholder-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.placeholder-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.placeholder-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.placeholder-gray-50::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.placeholder-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.placeholder-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.placeholder-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.placeholder-gray-100::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.placeholder-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.placeholder-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.placeholder-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.placeholder-gray-200::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.placeholder-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.placeholder-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.placeholder-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.placeholder-gray-300::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.placeholder-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.placeholder-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.placeholder-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.placeholder-gray-400::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.placeholder-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.placeholder-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.placeholder-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.placeholder-gray-500::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.placeholder-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.placeholder-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.placeholder-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.placeholder-gray-600::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.placeholder-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.placeholder-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.placeholder-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.placeholder-gray-700::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.placeholder-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.placeholder-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.placeholder-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.placeholder-gray-800::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.placeholder-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.placeholder-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.placeholder-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.placeholder-gray-900::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.placeholder-cool-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.placeholder-cool-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.placeholder-cool-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.placeholder-cool-gray-50::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.placeholder-cool-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.placeholder-cool-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.placeholder-cool-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.placeholder-cool-gray-100::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.placeholder-cool-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.placeholder-cool-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.placeholder-cool-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.placeholder-cool-gray-200::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.placeholder-cool-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.placeholder-cool-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.placeholder-cool-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.placeholder-cool-gray-300::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.placeholder-cool-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.placeholder-cool-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.placeholder-cool-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.placeholder-cool-gray-400::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.placeholder-cool-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.placeholder-cool-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.placeholder-cool-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.placeholder-cool-gray-500::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.placeholder-cool-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.placeholder-cool-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.placeholder-cool-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.placeholder-cool-gray-600::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.placeholder-cool-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.placeholder-cool-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.placeholder-cool-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.placeholder-cool-gray-700::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.placeholder-cool-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.placeholder-cool-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.placeholder-cool-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.placeholder-cool-gray-800::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.placeholder-cool-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.placeholder-cool-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.placeholder-cool-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.placeholder-cool-gray-900::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.placeholder-red-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.placeholder-red-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.placeholder-red-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.placeholder-red-50::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.placeholder-red-100::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.placeholder-red-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.placeholder-red-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.placeholder-red-100::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.placeholder-red-200::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.placeholder-red-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.placeholder-red-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.placeholder-red-200::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.placeholder-red-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.placeholder-red-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.placeholder-red-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.placeholder-red-300::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.placeholder-red-400::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.placeholder-red-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.placeholder-red-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.placeholder-red-400::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.placeholder-red-500::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.placeholder-red-500:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.placeholder-red-500::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.placeholder-red-500::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.placeholder-red-600::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.placeholder-red-600:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.placeholder-red-600::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.placeholder-red-600::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.placeholder-red-700::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.placeholder-red-700:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.placeholder-red-700::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.placeholder-red-700::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.placeholder-red-800::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.placeholder-red-800:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.placeholder-red-800::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.placeholder-red-800::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.placeholder-red-900::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.placeholder-red-900:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.placeholder-red-900::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.placeholder-red-900::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.placeholder-orange-50::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.placeholder-orange-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.placeholder-orange-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.placeholder-orange-50::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.placeholder-orange-100::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.placeholder-orange-100:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.placeholder-orange-100::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.placeholder-orange-100::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.placeholder-orange-200::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.placeholder-orange-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.placeholder-orange-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.placeholder-orange-200::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.placeholder-orange-300::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.placeholder-orange-300:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.placeholder-orange-300::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.placeholder-orange-300::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.placeholder-orange-400::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.placeholder-orange-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.placeholder-orange-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.placeholder-orange-400::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.placeholder-orange-500::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.placeholder-orange-500:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.placeholder-orange-500::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.placeholder-orange-500::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.placeholder-orange-600::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.placeholder-orange-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.placeholder-orange-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.placeholder-orange-600::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.placeholder-orange-700::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.placeholder-orange-700:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.placeholder-orange-700::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.placeholder-orange-700::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.placeholder-orange-800::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.placeholder-orange-800:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.placeholder-orange-800::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.placeholder-orange-800::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.placeholder-orange-900::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.placeholder-orange-900:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.placeholder-orange-900::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.placeholder-orange-900::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.placeholder-yellow-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.placeholder-yellow-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.placeholder-yellow-50::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.placeholder-yellow-100::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.placeholder-yellow-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.placeholder-yellow-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.placeholder-yellow-100::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.placeholder-yellow-200::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.placeholder-yellow-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.placeholder-yellow-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.placeholder-yellow-200::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.placeholder-yellow-300::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.placeholder-yellow-300:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.placeholder-yellow-300::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.placeholder-yellow-300::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.placeholder-yellow-400:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.placeholder-yellow-400::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.placeholder-yellow-400::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.placeholder-yellow-500::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.placeholder-yellow-500:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.placeholder-yellow-500::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.placeholder-yellow-500::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.placeholder-yellow-600::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.placeholder-yellow-600:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.placeholder-yellow-600::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.placeholder-yellow-600::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.placeholder-yellow-700::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.placeholder-yellow-700:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.placeholder-yellow-700::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.placeholder-yellow-700::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.placeholder-yellow-800::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.placeholder-yellow-800:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.placeholder-yellow-800::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.placeholder-yellow-800::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.placeholder-yellow-900::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.placeholder-yellow-900:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.placeholder-yellow-900::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.placeholder-yellow-900::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.placeholder-green-50::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.placeholder-green-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.placeholder-green-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.placeholder-green-50::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.placeholder-green-100::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.placeholder-green-100:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.placeholder-green-100::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.placeholder-green-100::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.placeholder-green-200::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.placeholder-green-200:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.placeholder-green-200::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.placeholder-green-200::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.placeholder-green-300::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.placeholder-green-300:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.placeholder-green-300::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.placeholder-green-300::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.placeholder-green-400::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.placeholder-green-400:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.placeholder-green-400::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.placeholder-green-400::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.placeholder-green-500::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.placeholder-green-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.placeholder-green-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.placeholder-green-500::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.placeholder-green-600::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.placeholder-green-600:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.placeholder-green-600::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.placeholder-green-600::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.placeholder-green-700::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.placeholder-green-700:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.placeholder-green-700::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.placeholder-green-700::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.placeholder-green-800::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.placeholder-green-800:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.placeholder-green-800::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.placeholder-green-800::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.placeholder-green-900::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.placeholder-green-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.placeholder-green-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.placeholder-green-900::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.placeholder-teal-50::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.placeholder-teal-50:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.placeholder-teal-50::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.placeholder-teal-50::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.placeholder-teal-100::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.placeholder-teal-100:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.placeholder-teal-100::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.placeholder-teal-100::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.placeholder-teal-200::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.placeholder-teal-200:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.placeholder-teal-200::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.placeholder-teal-200::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.placeholder-teal-300::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.placeholder-teal-300:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.placeholder-teal-300::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.placeholder-teal-300::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.placeholder-teal-400::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.placeholder-teal-400:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.placeholder-teal-400::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.placeholder-teal-400::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.placeholder-teal-500::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.placeholder-teal-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.placeholder-teal-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.placeholder-teal-500::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.placeholder-teal-600::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.placeholder-teal-600:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.placeholder-teal-600::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.placeholder-teal-600::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.placeholder-teal-700::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.placeholder-teal-700:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.placeholder-teal-700::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.placeholder-teal-700::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.placeholder-teal-800::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.placeholder-teal-800:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.placeholder-teal-800::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.placeholder-teal-800::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.placeholder-teal-900::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.placeholder-teal-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.placeholder-teal-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.placeholder-teal-900::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.placeholder-blue-50::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.placeholder-blue-50:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.placeholder-blue-50::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.placeholder-blue-50::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.placeholder-blue-100::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.placeholder-blue-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.placeholder-blue-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.placeholder-blue-100::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.placeholder-blue-200::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.placeholder-blue-200:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.placeholder-blue-200::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.placeholder-blue-200::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.placeholder-blue-300::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.placeholder-blue-300:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.placeholder-blue-300::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.placeholder-blue-300::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.placeholder-blue-400::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.placeholder-blue-400:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.placeholder-blue-400::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.placeholder-blue-400::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.placeholder-blue-500::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.placeholder-blue-500:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.placeholder-blue-500::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.placeholder-blue-500::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.placeholder-blue-600::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.placeholder-blue-600:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.placeholder-blue-600::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.placeholder-blue-600::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.placeholder-blue-700::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.placeholder-blue-700:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.placeholder-blue-700::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.placeholder-blue-700::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.placeholder-blue-800::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.placeholder-blue-800:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.placeholder-blue-800::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.placeholder-blue-800::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.placeholder-blue-900::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.placeholder-blue-900:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.placeholder-blue-900::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.placeholder-blue-900::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.placeholder-indigo-50::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.placeholder-indigo-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.placeholder-indigo-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.placeholder-indigo-50::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.placeholder-indigo-100::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.placeholder-indigo-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.placeholder-indigo-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.placeholder-indigo-100::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.placeholder-indigo-200::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.placeholder-indigo-200:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.placeholder-indigo-200::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.placeholder-indigo-200::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.placeholder-indigo-300::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.placeholder-indigo-300:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.placeholder-indigo-300::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.placeholder-indigo-300::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.placeholder-indigo-400::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.placeholder-indigo-400:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.placeholder-indigo-400::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.placeholder-indigo-400::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.placeholder-indigo-500::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.placeholder-indigo-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.placeholder-indigo-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.placeholder-indigo-500::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.placeholder-indigo-600::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.placeholder-indigo-600:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.placeholder-indigo-600::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.placeholder-indigo-600::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.placeholder-indigo-700::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.placeholder-indigo-700:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.placeholder-indigo-700::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.placeholder-indigo-700::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.placeholder-indigo-800::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.placeholder-indigo-800:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.placeholder-indigo-800::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.placeholder-indigo-800::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.placeholder-indigo-900::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.placeholder-indigo-900:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.placeholder-indigo-900::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.placeholder-indigo-900::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.placeholder-purple-50::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.placeholder-purple-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.placeholder-purple-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.placeholder-purple-50::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.placeholder-purple-100::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.placeholder-purple-100:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.placeholder-purple-100::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.placeholder-purple-100::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.placeholder-purple-200::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.placeholder-purple-200:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.placeholder-purple-200::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.placeholder-purple-200::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.placeholder-purple-300::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.placeholder-purple-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.placeholder-purple-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.placeholder-purple-300::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.placeholder-purple-400::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.placeholder-purple-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.placeholder-purple-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.placeholder-purple-400::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.placeholder-purple-500::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.placeholder-purple-500:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.placeholder-purple-500::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.placeholder-purple-500::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.placeholder-purple-600::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.placeholder-purple-600:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.placeholder-purple-600::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.placeholder-purple-600::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.placeholder-purple-700::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.placeholder-purple-700:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.placeholder-purple-700::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.placeholder-purple-700::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.placeholder-purple-800::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.placeholder-purple-800:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.placeholder-purple-800::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.placeholder-purple-800::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.placeholder-purple-900::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.placeholder-purple-900:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.placeholder-purple-900::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.placeholder-purple-900::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.placeholder-pink-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.placeholder-pink-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.placeholder-pink-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.placeholder-pink-50::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.placeholder-pink-100::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.placeholder-pink-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.placeholder-pink-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.placeholder-pink-100::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.placeholder-pink-200::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.placeholder-pink-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.placeholder-pink-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.placeholder-pink-200::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.placeholder-pink-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.placeholder-pink-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.placeholder-pink-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.placeholder-pink-300::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.placeholder-pink-400::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.placeholder-pink-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.placeholder-pink-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.placeholder-pink-400::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.placeholder-pink-500::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.placeholder-pink-500:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.placeholder-pink-500::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.placeholder-pink-500::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.placeholder-pink-600::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.placeholder-pink-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.placeholder-pink-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.placeholder-pink-600::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.placeholder-pink-700::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.placeholder-pink-700:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.placeholder-pink-700::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.placeholder-pink-700::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.placeholder-pink-800::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.placeholder-pink-800:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.placeholder-pink-800::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.placeholder-pink-800::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.placeholder-pink-900::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.placeholder-pink-900:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.placeholder-pink-900::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.placeholder-pink-900::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent}.focus\:placeholder-transparent:focus:-ms-input-placeholder{color:transparent}.focus\:placeholder-transparent:focus::-ms-input-placeholder{color:transparent}.focus\:placeholder-transparent:focus::placeholder{color:transparent}.focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.focus\:placeholder-white:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.focus\:placeholder-white:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.focus\:placeholder-black:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.focus\:placeholder-black:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.focus\:placeholder-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.focus\:placeholder-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.focus\:placeholder-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.focus\:placeholder-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.focus\:placeholder-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.focus\:placeholder-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.focus\:placeholder-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.focus\:placeholder-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.focus\:placeholder-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.focus\:placeholder-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.focus\:placeholder-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.focus\:placeholder-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.focus\:placeholder-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.focus\:placeholder-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.focus\:placeholder-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.focus\:placeholder-gray-300:focus::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.focus\:placeholder-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.focus\:placeholder-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.focus\:placeholder-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.focus\:placeholder-gray-400:focus::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.focus\:placeholder-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.focus\:placeholder-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.focus\:placeholder-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.focus\:placeholder-gray-600:focus::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.focus\:placeholder-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.focus\:placeholder-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.focus\:placeholder-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.focus\:placeholder-gray-700:focus::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.focus\:placeholder-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.focus\:placeholder-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.focus\:placeholder-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.focus\:placeholder-gray-800:focus::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.focus\:placeholder-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.focus\:placeholder-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.focus\:placeholder-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.focus\:placeholder-gray-900:focus::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-300:focus::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-400:focus::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-500:focus::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-600:focus::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-700:focus::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-800:focus::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.focus\:placeholder-cool-gray-900:focus::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.focus\:placeholder-red-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.focus\:placeholder-red-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.focus\:placeholder-red-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.focus\:placeholder-red-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.focus\:placeholder-red-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.focus\:placeholder-red-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.focus\:placeholder-red-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.focus\:placeholder-red-100:focus::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.focus\:placeholder-red-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.focus\:placeholder-red-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.focus\:placeholder-red-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.focus\:placeholder-red-200:focus::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.focus\:placeholder-red-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.focus\:placeholder-red-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.focus\:placeholder-red-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.focus\:placeholder-red-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.focus\:placeholder-red-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.focus\:placeholder-red-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.focus\:placeholder-red-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.focus\:placeholder-red-400:focus::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.focus\:placeholder-red-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.focus\:placeholder-red-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.focus\:placeholder-red-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.focus\:placeholder-red-500:focus::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.focus\:placeholder-red-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.focus\:placeholder-red-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.focus\:placeholder-red-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.focus\:placeholder-red-600:focus::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.focus\:placeholder-red-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.focus\:placeholder-red-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.focus\:placeholder-red-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.focus\:placeholder-red-700:focus::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.focus\:placeholder-red-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.focus\:placeholder-red-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.focus\:placeholder-red-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.focus\:placeholder-red-800:focus::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.focus\:placeholder-red-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.focus\:placeholder-red-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.focus\:placeholder-red-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.focus\:placeholder-red-900:focus::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.focus\:placeholder-orange-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.focus\:placeholder-orange-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.focus\:placeholder-orange-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.focus\:placeholder-orange-50:focus::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.focus\:placeholder-orange-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.focus\:placeholder-orange-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.focus\:placeholder-orange-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.focus\:placeholder-orange-100:focus::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.focus\:placeholder-orange-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.focus\:placeholder-orange-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.focus\:placeholder-orange-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.focus\:placeholder-orange-200:focus::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.focus\:placeholder-orange-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.focus\:placeholder-orange-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.focus\:placeholder-orange-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.focus\:placeholder-orange-300:focus::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.focus\:placeholder-orange-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.focus\:placeholder-orange-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.focus\:placeholder-orange-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.focus\:placeholder-orange-400:focus::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.focus\:placeholder-orange-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.focus\:placeholder-orange-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.focus\:placeholder-orange-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.focus\:placeholder-orange-500:focus::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.focus\:placeholder-orange-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.focus\:placeholder-orange-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.focus\:placeholder-orange-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.focus\:placeholder-orange-600:focus::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.focus\:placeholder-orange-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.focus\:placeholder-orange-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.focus\:placeholder-orange-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.focus\:placeholder-orange-700:focus::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.focus\:placeholder-orange-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.focus\:placeholder-orange-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.focus\:placeholder-orange-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.focus\:placeholder-orange-800:focus::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.focus\:placeholder-orange-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.focus\:placeholder-orange-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.focus\:placeholder-orange-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.focus\:placeholder-orange-900:focus::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.focus\:placeholder-yellow-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.focus\:placeholder-yellow-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.focus\:placeholder-yellow-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.focus\:placeholder-yellow-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.focus\:placeholder-yellow-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.focus\:placeholder-yellow-100:focus::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.focus\:placeholder-yellow-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.focus\:placeholder-yellow-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.focus\:placeholder-yellow-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.focus\:placeholder-yellow-200:focus::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.focus\:placeholder-yellow-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.focus\:placeholder-yellow-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.focus\:placeholder-yellow-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.focus\:placeholder-yellow-300:focus::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.focus\:placeholder-yellow-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.focus\:placeholder-yellow-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.focus\:placeholder-yellow-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.focus\:placeholder-yellow-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.focus\:placeholder-yellow-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.focus\:placeholder-yellow-500:focus::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.focus\:placeholder-yellow-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.focus\:placeholder-yellow-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.focus\:placeholder-yellow-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.focus\:placeholder-yellow-600:focus::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.focus\:placeholder-yellow-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.focus\:placeholder-yellow-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.focus\:placeholder-yellow-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.focus\:placeholder-yellow-700:focus::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.focus\:placeholder-yellow-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.focus\:placeholder-yellow-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.focus\:placeholder-yellow-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.focus\:placeholder-yellow-800:focus::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.focus\:placeholder-yellow-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.focus\:placeholder-yellow-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.focus\:placeholder-yellow-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.focus\:placeholder-yellow-900:focus::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.focus\:placeholder-green-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.focus\:placeholder-green-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.focus\:placeholder-green-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.focus\:placeholder-green-50:focus::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.focus\:placeholder-green-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.focus\:placeholder-green-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.focus\:placeholder-green-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.focus\:placeholder-green-100:focus::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.focus\:placeholder-green-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.focus\:placeholder-green-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.focus\:placeholder-green-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.focus\:placeholder-green-200:focus::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.focus\:placeholder-green-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.focus\:placeholder-green-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.focus\:placeholder-green-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.focus\:placeholder-green-300:focus::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.focus\:placeholder-green-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.focus\:placeholder-green-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.focus\:placeholder-green-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.focus\:placeholder-green-400:focus::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.focus\:placeholder-green-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.focus\:placeholder-green-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.focus\:placeholder-green-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.focus\:placeholder-green-500:focus::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.focus\:placeholder-green-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.focus\:placeholder-green-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.focus\:placeholder-green-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.focus\:placeholder-green-600:focus::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.focus\:placeholder-green-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.focus\:placeholder-green-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.focus\:placeholder-green-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.focus\:placeholder-green-700:focus::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.focus\:placeholder-green-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.focus\:placeholder-green-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.focus\:placeholder-green-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.focus\:placeholder-green-800:focus::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.focus\:placeholder-green-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.focus\:placeholder-green-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.focus\:placeholder-green-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.focus\:placeholder-green-900:focus::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.focus\:placeholder-teal-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.focus\:placeholder-teal-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.focus\:placeholder-teal-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.focus\:placeholder-teal-50:focus::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.focus\:placeholder-teal-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.focus\:placeholder-teal-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.focus\:placeholder-teal-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.focus\:placeholder-teal-100:focus::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.focus\:placeholder-teal-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.focus\:placeholder-teal-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.focus\:placeholder-teal-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.focus\:placeholder-teal-200:focus::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.focus\:placeholder-teal-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.focus\:placeholder-teal-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.focus\:placeholder-teal-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.focus\:placeholder-teal-300:focus::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.focus\:placeholder-teal-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.focus\:placeholder-teal-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.focus\:placeholder-teal-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.focus\:placeholder-teal-400:focus::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.focus\:placeholder-teal-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.focus\:placeholder-teal-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.focus\:placeholder-teal-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.focus\:placeholder-teal-500:focus::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.focus\:placeholder-teal-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.focus\:placeholder-teal-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.focus\:placeholder-teal-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.focus\:placeholder-teal-600:focus::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.focus\:placeholder-teal-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.focus\:placeholder-teal-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.focus\:placeholder-teal-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.focus\:placeholder-teal-700:focus::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.focus\:placeholder-teal-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.focus\:placeholder-teal-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.focus\:placeholder-teal-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.focus\:placeholder-teal-800:focus::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.focus\:placeholder-teal-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.focus\:placeholder-teal-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.focus\:placeholder-teal-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.focus\:placeholder-teal-900:focus::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.focus\:placeholder-blue-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.focus\:placeholder-blue-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.focus\:placeholder-blue-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.focus\:placeholder-blue-50:focus::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.focus\:placeholder-blue-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.focus\:placeholder-blue-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.focus\:placeholder-blue-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.focus\:placeholder-blue-100:focus::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.focus\:placeholder-blue-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.focus\:placeholder-blue-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.focus\:placeholder-blue-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.focus\:placeholder-blue-200:focus::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.focus\:placeholder-blue-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.focus\:placeholder-blue-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.focus\:placeholder-blue-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.focus\:placeholder-blue-300:focus::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.focus\:placeholder-blue-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.focus\:placeholder-blue-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.focus\:placeholder-blue-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.focus\:placeholder-blue-400:focus::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.focus\:placeholder-blue-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.focus\:placeholder-blue-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.focus\:placeholder-blue-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.focus\:placeholder-blue-500:focus::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.focus\:placeholder-blue-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.focus\:placeholder-blue-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.focus\:placeholder-blue-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.focus\:placeholder-blue-600:focus::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.focus\:placeholder-blue-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.focus\:placeholder-blue-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.focus\:placeholder-blue-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.focus\:placeholder-blue-700:focus::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.focus\:placeholder-blue-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.focus\:placeholder-blue-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.focus\:placeholder-blue-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.focus\:placeholder-blue-800:focus::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.focus\:placeholder-blue-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.focus\:placeholder-blue-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.focus\:placeholder-blue-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.focus\:placeholder-blue-900:focus::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.focus\:placeholder-indigo-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-50:focus::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-100:focus::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.focus\:placeholder-indigo-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.focus\:placeholder-indigo-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.focus\:placeholder-indigo-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.focus\:placeholder-indigo-200:focus::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.focus\:placeholder-indigo-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.focus\:placeholder-indigo-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.focus\:placeholder-indigo-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.focus\:placeholder-indigo-300:focus::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.focus\:placeholder-indigo-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.focus\:placeholder-indigo-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.focus\:placeholder-indigo-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.focus\:placeholder-indigo-400:focus::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.focus\:placeholder-indigo-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.focus\:placeholder-indigo-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.focus\:placeholder-indigo-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.focus\:placeholder-indigo-500:focus::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.focus\:placeholder-indigo-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.focus\:placeholder-indigo-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.focus\:placeholder-indigo-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.focus\:placeholder-indigo-600:focus::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.focus\:placeholder-indigo-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.focus\:placeholder-indigo-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.focus\:placeholder-indigo-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.focus\:placeholder-indigo-700:focus::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.focus\:placeholder-indigo-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.focus\:placeholder-indigo-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.focus\:placeholder-indigo-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.focus\:placeholder-indigo-800:focus::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.focus\:placeholder-indigo-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.focus\:placeholder-indigo-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.focus\:placeholder-indigo-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.focus\:placeholder-indigo-900:focus::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.focus\:placeholder-purple-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.focus\:placeholder-purple-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.focus\:placeholder-purple-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.focus\:placeholder-purple-50:focus::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.focus\:placeholder-purple-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.focus\:placeholder-purple-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.focus\:placeholder-purple-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.focus\:placeholder-purple-100:focus::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.focus\:placeholder-purple-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.focus\:placeholder-purple-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.focus\:placeholder-purple-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.focus\:placeholder-purple-200:focus::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.focus\:placeholder-purple-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.focus\:placeholder-purple-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.focus\:placeholder-purple-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.focus\:placeholder-purple-300:focus::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.focus\:placeholder-purple-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.focus\:placeholder-purple-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.focus\:placeholder-purple-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.focus\:placeholder-purple-400:focus::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.focus\:placeholder-purple-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.focus\:placeholder-purple-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.focus\:placeholder-purple-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.focus\:placeholder-purple-500:focus::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.focus\:placeholder-purple-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.focus\:placeholder-purple-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.focus\:placeholder-purple-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.focus\:placeholder-purple-600:focus::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.focus\:placeholder-purple-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.focus\:placeholder-purple-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.focus\:placeholder-purple-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.focus\:placeholder-purple-700:focus::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.focus\:placeholder-purple-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.focus\:placeholder-purple-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.focus\:placeholder-purple-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.focus\:placeholder-purple-800:focus::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.focus\:placeholder-purple-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.focus\:placeholder-purple-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.focus\:placeholder-purple-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.focus\:placeholder-purple-900:focus::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.focus\:placeholder-pink-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.focus\:placeholder-pink-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.focus\:placeholder-pink-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.focus\:placeholder-pink-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.focus\:placeholder-pink-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.focus\:placeholder-pink-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.focus\:placeholder-pink-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.focus\:placeholder-pink-100:focus::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.focus\:placeholder-pink-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.focus\:placeholder-pink-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.focus\:placeholder-pink-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.focus\:placeholder-pink-200:focus::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.focus\:placeholder-pink-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.focus\:placeholder-pink-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.focus\:placeholder-pink-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.focus\:placeholder-pink-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.focus\:placeholder-pink-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.focus\:placeholder-pink-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.focus\:placeholder-pink-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.focus\:placeholder-pink-400:focus::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.focus\:placeholder-pink-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.focus\:placeholder-pink-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.focus\:placeholder-pink-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.focus\:placeholder-pink-500:focus::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.focus\:placeholder-pink-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.focus\:placeholder-pink-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.focus\:placeholder-pink-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.focus\:placeholder-pink-600:focus::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.focus\:placeholder-pink-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.focus\:placeholder-pink-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.focus\:placeholder-pink-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.focus\:placeholder-pink-700:focus::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.focus\:placeholder-pink-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.focus\:placeholder-pink-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.focus\:placeholder-pink-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.focus\:placeholder-pink-800:focus::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.focus\:placeholder-pink-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.focus\:placeholder-pink-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.focus\:placeholder-pink-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.focus\:placeholder-pink-900:focus::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0}.placeholder-opacity-0:-ms-input-placeholder{--placeholder-opacity:0}.placeholder-opacity-0::-ms-input-placeholder{--placeholder-opacity:0}.placeholder-opacity-0::placeholder{--placeholder-opacity:0}.placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25}.placeholder-opacity-25:-ms-input-placeholder{--placeholder-opacity:0.25}.placeholder-opacity-25::-ms-input-placeholder{--placeholder-opacity:0.25}.placeholder-opacity-25::placeholder{--placeholder-opacity:0.25}.placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5}.placeholder-opacity-50:-ms-input-placeholder{--placeholder-opacity:0.5}.placeholder-opacity-50::-ms-input-placeholder{--placeholder-opacity:0.5}.placeholder-opacity-50::placeholder{--placeholder-opacity:0.5}.placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75}.placeholder-opacity-75:-ms-input-placeholder{--placeholder-opacity:0.75}.placeholder-opacity-75::-ms-input-placeholder{--placeholder-opacity:0.75}.placeholder-opacity-75::placeholder{--placeholder-opacity:0.75}.placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1}.placeholder-opacity-100:-ms-input-placeholder{--placeholder-opacity:1}.placeholder-opacity-100::-ms-input-placeholder{--placeholder-opacity:1}.placeholder-opacity-100::placeholder{--placeholder-opacity:1}.focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0}.focus\:placeholder-opacity-0:focus:-ms-input-placeholder{--placeholder-opacity:0}.focus\:placeholder-opacity-0:focus::-ms-input-placeholder{--placeholder-opacity:0}.focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0}.focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25}.focus\:placeholder-opacity-25:focus:-ms-input-placeholder{--placeholder-opacity:0.25}.focus\:placeholder-opacity-25:focus::-ms-input-placeholder{--placeholder-opacity:0.25}.focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25}.focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5}.focus\:placeholder-opacity-50:focus:-ms-input-placeholder{--placeholder-opacity:0.5}.focus\:placeholder-opacity-50:focus::-ms-input-placeholder{--placeholder-opacity:0.5}.focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5}.focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75}.focus\:placeholder-opacity-75:focus:-ms-input-placeholder{--placeholder-opacity:0.75}.focus\:placeholder-opacity-75:focus::-ms-input-placeholder{--placeholder-opacity:0.75}.focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75}.focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1}.focus\:placeholder-opacity-100:focus:-ms-input-placeholder{--placeholder-opacity:1}.focus\:placeholder-opacity-100:focus::-ms-input-placeholder{--placeholder-opacity:1}.focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.inset-1{top:.25rem;right:.25rem;bottom:.25rem;left:.25rem}.inset-2{top:.5rem;right:.5rem;bottom:.5rem;left:.5rem}.inset-3{top:.75rem;right:.75rem;bottom:.75rem;left:.75rem}.inset-4{top:1rem;right:1rem;bottom:1rem;left:1rem}.inset-5{top:1.25rem;right:1.25rem;bottom:1.25rem;left:1.25rem}.inset-6{top:1.5rem;right:1.5rem;bottom:1.5rem;left:1.5rem}.inset-7{top:1.75rem;right:1.75rem;bottom:1.75rem;left:1.75rem}.inset-8{top:2rem;right:2rem;bottom:2rem;left:2rem}.inset-9{top:2.25rem;right:2.25rem;bottom:2.25rem;left:2.25rem}.inset-10{top:2.5rem;right:2.5rem;bottom:2.5rem;left:2.5rem}.inset-11{top:2.75rem;right:2.75rem;bottom:2.75rem;left:2.75rem}.inset-12{top:3rem;right:3rem;bottom:3rem;left:3rem}.inset-13{top:3.25rem;right:3.25rem;bottom:3.25rem;left:3.25rem}.inset-14{top:3.5rem;right:3.5rem;bottom:3.5rem;left:3.5rem}.inset-15{top:3.75rem;right:3.75rem;bottom:3.75rem;left:3.75rem}.inset-16{top:4rem;right:4rem;bottom:4rem;left:4rem}.inset-20{top:5rem;right:5rem;bottom:5rem;left:5rem}.inset-24{top:6rem;right:6rem;bottom:6rem;left:6rem}.inset-28{top:7rem;right:7rem;bottom:7rem;left:7rem}.inset-32{top:8rem;right:8rem;bottom:8rem;left:8rem}.inset-36{top:9rem;right:9rem;bottom:9rem;left:9rem}.inset-40{top:10rem;right:10rem;bottom:10rem;left:10rem}.inset-44{top:11rem;right:11rem;bottom:11rem;left:11rem}.inset-48{top:12rem;right:12rem;bottom:12rem;left:12rem}.inset-52{top:13rem;right:13rem;bottom:13rem;left:13rem}.inset-56{top:14rem;right:14rem;bottom:14rem;left:14rem}.inset-60{top:15rem;right:15rem;bottom:15rem;left:15rem}.inset-64{top:16rem;right:16rem;bottom:16rem;left:16rem}.inset-72{top:18rem;right:18rem;bottom:18rem;left:18rem}.inset-80{top:20rem;right:20rem;bottom:20rem;left:20rem}.inset-96{top:24rem;right:24rem;bottom:24rem;left:24rem}.inset-auto{top:auto;right:auto;bottom:auto;left:auto}.inset-px{top:1px;right:1px;bottom:1px;left:1px}.inset-0\.5{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.inset-1\.5{top:.375rem;right:.375rem;bottom:.375rem;left:.375rem}.inset-2\.5{top:.625rem;right:.625rem;bottom:.625rem;left:.625rem}.inset-3\.5{top:.875rem;right:.875rem;bottom:.875rem;left:.875rem}.inset-1\/2{top:50%;right:50%;bottom:50%;left:50%}.inset-1\/3{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.inset-2\/3{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.inset-1\/4{top:25%;right:25%;bottom:25%;left:25%}.inset-2\/4{top:50%;right:50%;bottom:50%;left:50%}.inset-3\/4{top:75%;right:75%;bottom:75%;left:75%}.inset-1\/5{top:20%;right:20%;bottom:20%;left:20%}.inset-2\/5{top:40%;right:40%;bottom:40%;left:40%}.inset-3\/5{top:60%;right:60%;bottom:60%;left:60%}.inset-4\/5{top:80%;right:80%;bottom:80%;left:80%}.inset-1\/6{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.inset-2\/6{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.inset-3\/6{top:50%;right:50%;bottom:50%;left:50%}.inset-4\/6{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.inset-5\/6{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.inset-1\/12{top:8.333333%;right:8.333333%;bottom:8.333333%;left:8.333333%}.inset-2\/12{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.inset-3\/12{top:25%;right:25%;bottom:25%;left:25%}.inset-4\/12{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.inset-5\/12{top:41.666667%;right:41.666667%;bottom:41.666667%;left:41.666667%}.inset-6\/12{top:50%;right:50%;bottom:50%;left:50%}.inset-7\/12{top:58.333333%;right:58.333333%;bottom:58.333333%;left:58.333333%}.inset-8\/12{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.inset-9\/12{top:75%;right:75%;bottom:75%;left:75%}.inset-10\/12{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.inset-11\/12{top:91.666667%;right:91.666667%;bottom:91.666667%;left:91.666667%}.inset-full{top:100%;right:100%;bottom:100%;left:100%}.inset-y-0{top:0;bottom:0}.inset-x-0{right:0;left:0}.inset-y-1{top:.25rem;bottom:.25rem}.inset-x-1{right:.25rem;left:.25rem}.inset-y-2{top:.5rem;bottom:.5rem}.inset-x-2{right:.5rem;left:.5rem}.inset-y-3{top:.75rem;bottom:.75rem}.inset-x-3{right:.75rem;left:.75rem}.inset-y-4{top:1rem;bottom:1rem}.inset-x-4{right:1rem;left:1rem}.inset-y-5{top:1.25rem;bottom:1.25rem}.inset-x-5{right:1.25rem;left:1.25rem}.inset-y-6{top:1.5rem;bottom:1.5rem}.inset-x-6{right:1.5rem;left:1.5rem}.inset-y-7{top:1.75rem;bottom:1.75rem}.inset-x-7{right:1.75rem;left:1.75rem}.inset-y-8{top:2rem;bottom:2rem}.inset-x-8{right:2rem;left:2rem}.inset-y-9{top:2.25rem;bottom:2.25rem}.inset-x-9{right:2.25rem;left:2.25rem}.inset-y-10{top:2.5rem;bottom:2.5rem}.inset-x-10{right:2.5rem;left:2.5rem}.inset-y-11{top:2.75rem;bottom:2.75rem}.inset-x-11{right:2.75rem;left:2.75rem}.inset-y-12{top:3rem;bottom:3rem}.inset-x-12{right:3rem;left:3rem}.inset-y-13{top:3.25rem;bottom:3.25rem}.inset-x-13{right:3.25rem;left:3.25rem}.inset-y-14{top:3.5rem;bottom:3.5rem}.inset-x-14{right:3.5rem;left:3.5rem}.inset-y-15{top:3.75rem;bottom:3.75rem}.inset-x-15{right:3.75rem;left:3.75rem}.inset-y-16{top:4rem;bottom:4rem}.inset-x-16{right:4rem;left:4rem}.inset-y-20{top:5rem;bottom:5rem}.inset-x-20{right:5rem;left:5rem}.inset-y-24{top:6rem;bottom:6rem}.inset-x-24{right:6rem;left:6rem}.inset-y-28{top:7rem;bottom:7rem}.inset-x-28{right:7rem;left:7rem}.inset-y-32{top:8rem;bottom:8rem}.inset-x-32{right:8rem;left:8rem}.inset-y-36{top:9rem;bottom:9rem}.inset-x-36{right:9rem;left:9rem}.inset-y-40{top:10rem;bottom:10rem}.inset-x-40{right:10rem;left:10rem}.inset-y-44{top:11rem;bottom:11rem}.inset-x-44{right:11rem;left:11rem}.inset-y-48{top:12rem;bottom:12rem}.inset-x-48{right:12rem;left:12rem}.inset-y-52{top:13rem;bottom:13rem}.inset-x-52{right:13rem;left:13rem}.inset-y-56{top:14rem;bottom:14rem}.inset-x-56{right:14rem;left:14rem}.inset-y-60{top:15rem;bottom:15rem}.inset-x-60{right:15rem;left:15rem}.inset-y-64{top:16rem;bottom:16rem}.inset-x-64{right:16rem;left:16rem}.inset-y-72{top:18rem;bottom:18rem}.inset-x-72{right:18rem;left:18rem}.inset-y-80{top:20rem;bottom:20rem}.inset-x-80{right:20rem;left:20rem}.inset-y-96{top:24rem;bottom:24rem}.inset-x-96{right:24rem;left:24rem}.inset-y-auto{top:auto;bottom:auto}.inset-x-auto{right:auto;left:auto}.inset-y-px{top:1px;bottom:1px}.inset-x-px{right:1px;left:1px}.inset-y-0\.5{top:.125rem;bottom:.125rem}.inset-x-0\.5{right:.125rem;left:.125rem}.inset-y-1\.5{top:.375rem;bottom:.375rem}.inset-x-1\.5{right:.375rem;left:.375rem}.inset-y-2\.5{top:.625rem;bottom:.625rem}.inset-x-2\.5{right:.625rem;left:.625rem}.inset-y-3\.5{top:.875rem;bottom:.875rem}.inset-x-3\.5{right:.875rem;left:.875rem}.inset-y-1\/2{top:50%;bottom:50%}.inset-x-1\/2{right:50%;left:50%}.inset-y-1\/3{top:33.333333%;bottom:33.333333%}.inset-x-1\/3{right:33.333333%;left:33.333333%}.inset-y-2\/3{top:66.666667%;bottom:66.666667%}.inset-x-2\/3{right:66.666667%;left:66.666667%}.inset-y-1\/4{top:25%;bottom:25%}.inset-x-1\/4{right:25%;left:25%}.inset-y-2\/4{top:50%;bottom:50%}.inset-x-2\/4{right:50%;left:50%}.inset-y-3\/4{top:75%;bottom:75%}.inset-x-3\/4{right:75%;left:75%}.inset-y-1\/5{top:20%;bottom:20%}.inset-x-1\/5{right:20%;left:20%}.inset-y-2\/5{top:40%;bottom:40%}.inset-x-2\/5{right:40%;left:40%}.inset-y-3\/5{top:60%;bottom:60%}.inset-x-3\/5{right:60%;left:60%}.inset-y-4\/5{top:80%;bottom:80%}.inset-x-4\/5{right:80%;left:80%}.inset-y-1\/6{top:16.666667%;bottom:16.666667%}.inset-x-1\/6{right:16.666667%;left:16.666667%}.inset-y-2\/6{top:33.333333%;bottom:33.333333%}.inset-x-2\/6{right:33.333333%;left:33.333333%}.inset-y-3\/6{top:50%;bottom:50%}.inset-x-3\/6{right:50%;left:50%}.inset-y-4\/6{top:66.666667%;bottom:66.666667%}.inset-x-4\/6{right:66.666667%;left:66.666667%}.inset-y-5\/6{top:83.333333%;bottom:83.333333%}.inset-x-5\/6{right:83.333333%;left:83.333333%}.inset-y-1\/12{top:8.333333%;bottom:8.333333%}.inset-x-1\/12{right:8.333333%;left:8.333333%}.inset-y-2\/12{top:16.666667%;bottom:16.666667%}.inset-x-2\/12{right:16.666667%;left:16.666667%}.inset-y-3\/12{top:25%;bottom:25%}.inset-x-3\/12{right:25%;left:25%}.inset-y-4\/12{top:33.333333%;bottom:33.333333%}.inset-x-4\/12{right:33.333333%;left:33.333333%}.inset-y-5\/12{top:41.666667%;bottom:41.666667%}.inset-x-5\/12{right:41.666667%;left:41.666667%}.inset-y-6\/12{top:50%;bottom:50%}.inset-x-6\/12{right:50%;left:50%}.inset-y-7\/12{top:58.333333%;bottom:58.333333%}.inset-x-7\/12{right:58.333333%;left:58.333333%}.inset-y-8\/12{top:66.666667%;bottom:66.666667%}.inset-x-8\/12{right:66.666667%;left:66.666667%}.inset-y-9\/12{top:75%;bottom:75%}.inset-x-9\/12{right:75%;left:75%}.inset-y-10\/12{top:83.333333%;bottom:83.333333%}.inset-x-10\/12{right:83.333333%;left:83.333333%}.inset-y-11\/12{top:91.666667%;bottom:91.666667%}.inset-x-11\/12{right:91.666667%;left:91.666667%}.inset-y-full{top:100%;bottom:100%}.inset-x-full{right:100%;left:100%}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-1{top:.25rem}.right-1{right:.25rem}.bottom-1{bottom:.25rem}.left-1{left:.25rem}.top-2{top:.5rem}.right-2{right:.5rem}.bottom-2{bottom:.5rem}.left-2{left:.5rem}.top-3{top:.75rem}.right-3{right:.75rem}.bottom-3{bottom:.75rem}.left-3{left:.75rem}.top-4{top:1rem}.right-4{right:1rem}.bottom-4{bottom:1rem}.left-4{left:1rem}.top-5{top:1.25rem}.right-5{right:1.25rem}.bottom-5{bottom:1.25rem}.left-5{left:1.25rem}.top-6{top:1.5rem}.right-6{right:1.5rem}.bottom-6{bottom:1.5rem}.left-6{left:1.5rem}.top-7{top:1.75rem}.right-7{right:1.75rem}.bottom-7{bottom:1.75rem}.left-7{left:1.75rem}.top-8{top:2rem}.right-8{right:2rem}.bottom-8{bottom:2rem}.left-8{left:2rem}.top-9{top:2.25rem}.right-9{right:2.25rem}.bottom-9{bottom:2.25rem}.left-9{left:2.25rem}.top-10{top:2.5rem}.right-10{right:2.5rem}.bottom-10{bottom:2.5rem}.left-10{left:2.5rem}.top-11{top:2.75rem}.right-11{right:2.75rem}.bottom-11{bottom:2.75rem}.left-11{left:2.75rem}.top-12{top:3rem}.right-12{right:3rem}.bottom-12{bottom:3rem}.left-12{left:3rem}.top-13{top:3.25rem}.right-13{right:3.25rem}.bottom-13{bottom:3.25rem}.left-13{left:3.25rem}.top-14{top:3.5rem}.right-14{right:3.5rem}.bottom-14{bottom:3.5rem}.left-14{left:3.5rem}.top-15{top:3.75rem}.right-15{right:3.75rem}.bottom-15{bottom:3.75rem}.left-15{left:3.75rem}.top-16{top:4rem}.right-16{right:4rem}.bottom-16{bottom:4rem}.left-16{left:4rem}.top-20{top:5rem}.right-20{right:5rem}.bottom-20{bottom:5rem}.left-20{left:5rem}.top-24{top:6rem}.right-24{right:6rem}.bottom-24{bottom:6rem}.left-24{left:6rem}.top-28{top:7rem}.right-28{right:7rem}.bottom-28{bottom:7rem}.left-28{left:7rem}.top-32{top:8rem}.right-32{right:8rem}.bottom-32{bottom:8rem}.left-32{left:8rem}.top-36{top:9rem}.right-36{right:9rem}.bottom-36{bottom:9rem}.left-36{left:9rem}.top-40{top:10rem}.right-40{right:10rem}.bottom-40{bottom:10rem}.left-40{left:10rem}.top-44{top:11rem}.right-44{right:11rem}.bottom-44{bottom:11rem}.left-44{left:11rem}.top-48{top:12rem}.right-48{right:12rem}.bottom-48{bottom:12rem}.left-48{left:12rem}.top-52{top:13rem}.right-52{right:13rem}.bottom-52{bottom:13rem}.left-52{left:13rem}.top-56{top:14rem}.right-56{right:14rem}.bottom-56{bottom:14rem}.left-56{left:14rem}.top-60{top:15rem}.right-60{right:15rem}.bottom-60{bottom:15rem}.left-60{left:15rem}.top-64{top:16rem}.right-64{right:16rem}.bottom-64{bottom:16rem}.left-64{left:16rem}.top-72{top:18rem}.right-72{right:18rem}.bottom-72{bottom:18rem}.left-72{left:18rem}.top-80{top:20rem}.right-80{right:20rem}.bottom-80{bottom:20rem}.left-80{left:20rem}.top-96{top:24rem}.right-96{right:24rem}.bottom-96{bottom:24rem}.left-96{left:24rem}.top-auto{top:auto}.right-auto{right:auto}.bottom-auto{bottom:auto}.left-auto{left:auto}.top-px{top:1px}.right-px{right:1px}.bottom-px{bottom:1px}.left-px{left:1px}.top-0\.5{top:.125rem}.right-0\.5{right:.125rem}.bottom-0\.5{bottom:.125rem}.left-0\.5{left:.125rem}.top-1\.5{top:.375rem}.right-1\.5{right:.375rem}.bottom-1\.5{bottom:.375rem}.left-1\.5{left:.375rem}.top-2\.5{top:.625rem}.right-2\.5{right:.625rem}.bottom-2\.5{bottom:.625rem}.left-2\.5{left:.625rem}.top-3\.5{top:.875rem}.right-3\.5{right:.875rem}.bottom-3\.5{bottom:.875rem}.left-3\.5{left:.875rem}.top-1\/2{top:50%}.right-1\/2{right:50%}.bottom-1\/2{bottom:50%}.left-1\/2{left:50%}.top-1\/3{top:33.333333%}.right-1\/3{right:33.333333%}.bottom-1\/3{bottom:33.333333%}.left-1\/3{left:33.333333%}.top-2\/3{top:66.666667%}.right-2\/3{right:66.666667%}.bottom-2\/3{bottom:66.666667%}.left-2\/3{left:66.666667%}.top-1\/4{top:25%}.right-1\/4{right:25%}.bottom-1\/4{bottom:25%}.left-1\/4{left:25%}.top-2\/4{top:50%}.right-2\/4{right:50%}.bottom-2\/4{bottom:50%}.left-2\/4{left:50%}.top-3\/4{top:75%}.right-3\/4{right:75%}.bottom-3\/4{bottom:75%}.left-3\/4{left:75%}.top-1\/5{top:20%}.right-1\/5{right:20%}.bottom-1\/5{bottom:20%}.left-1\/5{left:20%}.top-2\/5{top:40%}.right-2\/5{right:40%}.bottom-2\/5{bottom:40%}.left-2\/5{left:40%}.top-3\/5{top:60%}.right-3\/5{right:60%}.bottom-3\/5{bottom:60%}.left-3\/5{left:60%}.top-4\/5{top:80%}.right-4\/5{right:80%}.bottom-4\/5{bottom:80%}.left-4\/5{left:80%}.top-1\/6{top:16.666667%}.right-1\/6{right:16.666667%}.bottom-1\/6{bottom:16.666667%}.left-1\/6{left:16.666667%}.top-2\/6{top:33.333333%}.right-2\/6{right:33.333333%}.bottom-2\/6{bottom:33.333333%}.left-2\/6{left:33.333333%}.top-3\/6{top:50%}.right-3\/6{right:50%}.bottom-3\/6{bottom:50%}.left-3\/6{left:50%}.top-4\/6{top:66.666667%}.right-4\/6{right:66.666667%}.bottom-4\/6{bottom:66.666667%}.left-4\/6{left:66.666667%}.top-5\/6{top:83.333333%}.right-5\/6{right:83.333333%}.bottom-5\/6{bottom:83.333333%}.left-5\/6{left:83.333333%}.top-1\/12{top:8.333333%}.right-1\/12{right:8.333333%}.bottom-1\/12{bottom:8.333333%}.left-1\/12{left:8.333333%}.top-2\/12{top:16.666667%}.right-2\/12{right:16.666667%}.bottom-2\/12{bottom:16.666667%}.left-2\/12{left:16.666667%}.top-3\/12{top:25%}.right-3\/12{right:25%}.bottom-3\/12{bottom:25%}.left-3\/12{left:25%}.top-4\/12{top:33.333333%}.right-4\/12{right:33.333333%}.bottom-4\/12{bottom:33.333333%}.left-4\/12{left:33.333333%}.top-5\/12{top:41.666667%}.right-5\/12{right:41.666667%}.bottom-5\/12{bottom:41.666667%}.left-5\/12{left:41.666667%}.top-6\/12{top:50%}.right-6\/12{right:50%}.bottom-6\/12{bottom:50%}.left-6\/12{left:50%}.top-7\/12{top:58.333333%}.right-7\/12{right:58.333333%}.bottom-7\/12{bottom:58.333333%}.left-7\/12{left:58.333333%}.top-8\/12{top:66.666667%}.right-8\/12{right:66.666667%}.bottom-8\/12{bottom:66.666667%}.left-8\/12{left:66.666667%}.top-9\/12{top:75%}.right-9\/12{right:75%}.bottom-9\/12{bottom:75%}.left-9\/12{left:75%}.top-10\/12{top:83.333333%}.right-10\/12{right:83.333333%}.bottom-10\/12{bottom:83.333333%}.left-10\/12{left:83.333333%}.top-11\/12{top:91.666667%}.right-11\/12{right:91.666667%}.bottom-11\/12{bottom:91.666667%}.left-11\/12{left:91.666667%}.top-full{top:100%}.right-full{right:100%}.bottom-full{bottom:100%}.left-full{left:100%}.resize-none{resize:none}.resize-y{resize:vertical}.resize-x{resize:horizontal}.resize{resize:both}.shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.shadow-none{box-shadow:none}.shadow-solid{box-shadow:0 0 0 2px currentColor}.shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.group:focus .group-focus\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.group:focus .group-focus\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.group:focus .group-focus\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.group:focus .group-focus\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.group:focus .group-focus\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.group:focus .group-focus\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.group:focus .group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.group:focus .group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.group:focus .group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.group:focus .group-focus\:shadow-none{box-shadow:none}.group:focus .group-focus\:shadow-solid{box-shadow:0 0 0 2px currentColor}.group:focus .group-focus\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.group:focus .group-focus\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.group:focus .group-focus\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.group:focus .group-focus\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.group:focus .group-focus\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.group:focus .group-focus\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.group:focus .group-focus\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.group:focus .group-focus\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.group:focus .group-focus\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.group:focus .group-focus\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.hover\:shadow-xs:hover{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.hover\:shadow-sm:hover{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.hover\:shadow:hover{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.hover\:shadow-md:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.hover\:shadow-xl:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.hover\:shadow-none:hover{box-shadow:none}.hover\:shadow-solid:hover{box-shadow:0 0 0 2px currentColor}.hover\:shadow-outline-gray:hover{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.hover\:shadow-outline-blue:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.hover\:shadow-outline-teal:hover{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.hover\:shadow-outline-green:hover{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.hover\:shadow-outline-yellow:hover{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.hover\:shadow-outline-orange:hover{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.hover\:shadow-outline-red:hover{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.hover\:shadow-outline-pink:hover{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.hover\:shadow-outline-purple:hover{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.hover\:shadow-outline-indigo:hover{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.focus\:shadow-xs:focus{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.focus\:shadow-sm:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.focus\:shadow:focus{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.focus\:shadow-md:focus{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.focus\:shadow-lg:focus{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.focus\:shadow-xl:focus{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.focus\:shadow-none:focus{box-shadow:none}.focus\:shadow-solid:focus{box-shadow:0 0 0 2px currentColor}.focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.focus\:shadow-outline-blue:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.focus\:shadow-outline-teal:focus{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.focus\:shadow-outline-green:focus{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.focus\:shadow-outline-yellow:focus{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.focus\:shadow-outline-orange:focus{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.focus\:shadow-outline-red:focus{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.focus\:shadow-outline-pink:focus{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.focus\:shadow-outline-purple:focus{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.focus\:shadow-outline-indigo:focus{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.fill-current{fill:currentColor}.stroke-current{stroke:currentColor}.stroke-0{stroke-width:0}.stroke-1{stroke-width:1}.stroke-2{stroke-width:2}.table-auto{table-layout:auto}.table-fixed{table-layout:fixed}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.text-transparent{color:transparent}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:hover .group-hover\:text-transparent{color:transparent}.group:hover .group-hover\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:hover .group-hover\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:hover .group-hover\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:hover .group-hover\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:hover .group-hover\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:hover .group-hover\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:hover .group-hover\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:hover .group-hover\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:hover .group-hover\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:hover .group-hover\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:hover .group-hover\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:hover .group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:hover .group-hover\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:hover .group-hover\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:hover .group-hover\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:hover .group-hover\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:hover .group-hover\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:hover .group-hover\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:hover .group-hover\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:hover .group-hover\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:hover .group-hover\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:hover .group-hover\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:hover .group-hover\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:hover .group-hover\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:hover .group-hover\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:hover .group-hover\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:hover .group-hover\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:hover .group-hover\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:hover .group-hover\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:hover .group-hover\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:hover .group-hover\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:hover .group-hover\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:hover .group-hover\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:hover .group-hover\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:hover .group-hover\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:hover .group-hover\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:hover .group-hover\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:hover .group-hover\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:hover .group-hover\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:hover .group-hover\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:hover .group-hover\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:hover .group-hover\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:hover .group-hover\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:hover .group-hover\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:hover .group-hover\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:hover .group-hover\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:hover .group-hover\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:hover .group-hover\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:hover .group-hover\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:hover .group-hover\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:hover .group-hover\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:hover .group-hover\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:hover .group-hover\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:hover .group-hover\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:hover .group-hover\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:hover .group-hover\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:hover .group-hover\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:hover .group-hover\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:hover .group-hover\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:hover .group-hover\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:hover .group-hover\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:hover .group-hover\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:hover .group-hover\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:hover .group-hover\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:hover .group-hover\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:hover .group-hover\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:hover .group-hover\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:hover .group-hover\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:hover .group-hover\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:hover .group-hover\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:hover .group-hover\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:hover .group-hover\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:hover .group-hover\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:hover .group-hover\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:hover .group-hover\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:hover .group-hover\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:hover .group-hover\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:hover .group-hover\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:hover .group-hover\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:hover .group-hover\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:hover .group-hover\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:hover .group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .group-hover\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:hover .group-hover\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:hover .group-hover\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:hover .group-hover\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:hover .group-hover\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:hover .group-hover\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:hover .group-hover\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:hover .group-hover\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:hover .group-hover\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:hover .group-hover\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:hover .group-hover\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:hover .group-hover\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:hover .group-hover\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:hover .group-hover\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:hover .group-hover\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:hover .group-hover\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:hover .group-hover\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:hover .group-hover\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:hover .group-hover\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:hover .group-hover\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:hover .group-hover\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:focus .group-focus\:text-transparent{color:transparent}.group:focus .group-focus\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:focus .group-focus\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:focus .group-focus\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:focus .group-focus\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:focus .group-focus\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:focus .group-focus\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:focus .group-focus\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:focus .group-focus\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:focus .group-focus\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:focus .group-focus\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:focus .group-focus\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:focus .group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:focus .group-focus\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:focus .group-focus\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:focus .group-focus\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:focus .group-focus\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:focus .group-focus\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:focus .group-focus\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:focus .group-focus\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:focus .group-focus\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:focus .group-focus\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:focus .group-focus\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:focus .group-focus\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:focus .group-focus\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:focus .group-focus\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:focus .group-focus\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:focus .group-focus\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:focus .group-focus\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:focus .group-focus\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:focus .group-focus\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:focus .group-focus\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:focus .group-focus\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:focus .group-focus\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:focus .group-focus\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:focus .group-focus\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:focus .group-focus\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:focus .group-focus\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:focus .group-focus\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:focus .group-focus\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:focus .group-focus\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:focus .group-focus\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:focus .group-focus\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:focus .group-focus\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:focus .group-focus\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:focus .group-focus\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:focus .group-focus\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:focus .group-focus\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:focus .group-focus\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:focus .group-focus\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:focus .group-focus\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:focus .group-focus\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:focus .group-focus\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:focus .group-focus\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:focus .group-focus\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:focus .group-focus\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:focus .group-focus\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:focus .group-focus\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:focus .group-focus\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:focus .group-focus\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:focus .group-focus\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:focus .group-focus\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:focus .group-focus\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:focus .group-focus\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:focus .group-focus\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:focus .group-focus\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:focus .group-focus\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:focus .group-focus\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:focus .group-focus\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:focus .group-focus\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:focus .group-focus\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:focus .group-focus\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:focus .group-focus\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:focus .group-focus\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:focus .group-focus\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:focus .group-focus\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:focus .group-focus\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:focus .group-focus\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:focus .group-focus\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:focus .group-focus\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:focus .group-focus\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:focus .group-focus\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:focus .group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .group-focus\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:focus .group-focus\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:focus .group-focus\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:focus .group-focus\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:focus .group-focus\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:focus .group-focus\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:focus .group-focus\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:focus .group-focus\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:focus .group-focus\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:focus .group-focus\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:focus .group-focus\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:focus .group-focus\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:focus .group-focus\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:focus .group-focus\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:focus .group-focus\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:focus .group-focus\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:focus .group-focus\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:focus .group-focus\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:focus .group-focus\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:focus .group-focus\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:focus .group-focus\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.hover\:text-transparent:hover{color:transparent}.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.hover\:text-black:hover{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.hover\:text-gray-50:hover{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.hover\:text-gray-100:hover{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.hover\:text-gray-200:hover{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.hover\:text-gray-300:hover{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.hover\:text-gray-400:hover{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.hover\:text-gray-700:hover{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.hover\:text-cool-gray-50:hover{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.hover\:text-cool-gray-100:hover{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.hover\:text-cool-gray-200:hover{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.hover\:text-cool-gray-300:hover{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.hover\:text-cool-gray-400:hover{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.hover\:text-cool-gray-500:hover{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.hover\:text-cool-gray-600:hover{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.hover\:text-cool-gray-700:hover{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.hover\:text-cool-gray-800:hover{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.hover\:text-cool-gray-900:hover{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.hover\:text-red-50:hover{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.hover\:text-red-100:hover{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.hover\:text-red-200:hover{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.hover\:text-red-300:hover{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.hover\:text-red-400:hover{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.hover\:text-red-500:hover{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.hover\:text-red-600:hover{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.hover\:text-red-700:hover{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.hover\:text-red-800:hover{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.hover\:text-red-900:hover{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.hover\:text-orange-50:hover{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.hover\:text-orange-100:hover{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.hover\:text-orange-200:hover{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.hover\:text-orange-300:hover{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.hover\:text-orange-400:hover{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.hover\:text-orange-500:hover{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.hover\:text-orange-600:hover{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.hover\:text-orange-700:hover{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.hover\:text-orange-800:hover{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.hover\:text-orange-900:hover{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.hover\:text-yellow-50:hover{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.hover\:text-yellow-100:hover{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.hover\:text-yellow-200:hover{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.hover\:text-yellow-300:hover{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.hover\:text-yellow-400:hover{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.hover\:text-yellow-500:hover{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.hover\:text-yellow-600:hover{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.hover\:text-yellow-700:hover{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.hover\:text-yellow-800:hover{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.hover\:text-yellow-900:hover{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.hover\:text-green-50:hover{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.hover\:text-green-100:hover{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.hover\:text-green-200:hover{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.hover\:text-green-300:hover{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.hover\:text-green-400:hover{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.hover\:text-green-500:hover{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.hover\:text-green-600:hover{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.hover\:text-green-700:hover{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.hover\:text-green-800:hover{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.hover\:text-green-900:hover{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.hover\:text-teal-50:hover{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.hover\:text-teal-100:hover{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.hover\:text-teal-200:hover{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.hover\:text-teal-300:hover{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.hover\:text-teal-400:hover{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.hover\:text-teal-500:hover{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.hover\:text-teal-600:hover{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.hover\:text-teal-700:hover{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.hover\:text-teal-800:hover{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.hover\:text-teal-900:hover{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.hover\:text-blue-50:hover{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.hover\:text-blue-100:hover{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.hover\:text-blue-200:hover{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.hover\:text-blue-300:hover{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.hover\:text-blue-400:hover{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.hover\:text-blue-500:hover{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.hover\:text-blue-600:hover{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.hover\:text-blue-800:hover{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.hover\:text-blue-900:hover{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.hover\:text-indigo-50:hover{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.hover\:text-indigo-100:hover{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.hover\:text-indigo-200:hover{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.hover\:text-indigo-300:hover{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.hover\:text-indigo-400:hover{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.hover\:text-indigo-600:hover{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.hover\:text-indigo-700:hover{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.hover\:text-indigo-800:hover{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.hover\:text-indigo-900:hover{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.hover\:text-purple-50:hover{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.hover\:text-purple-100:hover{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.hover\:text-purple-200:hover{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.hover\:text-purple-300:hover{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.hover\:text-purple-400:hover{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.hover\:text-purple-500:hover{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.hover\:text-purple-600:hover{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.hover\:text-purple-700:hover{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.hover\:text-purple-800:hover{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.hover\:text-purple-900:hover{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.hover\:text-pink-50:hover{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.hover\:text-pink-100:hover{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.hover\:text-pink-200:hover{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.hover\:text-pink-300:hover{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.hover\:text-pink-400:hover{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.hover\:text-pink-500:hover{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.hover\:text-pink-600:hover{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.hover\:text-pink-700:hover{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.hover\:text-pink-800:hover{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.hover\:text-pink-900:hover{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.focus-within\:text-transparent:focus-within{color:transparent}.focus-within\:text-white:focus-within{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.focus-within\:text-black:focus-within{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.focus-within\:text-gray-50:focus-within{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.focus-within\:text-gray-100:focus-within{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.focus-within\:text-gray-200:focus-within{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.focus-within\:text-gray-300:focus-within{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.focus-within\:text-gray-400:focus-within{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.focus-within\:text-gray-500:focus-within{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.focus-within\:text-gray-600:focus-within{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.focus-within\:text-gray-700:focus-within{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.focus-within\:text-gray-800:focus-within{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.focus-within\:text-gray-900:focus-within{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.focus-within\:text-cool-gray-50:focus-within{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.focus-within\:text-cool-gray-100:focus-within{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.focus-within\:text-cool-gray-200:focus-within{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.focus-within\:text-cool-gray-300:focus-within{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.focus-within\:text-cool-gray-400:focus-within{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.focus-within\:text-cool-gray-500:focus-within{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.focus-within\:text-cool-gray-600:focus-within{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.focus-within\:text-cool-gray-700:focus-within{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.focus-within\:text-cool-gray-800:focus-within{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.focus-within\:text-cool-gray-900:focus-within{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.focus-within\:text-red-50:focus-within{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.focus-within\:text-red-100:focus-within{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.focus-within\:text-red-200:focus-within{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.focus-within\:text-red-300:focus-within{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.focus-within\:text-red-400:focus-within{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.focus-within\:text-red-500:focus-within{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.focus-within\:text-red-600:focus-within{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.focus-within\:text-red-700:focus-within{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.focus-within\:text-red-800:focus-within{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.focus-within\:text-red-900:focus-within{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.focus-within\:text-orange-50:focus-within{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.focus-within\:text-orange-100:focus-within{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.focus-within\:text-orange-200:focus-within{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.focus-within\:text-orange-300:focus-within{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.focus-within\:text-orange-400:focus-within{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.focus-within\:text-orange-500:focus-within{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.focus-within\:text-orange-600:focus-within{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.focus-within\:text-orange-700:focus-within{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.focus-within\:text-orange-800:focus-within{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.focus-within\:text-orange-900:focus-within{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.focus-within\:text-yellow-50:focus-within{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.focus-within\:text-yellow-100:focus-within{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.focus-within\:text-yellow-200:focus-within{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.focus-within\:text-yellow-300:focus-within{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.focus-within\:text-yellow-400:focus-within{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.focus-within\:text-yellow-500:focus-within{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.focus-within\:text-yellow-600:focus-within{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.focus-within\:text-yellow-700:focus-within{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.focus-within\:text-yellow-800:focus-within{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.focus-within\:text-yellow-900:focus-within{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.focus-within\:text-green-50:focus-within{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.focus-within\:text-green-100:focus-within{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.focus-within\:text-green-200:focus-within{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.focus-within\:text-green-300:focus-within{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.focus-within\:text-green-400:focus-within{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.focus-within\:text-green-500:focus-within{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.focus-within\:text-green-600:focus-within{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.focus-within\:text-green-700:focus-within{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.focus-within\:text-green-800:focus-within{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.focus-within\:text-green-900:focus-within{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.focus-within\:text-teal-50:focus-within{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.focus-within\:text-teal-100:focus-within{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.focus-within\:text-teal-200:focus-within{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.focus-within\:text-teal-300:focus-within{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.focus-within\:text-teal-400:focus-within{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.focus-within\:text-teal-500:focus-within{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.focus-within\:text-teal-600:focus-within{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.focus-within\:text-teal-700:focus-within{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.focus-within\:text-teal-800:focus-within{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.focus-within\:text-teal-900:focus-within{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.focus-within\:text-blue-50:focus-within{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.focus-within\:text-blue-100:focus-within{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.focus-within\:text-blue-200:focus-within{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.focus-within\:text-blue-300:focus-within{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.focus-within\:text-blue-400:focus-within{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.focus-within\:text-blue-500:focus-within{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.focus-within\:text-blue-600:focus-within{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.focus-within\:text-blue-700:focus-within{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.focus-within\:text-blue-800:focus-within{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.focus-within\:text-blue-900:focus-within{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.focus-within\:text-indigo-50:focus-within{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.focus-within\:text-indigo-100:focus-within{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.focus-within\:text-indigo-200:focus-within{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.focus-within\:text-indigo-300:focus-within{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.focus-within\:text-indigo-400:focus-within{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.focus-within\:text-indigo-500:focus-within{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.focus-within\:text-indigo-600:focus-within{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.focus-within\:text-indigo-700:focus-within{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.focus-within\:text-indigo-800:focus-within{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.focus-within\:text-indigo-900:focus-within{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.focus-within\:text-purple-50:focus-within{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.focus-within\:text-purple-100:focus-within{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.focus-within\:text-purple-200:focus-within{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.focus-within\:text-purple-300:focus-within{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.focus-within\:text-purple-400:focus-within{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.focus-within\:text-purple-500:focus-within{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.focus-within\:text-purple-600:focus-within{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.focus-within\:text-purple-700:focus-within{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.focus-within\:text-purple-800:focus-within{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.focus-within\:text-purple-900:focus-within{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.focus-within\:text-pink-50:focus-within{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.focus-within\:text-pink-100:focus-within{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.focus-within\:text-pink-200:focus-within{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.focus-within\:text-pink-300:focus-within{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.focus-within\:text-pink-400:focus-within{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.focus-within\:text-pink-500:focus-within{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.focus-within\:text-pink-600:focus-within{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.focus-within\:text-pink-700:focus-within{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.focus-within\:text-pink-800:focus-within{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.focus-within\:text-pink-900:focus-within{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.focus\:text-transparent:focus{color:transparent}.focus\:text-white:focus{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.focus\:text-black:focus{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.focus\:text-gray-50:focus{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.focus\:text-gray-100:focus{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.focus\:text-gray-200:focus{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.focus\:text-gray-300:focus{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.focus\:text-gray-400:focus{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.focus\:text-gray-500:focus{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.focus\:text-gray-600:focus{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.focus\:text-gray-700:focus{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.focus\:text-gray-800:focus{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.focus\:text-cool-gray-50:focus{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.focus\:text-cool-gray-100:focus{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.focus\:text-cool-gray-200:focus{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.focus\:text-cool-gray-300:focus{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.focus\:text-cool-gray-400:focus{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.focus\:text-cool-gray-500:focus{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.focus\:text-cool-gray-600:focus{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.focus\:text-cool-gray-700:focus{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.focus\:text-cool-gray-800:focus{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.focus\:text-cool-gray-900:focus{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.focus\:text-red-50:focus{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.focus\:text-red-100:focus{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.focus\:text-red-200:focus{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.focus\:text-red-300:focus{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.focus\:text-red-400:focus{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.focus\:text-red-500:focus{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.focus\:text-red-600:focus{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.focus\:text-red-700:focus{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.focus\:text-red-800:focus{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.focus\:text-red-900:focus{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.focus\:text-orange-50:focus{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.focus\:text-orange-100:focus{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.focus\:text-orange-200:focus{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.focus\:text-orange-300:focus{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.focus\:text-orange-400:focus{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.focus\:text-orange-500:focus{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.focus\:text-orange-600:focus{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.focus\:text-orange-700:focus{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.focus\:text-orange-800:focus{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.focus\:text-orange-900:focus{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.focus\:text-yellow-50:focus{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.focus\:text-yellow-100:focus{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.focus\:text-yellow-200:focus{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.focus\:text-yellow-300:focus{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.focus\:text-yellow-400:focus{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.focus\:text-yellow-500:focus{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.focus\:text-yellow-600:focus{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.focus\:text-yellow-700:focus{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.focus\:text-yellow-800:focus{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.focus\:text-yellow-900:focus{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.focus\:text-green-50:focus{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.focus\:text-green-100:focus{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.focus\:text-green-200:focus{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.focus\:text-green-300:focus{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.focus\:text-green-400:focus{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.focus\:text-green-500:focus{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.focus\:text-green-600:focus{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.focus\:text-green-700:focus{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.focus\:text-green-800:focus{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.focus\:text-green-900:focus{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.focus\:text-teal-50:focus{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.focus\:text-teal-100:focus{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.focus\:text-teal-200:focus{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.focus\:text-teal-300:focus{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.focus\:text-teal-400:focus{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.focus\:text-teal-500:focus{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.focus\:text-teal-600:focus{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.focus\:text-teal-700:focus{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.focus\:text-teal-800:focus{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.focus\:text-teal-900:focus{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.focus\:text-blue-50:focus{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.focus\:text-blue-100:focus{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.focus\:text-blue-200:focus{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.focus\:text-blue-300:focus{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.focus\:text-blue-400:focus{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.focus\:text-blue-500:focus{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.focus\:text-blue-600:focus{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.focus\:text-blue-700:focus{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.focus\:text-blue-800:focus{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.focus\:text-blue-900:focus{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.focus\:text-indigo-50:focus{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.focus\:text-indigo-100:focus{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.focus\:text-indigo-200:focus{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.focus\:text-indigo-300:focus{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.focus\:text-indigo-400:focus{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.focus\:text-indigo-500:focus{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.focus\:text-indigo-600:focus{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.focus\:text-indigo-700:focus{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.focus\:text-indigo-800:focus{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.focus\:text-indigo-900:focus{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.focus\:text-purple-50:focus{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.focus\:text-purple-100:focus{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.focus\:text-purple-200:focus{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.focus\:text-purple-300:focus{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.focus\:text-purple-400:focus{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.focus\:text-purple-500:focus{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.focus\:text-purple-600:focus{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.focus\:text-purple-700:focus{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.focus\:text-purple-800:focus{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.focus\:text-purple-900:focus{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.focus\:text-pink-50:focus{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.focus\:text-pink-100:focus{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.focus\:text-pink-200:focus{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.focus\:text-pink-300:focus{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.focus\:text-pink-400:focus{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.focus\:text-pink-500:focus{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.focus\:text-pink-600:focus{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.focus\:text-pink-700:focus{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.focus\:text-pink-800:focus{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.focus\:text-pink-900:focus{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.active\:text-transparent:active{color:transparent}.active\:text-white:active{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.active\:text-black:active{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.active\:text-gray-50:active{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.active\:text-gray-100:active{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.active\:text-gray-200:active{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.active\:text-gray-300:active{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.active\:text-gray-400:active{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.active\:text-gray-500:active{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.active\:text-gray-600:active{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.active\:text-gray-700:active{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.active\:text-gray-800:active{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.active\:text-gray-900:active{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.active\:text-cool-gray-50:active{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.active\:text-cool-gray-100:active{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.active\:text-cool-gray-200:active{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.active\:text-cool-gray-300:active{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.active\:text-cool-gray-400:active{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.active\:text-cool-gray-500:active{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.active\:text-cool-gray-600:active{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.active\:text-cool-gray-700:active{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.active\:text-cool-gray-800:active{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.active\:text-cool-gray-900:active{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.active\:text-red-50:active{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.active\:text-red-100:active{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.active\:text-red-200:active{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.active\:text-red-300:active{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.active\:text-red-400:active{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.active\:text-red-500:active{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.active\:text-red-600:active{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.active\:text-red-700:active{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.active\:text-red-800:active{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.active\:text-red-900:active{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.active\:text-orange-50:active{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.active\:text-orange-100:active{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.active\:text-orange-200:active{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.active\:text-orange-300:active{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.active\:text-orange-400:active{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.active\:text-orange-500:active{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.active\:text-orange-600:active{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.active\:text-orange-700:active{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.active\:text-orange-800:active{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.active\:text-orange-900:active{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.active\:text-yellow-50:active{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.active\:text-yellow-100:active{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.active\:text-yellow-200:active{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.active\:text-yellow-300:active{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.active\:text-yellow-400:active{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.active\:text-yellow-500:active{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.active\:text-yellow-600:active{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.active\:text-yellow-700:active{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.active\:text-yellow-800:active{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.active\:text-yellow-900:active{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.active\:text-green-50:active{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.active\:text-green-100:active{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.active\:text-green-200:active{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.active\:text-green-300:active{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.active\:text-green-400:active{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.active\:text-green-500:active{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.active\:text-green-600:active{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.active\:text-green-700:active{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.active\:text-green-800:active{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.active\:text-green-900:active{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.active\:text-teal-50:active{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.active\:text-teal-100:active{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.active\:text-teal-200:active{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.active\:text-teal-300:active{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.active\:text-teal-400:active{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.active\:text-teal-500:active{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.active\:text-teal-600:active{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.active\:text-teal-700:active{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.active\:text-teal-800:active{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.active\:text-teal-900:active{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.active\:text-blue-50:active{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.active\:text-blue-100:active{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.active\:text-blue-200:active{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.active\:text-blue-300:active{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.active\:text-blue-400:active{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.active\:text-blue-500:active{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.active\:text-blue-600:active{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.active\:text-blue-700:active{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.active\:text-blue-800:active{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.active\:text-blue-900:active{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.active\:text-indigo-50:active{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.active\:text-indigo-100:active{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.active\:text-indigo-200:active{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.active\:text-indigo-300:active{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.active\:text-indigo-400:active{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.active\:text-indigo-500:active{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.active\:text-indigo-700:active{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.active\:text-indigo-800:active{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.active\:text-indigo-900:active{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.active\:text-purple-50:active{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.active\:text-purple-100:active{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.active\:text-purple-200:active{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.active\:text-purple-300:active{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.active\:text-purple-400:active{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.active\:text-purple-500:active{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.active\:text-purple-600:active{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.active\:text-purple-700:active{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.active\:text-purple-800:active{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.active\:text-purple-900:active{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.active\:text-pink-50:active{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.active\:text-pink-100:active{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.active\:text-pink-200:active{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.active\:text-pink-300:active{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.active\:text-pink-400:active{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.active\:text-pink-500:active{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.active\:text-pink-600:active{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.active\:text-pink-700:active{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.active\:text-pink-800:active{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.active\:text-pink-900:active{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.text-opacity-0{--text-opacity:0}.text-opacity-25{--text-opacity:0.25}.text-opacity-50{--text-opacity:0.5}.text-opacity-75{--text-opacity:0.75}.text-opacity-100{--text-opacity:1}.hover\:text-opacity-0:hover{--text-opacity:0}.hover\:text-opacity-25:hover{--text-opacity:0.25}.hover\:text-opacity-50:hover{--text-opacity:0.5}.hover\:text-opacity-75:hover{--text-opacity:0.75}.hover\:text-opacity-100:hover{--text-opacity:1}.focus\:text-opacity-0:focus{--text-opacity:0}.focus\:text-opacity-25:focus{--text-opacity:0.25}.focus\:text-opacity-50:focus{--text-opacity:0.5}.focus\:text-opacity-75:focus{--text-opacity:0.75}.focus\:text-opacity-100:focus{--text-opacity:1}.italic{font-style:italic}.not-italic{font-style:normal}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.capitalize{text-transform:capitalize}.normal-case{text-transform:none}.underline{text-decoration:underline}.line-through{text-decoration:line-through}.no-underline{text-decoration:none}.group:hover .group-hover\:underline{text-decoration:underline}.group:hover .group-hover\:line-through{text-decoration:line-through}.group:hover .group-hover\:no-underline{text-decoration:none}.group:focus .group-focus\:underline{text-decoration:underline}.group:focus .group-focus\:line-through{text-decoration:line-through}.group:focus .group-focus\:no-underline{text-decoration:none}.hover\:underline:hover{text-decoration:underline}.hover\:line-through:hover{text-decoration:line-through}.hover\:no-underline:hover{text-decoration:none}.focus\:underline:focus{text-decoration:underline}.focus\:line-through:focus{text-decoration:line-through}.focus\:no-underline:focus{text-decoration:none}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.tracking-tighter{letter-spacing:-.05em}.tracking-tight{letter-spacing:-.025em}.tracking-normal{letter-spacing:0}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select-text{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.select-auto{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.align-baseline{vertical-align:baseline}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.align-text-top{vertical-align:text-top}.align-text-bottom{vertical-align:text-bottom}.visible{visibility:visible}.invisible{visibility:hidden}.whitespace-normal{white-space:normal}.whitespace-no-wrap{white-space:nowrap}.whitespace-pre{white-space:pre}.whitespace-pre-line{white-space:pre-line}.whitespace-pre-wrap{white-space:pre-wrap}.break-normal{overflow-wrap:normal;word-break:normal}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.w-0{width:0}.w-1{width:.25rem}.w-2{width:.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-13{width:3.25rem}.w-14{width:3.5rem}.w-15{width:3.75rem}.w-16{width:4rem}.w-20{width:5rem}.w-24{width:6rem}.w-28{width:7rem}.w-32{width:8rem}.w-36{width:9rem}.w-40{width:10rem}.w-44{width:11rem}.w-48{width:12rem}.w-52{width:13rem}.w-56{width:14rem}.w-60{width:15rem}.w-64{width:16rem}.w-72{width:18rem}.w-80{width:20rem}.w-96{width:24rem}.w-auto{width:auto}.w-px{width:1px}.w-0\.5{width:.125rem}.w-1\.5{width:.375rem}.w-2\.5{width:.625rem}.w-3\.5{width:.875rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-1\/4{width:25%}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-1\/5{width:20%}.w-2\/5{width:40%}.w-3\/5{width:60%}.w-4\/5{width:80%}.w-1\/6{width:16.666667%}.w-2\/6{width:33.333333%}.w-3\/6{width:50%}.w-4\/6{width:66.666667%}.w-5\/6{width:83.333333%}.w-1\/12{width:8.333333%}.w-2\/12{width:16.666667%}.w-3\/12{width:25%}.w-4\/12{width:33.333333%}.w-5\/12{width:41.666667%}.w-6\/12{width:50%}.w-7\/12{width:58.333333%}.w-8\/12{width:66.666667%}.w-9\/12{width:75%}.w-10\/12{width:83.333333%}.w-11\/12{width:91.666667%}.w-full{width:100%}.w-screen{width:100vw}.w-min-content{width:-webkit-min-content;width:-moz-min-content;width:min-content}.w-max-content{width:-webkit-max-content;width:-moz-max-content;width:max-content}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.z-40{z-index:40}.z-50{z-index:50}.z-auto{z-index:auto}.focus-within\:z-0:focus-within{z-index:0}.focus-within\:z-10:focus-within{z-index:10}.focus-within\:z-20:focus-within{z-index:20}.focus-within\:z-30:focus-within{z-index:30}.focus-within\:z-40:focus-within{z-index:40}.focus-within\:z-50:focus-within{z-index:50}.focus-within\:z-auto:focus-within{z-index:auto}.focus\:z-0:focus{z-index:0}.focus\:z-10:focus{z-index:10}.focus\:z-20:focus{z-index:20}.focus\:z-30:focus{z-index:30}.focus\:z-40:focus{z-index:40}.focus\:z-50:focus{z-index:50}.focus\:z-auto:focus{z-index:auto}.gap-0{grid-gap:0;gap:0}.gap-1{grid-gap:.25rem;gap:.25rem}.gap-2{grid-gap:.5rem;gap:.5rem}.gap-3{grid-gap:.75rem;gap:.75rem}.gap-4{grid-gap:1rem;gap:1rem}.gap-5{grid-gap:1.25rem;gap:1.25rem}.gap-6{grid-gap:1.5rem;gap:1.5rem}.gap-7{grid-gap:1.75rem;gap:1.75rem}.gap-8{grid-gap:2rem;gap:2rem}.gap-9{grid-gap:2.25rem;gap:2.25rem}.gap-10{grid-gap:2.5rem;gap:2.5rem}.gap-11{grid-gap:2.75rem;gap:2.75rem}.gap-12{grid-gap:3rem;gap:3rem}.gap-13{grid-gap:3.25rem;gap:3.25rem}.gap-14{grid-gap:3.5rem;gap:3.5rem}.gap-15{grid-gap:3.75rem;gap:3.75rem}.gap-16{grid-gap:4rem;gap:4rem}.gap-20{grid-gap:5rem;gap:5rem}.gap-24{grid-gap:6rem;gap:6rem}.gap-28{grid-gap:7rem;gap:7rem}.gap-32{grid-gap:8rem;gap:8rem}.gap-36{grid-gap:9rem;gap:9rem}.gap-40{grid-gap:10rem;gap:10rem}.gap-44{grid-gap:11rem;gap:11rem}.gap-48{grid-gap:12rem;gap:12rem}.gap-52{grid-gap:13rem;gap:13rem}.gap-56{grid-gap:14rem;gap:14rem}.gap-60{grid-gap:15rem;gap:15rem}.gap-64{grid-gap:16rem;gap:16rem}.gap-72{grid-gap:18rem;gap:18rem}.gap-80{grid-gap:20rem;gap:20rem}.gap-96{grid-gap:24rem;gap:24rem}.gap-px{grid-gap:1px;gap:1px}.gap-0\.5{grid-gap:.125rem;gap:.125rem}.gap-1\.5{grid-gap:.375rem;gap:.375rem}.gap-2\.5{grid-gap:.625rem;gap:.625rem}.gap-3\.5{grid-gap:.875rem;gap:.875rem}.gap-1\/2{grid-gap:50%;gap:50%}.gap-1\/3{grid-gap:33.333333%;gap:33.333333%}.gap-2\/3{grid-gap:66.666667%;gap:66.666667%}.gap-1\/4{grid-gap:25%;gap:25%}.gap-2\/4{grid-gap:50%;gap:50%}.gap-3\/4{grid-gap:75%;gap:75%}.gap-1\/5{grid-gap:20%;gap:20%}.gap-2\/5{grid-gap:40%;gap:40%}.gap-3\/5{grid-gap:60%;gap:60%}.gap-4\/5{grid-gap:80%;gap:80%}.gap-1\/6{grid-gap:16.666667%;gap:16.666667%}.gap-2\/6{grid-gap:33.333333%;gap:33.333333%}.gap-3\/6{grid-gap:50%;gap:50%}.gap-4\/6{grid-gap:66.666667%;gap:66.666667%}.gap-5\/6{grid-gap:83.333333%;gap:83.333333%}.gap-1\/12{grid-gap:8.333333%;gap:8.333333%}.gap-2\/12{grid-gap:16.666667%;gap:16.666667%}.gap-3\/12{grid-gap:25%;gap:25%}.gap-4\/12{grid-gap:33.333333%;gap:33.333333%}.gap-5\/12{grid-gap:41.666667%;gap:41.666667%}.gap-6\/12{grid-gap:50%;gap:50%}.gap-7\/12{grid-gap:58.333333%;gap:58.333333%}.gap-8\/12{grid-gap:66.666667%;gap:66.666667%}.gap-9\/12{grid-gap:75%;gap:75%}.gap-10\/12{grid-gap:83.333333%;gap:83.333333%}.gap-11\/12{grid-gap:91.666667%;gap:91.666667%}.gap-full{grid-gap:100%;gap:100%}.col-gap-0{grid-column-gap:0;-moz-column-gap:0;column-gap:0}.col-gap-1{grid-column-gap:.25rem;-moz-column-gap:.25rem;column-gap:.25rem}.col-gap-2{grid-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}.col-gap-3{grid-column-gap:.75rem;-moz-column-gap:.75rem;column-gap:.75rem}.col-gap-4{grid-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.col-gap-5{grid-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.col-gap-6{grid-column-gap:1.5rem;-moz-column-gap:1.5rem;column-gap:1.5rem}.col-gap-7{grid-column-gap:1.75rem;-moz-column-gap:1.75rem;column-gap:1.75rem}.col-gap-8{grid-column-gap:2rem;-moz-column-gap:2rem;column-gap:2rem}.col-gap-9{grid-column-gap:2.25rem;-moz-column-gap:2.25rem;column-gap:2.25rem}.col-gap-10{grid-column-gap:2.5rem;-moz-column-gap:2.5rem;column-gap:2.5rem}.col-gap-11{grid-column-gap:2.75rem;-moz-column-gap:2.75rem;column-gap:2.75rem}.col-gap-12{grid-column-gap:3rem;-moz-column-gap:3rem;column-gap:3rem}.col-gap-13{grid-column-gap:3.25rem;-moz-column-gap:3.25rem;column-gap:3.25rem}.col-gap-14{grid-column-gap:3.5rem;-moz-column-gap:3.5rem;column-gap:3.5rem}.col-gap-15{grid-column-gap:3.75rem;-moz-column-gap:3.75rem;column-gap:3.75rem}.col-gap-16{grid-column-gap:4rem;-moz-column-gap:4rem;column-gap:4rem}.col-gap-20{grid-column-gap:5rem;-moz-column-gap:5rem;column-gap:5rem}.col-gap-24{grid-column-gap:6rem;-moz-column-gap:6rem;column-gap:6rem}.col-gap-28{grid-column-gap:7rem;-moz-column-gap:7rem;column-gap:7rem}.col-gap-32{grid-column-gap:8rem;-moz-column-gap:8rem;column-gap:8rem}.col-gap-36{grid-column-gap:9rem;-moz-column-gap:9rem;column-gap:9rem}.col-gap-40{grid-column-gap:10rem;-moz-column-gap:10rem;column-gap:10rem}.col-gap-44{grid-column-gap:11rem;-moz-column-gap:11rem;column-gap:11rem}.col-gap-48{grid-column-gap:12rem;-moz-column-gap:12rem;column-gap:12rem}.col-gap-52{grid-column-gap:13rem;-moz-column-gap:13rem;column-gap:13rem}.col-gap-56{grid-column-gap:14rem;-moz-column-gap:14rem;column-gap:14rem}.col-gap-60{grid-column-gap:15rem;-moz-column-gap:15rem;column-gap:15rem}.col-gap-64{grid-column-gap:16rem;-moz-column-gap:16rem;column-gap:16rem}.col-gap-72{grid-column-gap:18rem;-moz-column-gap:18rem;column-gap:18rem}.col-gap-80{grid-column-gap:20rem;-moz-column-gap:20rem;column-gap:20rem}.col-gap-96{grid-column-gap:24rem;-moz-column-gap:24rem;column-gap:24rem}.col-gap-px{grid-column-gap:1px;-moz-column-gap:1px;column-gap:1px}.col-gap-0\.5{grid-column-gap:.125rem;-moz-column-gap:.125rem;column-gap:.125rem}.col-gap-1\.5{grid-column-gap:.375rem;-moz-column-gap:.375rem;column-gap:.375rem}.col-gap-2\.5{grid-column-gap:.625rem;-moz-column-gap:.625rem;column-gap:.625rem}.col-gap-3\.5{grid-column-gap:.875rem;-moz-column-gap:.875rem;column-gap:.875rem}.col-gap-1\/2{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.col-gap-1\/3{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.col-gap-2\/3{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.col-gap-1\/4{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.col-gap-2\/4{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.col-gap-3\/4{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.col-gap-1\/5{grid-column-gap:20%;-moz-column-gap:20%;column-gap:20%}.col-gap-2\/5{grid-column-gap:40%;-moz-column-gap:40%;column-gap:40%}.col-gap-3\/5{grid-column-gap:60%;-moz-column-gap:60%;column-gap:60%}.col-gap-4\/5{grid-column-gap:80%;-moz-column-gap:80%;column-gap:80%}.col-gap-1\/6{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.col-gap-2\/6{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.col-gap-3\/6{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.col-gap-4\/6{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.col-gap-5\/6{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.col-gap-1\/12{grid-column-gap:8.333333%;-moz-column-gap:8.333333%;column-gap:8.333333%}.col-gap-2\/12{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.col-gap-3\/12{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.col-gap-4\/12{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.col-gap-5\/12{grid-column-gap:41.666667%;-moz-column-gap:41.666667%;column-gap:41.666667%}.col-gap-6\/12{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.col-gap-7\/12{grid-column-gap:58.333333%;-moz-column-gap:58.333333%;column-gap:58.333333%}.col-gap-8\/12{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.col-gap-9\/12{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.col-gap-10\/12{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.col-gap-11\/12{grid-column-gap:91.666667%;-moz-column-gap:91.666667%;column-gap:91.666667%}.col-gap-full{grid-column-gap:100%;-moz-column-gap:100%;column-gap:100%}.row-gap-0{grid-row-gap:0;row-gap:0}.row-gap-1{grid-row-gap:.25rem;row-gap:.25rem}.row-gap-2{grid-row-gap:.5rem;row-gap:.5rem}.row-gap-3{grid-row-gap:.75rem;row-gap:.75rem}.row-gap-4{grid-row-gap:1rem;row-gap:1rem}.row-gap-5{grid-row-gap:1.25rem;row-gap:1.25rem}.row-gap-6{grid-row-gap:1.5rem;row-gap:1.5rem}.row-gap-7{grid-row-gap:1.75rem;row-gap:1.75rem}.row-gap-8{grid-row-gap:2rem;row-gap:2rem}.row-gap-9{grid-row-gap:2.25rem;row-gap:2.25rem}.row-gap-10{grid-row-gap:2.5rem;row-gap:2.5rem}.row-gap-11{grid-row-gap:2.75rem;row-gap:2.75rem}.row-gap-12{grid-row-gap:3rem;row-gap:3rem}.row-gap-13{grid-row-gap:3.25rem;row-gap:3.25rem}.row-gap-14{grid-row-gap:3.5rem;row-gap:3.5rem}.row-gap-15{grid-row-gap:3.75rem;row-gap:3.75rem}.row-gap-16{grid-row-gap:4rem;row-gap:4rem}.row-gap-20{grid-row-gap:5rem;row-gap:5rem}.row-gap-24{grid-row-gap:6rem;row-gap:6rem}.row-gap-28{grid-row-gap:7rem;row-gap:7rem}.row-gap-32{grid-row-gap:8rem;row-gap:8rem}.row-gap-36{grid-row-gap:9rem;row-gap:9rem}.row-gap-40{grid-row-gap:10rem;row-gap:10rem}.row-gap-44{grid-row-gap:11rem;row-gap:11rem}.row-gap-48{grid-row-gap:12rem;row-gap:12rem}.row-gap-52{grid-row-gap:13rem;row-gap:13rem}.row-gap-56{grid-row-gap:14rem;row-gap:14rem}.row-gap-60{grid-row-gap:15rem;row-gap:15rem}.row-gap-64{grid-row-gap:16rem;row-gap:16rem}.row-gap-72{grid-row-gap:18rem;row-gap:18rem}.row-gap-80{grid-row-gap:20rem;row-gap:20rem}.row-gap-96{grid-row-gap:24rem;row-gap:24rem}.row-gap-px{grid-row-gap:1px;row-gap:1px}.row-gap-0\.5{grid-row-gap:.125rem;row-gap:.125rem}.row-gap-1\.5{grid-row-gap:.375rem;row-gap:.375rem}.row-gap-2\.5{grid-row-gap:.625rem;row-gap:.625rem}.row-gap-3\.5{grid-row-gap:.875rem;row-gap:.875rem}.row-gap-1\/2{grid-row-gap:50%;row-gap:50%}.row-gap-1\/3{grid-row-gap:33.333333%;row-gap:33.333333%}.row-gap-2\/3{grid-row-gap:66.666667%;row-gap:66.666667%}.row-gap-1\/4{grid-row-gap:25%;row-gap:25%}.row-gap-2\/4{grid-row-gap:50%;row-gap:50%}.row-gap-3\/4{grid-row-gap:75%;row-gap:75%}.row-gap-1\/5{grid-row-gap:20%;row-gap:20%}.row-gap-2\/5{grid-row-gap:40%;row-gap:40%}.row-gap-3\/5{grid-row-gap:60%;row-gap:60%}.row-gap-4\/5{grid-row-gap:80%;row-gap:80%}.row-gap-1\/6{grid-row-gap:16.666667%;row-gap:16.666667%}.row-gap-2\/6{grid-row-gap:33.333333%;row-gap:33.333333%}.row-gap-3\/6{grid-row-gap:50%;row-gap:50%}.row-gap-4\/6{grid-row-gap:66.666667%;row-gap:66.666667%}.row-gap-5\/6{grid-row-gap:83.333333%;row-gap:83.333333%}.row-gap-1\/12{grid-row-gap:8.333333%;row-gap:8.333333%}.row-gap-2\/12{grid-row-gap:16.666667%;row-gap:16.666667%}.row-gap-3\/12{grid-row-gap:25%;row-gap:25%}.row-gap-4\/12{grid-row-gap:33.333333%;row-gap:33.333333%}.row-gap-5\/12{grid-row-gap:41.666667%;row-gap:41.666667%}.row-gap-6\/12{grid-row-gap:50%;row-gap:50%}.row-gap-7\/12{grid-row-gap:58.333333%;row-gap:58.333333%}.row-gap-8\/12{grid-row-gap:66.666667%;row-gap:66.666667%}.row-gap-9\/12{grid-row-gap:75%;row-gap:75%}.row-gap-10\/12{grid-row-gap:83.333333%;row-gap:83.333333%}.row-gap-11\/12{grid-row-gap:91.666667%;row-gap:91.666667%}.row-gap-full{grid-row-gap:100%;row-gap:100%}.grid-flow-row{grid-auto-flow:row}.grid-flow-col{grid-auto-flow:column}.grid-flow-row-dense{grid-auto-flow:row dense}.grid-flow-col-dense{grid-auto-flow:column dense}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.grid-cols-none{grid-template-columns:none}.col-auto{grid-column:auto}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.col-span-4{grid-column:span 4/span 4}.col-span-5{grid-column:span 5/span 5}.col-span-6{grid-column:span 6/span 6}.col-span-7{grid-column:span 7/span 7}.col-span-8{grid-column:span 8/span 8}.col-span-9{grid-column:span 9/span 9}.col-span-10{grid-column:span 10/span 10}.col-span-11{grid-column:span 11/span 11}.col-span-12{grid-column:span 12/span 12}.col-start-1{grid-column-start:1}.col-start-2{grid-column-start:2}.col-start-3{grid-column-start:3}.col-start-4{grid-column-start:4}.col-start-5{grid-column-start:5}.col-start-6{grid-column-start:6}.col-start-7{grid-column-start:7}.col-start-8{grid-column-start:8}.col-start-9{grid-column-start:9}.col-start-10{grid-column-start:10}.col-start-11{grid-column-start:11}.col-start-12{grid-column-start:12}.col-start-13{grid-column-start:13}.col-start-auto{grid-column-start:auto}.col-end-1{grid-column-end:1}.col-end-2{grid-column-end:2}.col-end-3{grid-column-end:3}.col-end-4{grid-column-end:4}.col-end-5{grid-column-end:5}.col-end-6{grid-column-end:6}.col-end-7{grid-column-end:7}.col-end-8{grid-column-end:8}.col-end-9{grid-column-end:9}.col-end-10{grid-column-end:10}.col-end-11{grid-column-end:11}.col-end-12{grid-column-end:12}.col-end-13{grid-column-end:13}.col-end-auto{grid-column-end:auto}.grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))}.grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))}.grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))}.grid-rows-none{grid-template-rows:none}.row-auto{grid-row:auto}.row-span-1{grid-row:span 1/span 1}.row-span-2{grid-row:span 2/span 2}.row-span-3{grid-row:span 3/span 3}.row-span-4{grid-row:span 4/span 4}.row-span-5{grid-row:span 5/span 5}.row-span-6{grid-row:span 6/span 6}.row-start-1{grid-row-start:1}.row-start-2{grid-row-start:2}.row-start-3{grid-row-start:3}.row-start-4{grid-row-start:4}.row-start-5{grid-row-start:5}.row-start-6{grid-row-start:6}.row-start-7{grid-row-start:7}.row-start-auto{grid-row-start:auto}.row-end-1{grid-row-end:1}.row-end-2{grid-row-end:2}.row-end-3{grid-row-end:3}.row-end-4{grid-row-end:4}.row-end-5{grid-row-end:5}.row-end-6{grid-row-end:6}.row-end-7{grid-row-end:7}.row-end-auto{grid-row-end:auto}.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.transform-none{transform:none}.origin-center{transform-origin:center}.origin-top{transform-origin:top}.origin-top-right{transform-origin:top right}.origin-right{transform-origin:right}.origin-bottom-right{transform-origin:bottom right}.origin-bottom{transform-origin:bottom}.origin-bottom-left{transform-origin:bottom left}.origin-left{transform-origin:left}.origin-top-left{transform-origin:top left}.scale-0{--transform-scale-x:0;--transform-scale-y:0}.scale-50{--transform-scale-x:.5;--transform-scale-y:.5}.scale-75{--transform-scale-x:.75;--transform-scale-y:.75}.scale-90{--transform-scale-x:.9;--transform-scale-y:.9}.scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.scale-100{--transform-scale-x:1;--transform-scale-y:1}.scale-105{--transform-scale-x:1.05;--transform-scale-y:1.05}.scale-110{--transform-scale-x:1.1;--transform-scale-y:1.1}.scale-125{--transform-scale-x:1.25;--transform-scale-y:1.25}.scale-150{--transform-scale-x:1.5;--transform-scale-y:1.5}.scale-x-0{--transform-scale-x:0}.scale-x-50{--transform-scale-x:.5}.scale-x-75{--transform-scale-x:.75}.scale-x-90{--transform-scale-x:.9}.scale-x-95{--transform-scale-x:.95}.scale-x-100{--transform-scale-x:1}.scale-x-105{--transform-scale-x:1.05}.scale-x-110{--transform-scale-x:1.1}.scale-x-125{--transform-scale-x:1.25}.scale-x-150{--transform-scale-x:1.5}.scale-y-0{--transform-scale-y:0}.scale-y-50{--transform-scale-y:.5}.scale-y-75{--transform-scale-y:.75}.scale-y-90{--transform-scale-y:.9}.scale-y-95{--transform-scale-y:.95}.scale-y-100{--transform-scale-y:1}.scale-y-105{--transform-scale-y:1.05}.scale-y-110{--transform-scale-y:1.1}.scale-y-125{--transform-scale-y:1.25}.scale-y-150{--transform-scale-y:1.5}.hover\:scale-0:hover{--transform-scale-x:0;--transform-scale-y:0}.hover\:scale-50:hover{--transform-scale-x:.5;--transform-scale-y:.5}.hover\:scale-75:hover{--transform-scale-x:.75;--transform-scale-y:.75}.hover\:scale-90:hover{--transform-scale-x:.9;--transform-scale-y:.9}.hover\:scale-95:hover{--transform-scale-x:.95;--transform-scale-y:.95}.hover\:scale-100:hover{--transform-scale-x:1;--transform-scale-y:1}.hover\:scale-105:hover{--transform-scale-x:1.05;--transform-scale-y:1.05}.hover\:scale-110:hover{--transform-scale-x:1.1;--transform-scale-y:1.1}.hover\:scale-125:hover{--transform-scale-x:1.25;--transform-scale-y:1.25}.hover\:scale-150:hover{--transform-scale-x:1.5;--transform-scale-y:1.5}.hover\:scale-x-0:hover{--transform-scale-x:0}.hover\:scale-x-50:hover{--transform-scale-x:.5}.hover\:scale-x-75:hover{--transform-scale-x:.75}.hover\:scale-x-90:hover{--transform-scale-x:.9}.hover\:scale-x-95:hover{--transform-scale-x:.95}.hover\:scale-x-100:hover{--transform-scale-x:1}.hover\:scale-x-105:hover{--transform-scale-x:1.05}.hover\:scale-x-110:hover{--transform-scale-x:1.1}.hover\:scale-x-125:hover{--transform-scale-x:1.25}.hover\:scale-x-150:hover{--transform-scale-x:1.5}.hover\:scale-y-0:hover{--transform-scale-y:0}.hover\:scale-y-50:hover{--transform-scale-y:.5}.hover\:scale-y-75:hover{--transform-scale-y:.75}.hover\:scale-y-90:hover{--transform-scale-y:.9}.hover\:scale-y-95:hover{--transform-scale-y:.95}.hover\:scale-y-100:hover{--transform-scale-y:1}.hover\:scale-y-105:hover{--transform-scale-y:1.05}.hover\:scale-y-110:hover{--transform-scale-y:1.1}.hover\:scale-y-125:hover{--transform-scale-y:1.25}.hover\:scale-y-150:hover{--transform-scale-y:1.5}.focus\:scale-0:focus{--transform-scale-x:0;--transform-scale-y:0}.focus\:scale-50:focus{--transform-scale-x:.5;--transform-scale-y:.5}.focus\:scale-75:focus{--transform-scale-x:.75;--transform-scale-y:.75}.focus\:scale-90:focus{--transform-scale-x:.9;--transform-scale-y:.9}.focus\:scale-95:focus{--transform-scale-x:.95;--transform-scale-y:.95}.focus\:scale-100:focus{--transform-scale-x:1;--transform-scale-y:1}.focus\:scale-105:focus{--transform-scale-x:1.05;--transform-scale-y:1.05}.focus\:scale-110:focus{--transform-scale-x:1.1;--transform-scale-y:1.1}.focus\:scale-125:focus{--transform-scale-x:1.25;--transform-scale-y:1.25}.focus\:scale-150:focus{--transform-scale-x:1.5;--transform-scale-y:1.5}.focus\:scale-x-0:focus{--transform-scale-x:0}.focus\:scale-x-50:focus{--transform-scale-x:.5}.focus\:scale-x-75:focus{--transform-scale-x:.75}.focus\:scale-x-90:focus{--transform-scale-x:.9}.focus\:scale-x-95:focus{--transform-scale-x:.95}.focus\:scale-x-100:focus{--transform-scale-x:1}.focus\:scale-x-105:focus{--transform-scale-x:1.05}.focus\:scale-x-110:focus{--transform-scale-x:1.1}.focus\:scale-x-125:focus{--transform-scale-x:1.25}.focus\:scale-x-150:focus{--transform-scale-x:1.5}.focus\:scale-y-0:focus{--transform-scale-y:0}.focus\:scale-y-50:focus{--transform-scale-y:.5}.focus\:scale-y-75:focus{--transform-scale-y:.75}.focus\:scale-y-90:focus{--transform-scale-y:.9}.focus\:scale-y-95:focus{--transform-scale-y:.95}.focus\:scale-y-100:focus{--transform-scale-y:1}.focus\:scale-y-105:focus{--transform-scale-y:1.05}.focus\:scale-y-110:focus{--transform-scale-y:1.1}.focus\:scale-y-125:focus{--transform-scale-y:1.25}.focus\:scale-y-150:focus{--transform-scale-y:1.5}.rotate-0{--transform-rotate:0}.rotate-45{--transform-rotate:45deg}.rotate-90{--transform-rotate:90deg}.rotate-180{--transform-rotate:180deg}.-rotate-180{--transform-rotate:-180deg}.-rotate-90{--transform-rotate:-90deg}.-rotate-45{--transform-rotate:-45deg}.hover\:rotate-0:hover{--transform-rotate:0}.hover\:rotate-45:hover{--transform-rotate:45deg}.hover\:rotate-90:hover{--transform-rotate:90deg}.hover\:rotate-180:hover{--transform-rotate:180deg}.hover\:-rotate-180:hover{--transform-rotate:-180deg}.hover\:-rotate-90:hover{--transform-rotate:-90deg}.hover\:-rotate-45:hover{--transform-rotate:-45deg}.focus\:rotate-0:focus{--transform-rotate:0}.focus\:rotate-45:focus{--transform-rotate:45deg}.focus\:rotate-90:focus{--transform-rotate:90deg}.focus\:rotate-180:focus{--transform-rotate:180deg}.focus\:-rotate-180:focus{--transform-rotate:-180deg}.focus\:-rotate-90:focus{--transform-rotate:-90deg}.focus\:-rotate-45:focus{--transform-rotate:-45deg}.translate-x-0{--transform-translate-x:0}.translate-x-1{--transform-translate-x:0.25rem}.translate-x-2{--transform-translate-x:0.5rem}.translate-x-3{--transform-translate-x:0.75rem}.translate-x-4{--transform-translate-x:1rem}.translate-x-5{--transform-translate-x:1.25rem}.translate-x-6{--transform-translate-x:1.5rem}.translate-x-7{--transform-translate-x:1.75rem}.translate-x-8{--transform-translate-x:2rem}.translate-x-9{--transform-translate-x:2.25rem}.translate-x-10{--transform-translate-x:2.5rem}.translate-x-11{--transform-translate-x:2.75rem}.translate-x-12{--transform-translate-x:3rem}.translate-x-13{--transform-translate-x:3.25rem}.translate-x-14{--transform-translate-x:3.5rem}.translate-x-15{--transform-translate-x:3.75rem}.translate-x-16{--transform-translate-x:4rem}.translate-x-20{--transform-translate-x:5rem}.translate-x-24{--transform-translate-x:6rem}.translate-x-28{--transform-translate-x:7rem}.translate-x-32{--transform-translate-x:8rem}.translate-x-36{--transform-translate-x:9rem}.translate-x-40{--transform-translate-x:10rem}.translate-x-44{--transform-translate-x:11rem}.translate-x-48{--transform-translate-x:12rem}.translate-x-52{--transform-translate-x:13rem}.translate-x-56{--transform-translate-x:14rem}.translate-x-60{--transform-translate-x:15rem}.translate-x-64{--transform-translate-x:16rem}.translate-x-72{--transform-translate-x:18rem}.translate-x-80{--transform-translate-x:20rem}.translate-x-96{--transform-translate-x:24rem}.translate-x-px{--transform-translate-x:1px}.translate-x-0\.5{--transform-translate-x:0.125rem}.translate-x-1\.5{--transform-translate-x:0.375rem}.translate-x-2\.5{--transform-translate-x:0.625rem}.translate-x-3\.5{--transform-translate-x:0.875rem}.translate-x-1\/2{--transform-translate-x:50%}.translate-x-1\/3{--transform-translate-x:33.333333%}.translate-x-2\/3{--transform-translate-x:66.666667%}.translate-x-1\/4{--transform-translate-x:25%}.translate-x-2\/4{--transform-translate-x:50%}.translate-x-3\/4{--transform-translate-x:75%}.translate-x-1\/5{--transform-translate-x:20%}.translate-x-2\/5{--transform-translate-x:40%}.translate-x-3\/5{--transform-translate-x:60%}.translate-x-4\/5{--transform-translate-x:80%}.translate-x-1\/6{--transform-translate-x:16.666667%}.translate-x-2\/6{--transform-translate-x:33.333333%}.translate-x-3\/6{--transform-translate-x:50%}.translate-x-4\/6{--transform-translate-x:66.666667%}.translate-x-5\/6{--transform-translate-x:83.333333%}.translate-x-1\/12{--transform-translate-x:8.333333%}.translate-x-2\/12{--transform-translate-x:16.666667%}.translate-x-3\/12{--transform-translate-x:25%}.translate-x-4\/12{--transform-translate-x:33.333333%}.translate-x-5\/12{--transform-translate-x:41.666667%}.translate-x-6\/12{--transform-translate-x:50%}.translate-x-7\/12{--transform-translate-x:58.333333%}.translate-x-8\/12{--transform-translate-x:66.666667%}.translate-x-9\/12{--transform-translate-x:75%}.translate-x-10\/12{--transform-translate-x:83.333333%}.translate-x-11\/12{--transform-translate-x:91.666667%}.translate-x-full{--transform-translate-x:100%}.-translate-x-1{--transform-translate-x:-0.25rem}.-translate-x-2{--transform-translate-x:-0.5rem}.-translate-x-3{--transform-translate-x:-0.75rem}.-translate-x-4{--transform-translate-x:-1rem}.-translate-x-5{--transform-translate-x:-1.25rem}.-translate-x-6{--transform-translate-x:-1.5rem}.-translate-x-7{--transform-translate-x:-1.75rem}.-translate-x-8{--transform-translate-x:-2rem}.-translate-x-9{--transform-translate-x:-2.25rem}.-translate-x-10{--transform-translate-x:-2.5rem}.-translate-x-11{--transform-translate-x:-2.75rem}.-translate-x-12{--transform-translate-x:-3rem}.-translate-x-13{--transform-translate-x:-3.25rem}.-translate-x-14{--transform-translate-x:-3.5rem}.-translate-x-15{--transform-translate-x:-3.75rem}.-translate-x-16{--transform-translate-x:-4rem}.-translate-x-20{--transform-translate-x:-5rem}.-translate-x-24{--transform-translate-x:-6rem}.-translate-x-28{--transform-translate-x:-7rem}.-translate-x-32{--transform-translate-x:-8rem}.-translate-x-36{--transform-translate-x:-9rem}.-translate-x-40{--transform-translate-x:-10rem}.-translate-x-44{--transform-translate-x:-11rem}.-translate-x-48{--transform-translate-x:-12rem}.-translate-x-52{--transform-translate-x:-13rem}.-translate-x-56{--transform-translate-x:-14rem}.-translate-x-60{--transform-translate-x:-15rem}.-translate-x-64{--transform-translate-x:-16rem}.-translate-x-72{--transform-translate-x:-18rem}.-translate-x-80{--transform-translate-x:-20rem}.-translate-x-96{--transform-translate-x:-24rem}.-translate-x-px{--transform-translate-x:-1px}.-translate-x-0\.5{--transform-translate-x:-0.125rem}.-translate-x-1\.5{--transform-translate-x:-0.375rem}.-translate-x-2\.5{--transform-translate-x:-0.625rem}.-translate-x-3\.5{--transform-translate-x:-0.875rem}.-translate-x-1\/2{--transform-translate-x:-50%}.-translate-x-1\/3{--transform-translate-x:-33.33333%}.-translate-x-2\/3{--transform-translate-x:-66.66667%}.-translate-x-1\/4{--transform-translate-x:-25%}.-translate-x-2\/4{--transform-translate-x:-50%}.-translate-x-3\/4{--transform-translate-x:-75%}.-translate-x-1\/5{--transform-translate-x:-20%}.-translate-x-2\/5{--transform-translate-x:-40%}.-translate-x-3\/5{--transform-translate-x:-60%}.-translate-x-4\/5{--transform-translate-x:-80%}.-translate-x-1\/6{--transform-translate-x:-16.66667%}.-translate-x-2\/6{--transform-translate-x:-33.33333%}.-translate-x-3\/6{--transform-translate-x:-50%}.-translate-x-4\/6{--transform-translate-x:-66.66667%}.-translate-x-5\/6{--transform-translate-x:-83.33333%}.-translate-x-1\/12{--transform-translate-x:-8.33333%}.-translate-x-2\/12{--transform-translate-x:-16.66667%}.-translate-x-3\/12{--transform-translate-x:-25%}.-translate-x-4\/12{--transform-translate-x:-33.33333%}.-translate-x-5\/12{--transform-translate-x:-41.66667%}.-translate-x-6\/12{--transform-translate-x:-50%}.-translate-x-7\/12{--transform-translate-x:-58.33333%}.-translate-x-8\/12{--transform-translate-x:-66.66667%}.-translate-x-9\/12{--transform-translate-x:-75%}.-translate-x-10\/12{--transform-translate-x:-83.33333%}.-translate-x-11\/12{--transform-translate-x:-91.66667%}.-translate-x-full{--transform-translate-x:-100%}.translate-y-0{--transform-translate-y:0}.translate-y-1{--transform-translate-y:0.25rem}.translate-y-2{--transform-translate-y:0.5rem}.translate-y-3{--transform-translate-y:0.75rem}.translate-y-4{--transform-translate-y:1rem}.translate-y-5{--transform-translate-y:1.25rem}.translate-y-6{--transform-translate-y:1.5rem}.translate-y-7{--transform-translate-y:1.75rem}.translate-y-8{--transform-translate-y:2rem}.translate-y-9{--transform-translate-y:2.25rem}.translate-y-10{--transform-translate-y:2.5rem}.translate-y-11{--transform-translate-y:2.75rem}.translate-y-12{--transform-translate-y:3rem}.translate-y-13{--transform-translate-y:3.25rem}.translate-y-14{--transform-translate-y:3.5rem}.translate-y-15{--transform-translate-y:3.75rem}.translate-y-16{--transform-translate-y:4rem}.translate-y-20{--transform-translate-y:5rem}.translate-y-24{--transform-translate-y:6rem}.translate-y-28{--transform-translate-y:7rem}.translate-y-32{--transform-translate-y:8rem}.translate-y-36{--transform-translate-y:9rem}.translate-y-40{--transform-translate-y:10rem}.translate-y-44{--transform-translate-y:11rem}.translate-y-48{--transform-translate-y:12rem}.translate-y-52{--transform-translate-y:13rem}.translate-y-56{--transform-translate-y:14rem}.translate-y-60{--transform-translate-y:15rem}.translate-y-64{--transform-translate-y:16rem}.translate-y-72{--transform-translate-y:18rem}.translate-y-80{--transform-translate-y:20rem}.translate-y-96{--transform-translate-y:24rem}.translate-y-px{--transform-translate-y:1px}.translate-y-0\.5{--transform-translate-y:0.125rem}.translate-y-1\.5{--transform-translate-y:0.375rem}.translate-y-2\.5{--transform-translate-y:0.625rem}.translate-y-3\.5{--transform-translate-y:0.875rem}.translate-y-1\/2{--transform-translate-y:50%}.translate-y-1\/3{--transform-translate-y:33.333333%}.translate-y-2\/3{--transform-translate-y:66.666667%}.translate-y-1\/4{--transform-translate-y:25%}.translate-y-2\/4{--transform-translate-y:50%}.translate-y-3\/4{--transform-translate-y:75%}.translate-y-1\/5{--transform-translate-y:20%}.translate-y-2\/5{--transform-translate-y:40%}.translate-y-3\/5{--transform-translate-y:60%}.translate-y-4\/5{--transform-translate-y:80%}.translate-y-1\/6{--transform-translate-y:16.666667%}.translate-y-2\/6{--transform-translate-y:33.333333%}.translate-y-3\/6{--transform-translate-y:50%}.translate-y-4\/6{--transform-translate-y:66.666667%}.translate-y-5\/6{--transform-translate-y:83.333333%}.translate-y-1\/12{--transform-translate-y:8.333333%}.translate-y-2\/12{--transform-translate-y:16.666667%}.translate-y-3\/12{--transform-translate-y:25%}.translate-y-4\/12{--transform-translate-y:33.333333%}.translate-y-5\/12{--transform-translate-y:41.666667%}.translate-y-6\/12{--transform-translate-y:50%}.translate-y-7\/12{--transform-translate-y:58.333333%}.translate-y-8\/12{--transform-translate-y:66.666667%}.translate-y-9\/12{--transform-translate-y:75%}.translate-y-10\/12{--transform-translate-y:83.333333%}.translate-y-11\/12{--transform-translate-y:91.666667%}.translate-y-full{--transform-translate-y:100%}.-translate-y-1{--transform-translate-y:-0.25rem}.-translate-y-2{--transform-translate-y:-0.5rem}.-translate-y-3{--transform-translate-y:-0.75rem}.-translate-y-4{--transform-translate-y:-1rem}.-translate-y-5{--transform-translate-y:-1.25rem}.-translate-y-6{--transform-translate-y:-1.5rem}.-translate-y-7{--transform-translate-y:-1.75rem}.-translate-y-8{--transform-translate-y:-2rem}.-translate-y-9{--transform-translate-y:-2.25rem}.-translate-y-10{--transform-translate-y:-2.5rem}.-translate-y-11{--transform-translate-y:-2.75rem}.-translate-y-12{--transform-translate-y:-3rem}.-translate-y-13{--transform-translate-y:-3.25rem}.-translate-y-14{--transform-translate-y:-3.5rem}.-translate-y-15{--transform-translate-y:-3.75rem}.-translate-y-16{--transform-translate-y:-4rem}.-translate-y-20{--transform-translate-y:-5rem}.-translate-y-24{--transform-translate-y:-6rem}.-translate-y-28{--transform-translate-y:-7rem}.-translate-y-32{--transform-translate-y:-8rem}.-translate-y-36{--transform-translate-y:-9rem}.-translate-y-40{--transform-translate-y:-10rem}.-translate-y-44{--transform-translate-y:-11rem}.-translate-y-48{--transform-translate-y:-12rem}.-translate-y-52{--transform-translate-y:-13rem}.-translate-y-56{--transform-translate-y:-14rem}.-translate-y-60{--transform-translate-y:-15rem}.-translate-y-64{--transform-translate-y:-16rem}.-translate-y-72{--transform-translate-y:-18rem}.-translate-y-80{--transform-translate-y:-20rem}.-translate-y-96{--transform-translate-y:-24rem}.-translate-y-px{--transform-translate-y:-1px}.-translate-y-0\.5{--transform-translate-y:-0.125rem}.-translate-y-1\.5{--transform-translate-y:-0.375rem}.-translate-y-2\.5{--transform-translate-y:-0.625rem}.-translate-y-3\.5{--transform-translate-y:-0.875rem}.-translate-y-1\/2{--transform-translate-y:-50%}.-translate-y-1\/3{--transform-translate-y:-33.33333%}.-translate-y-2\/3{--transform-translate-y:-66.66667%}.-translate-y-1\/4{--transform-translate-y:-25%}.-translate-y-2\/4{--transform-translate-y:-50%}.-translate-y-3\/4{--transform-translate-y:-75%}.-translate-y-1\/5{--transform-translate-y:-20%}.-translate-y-2\/5{--transform-translate-y:-40%}.-translate-y-3\/5{--transform-translate-y:-60%}.-translate-y-4\/5{--transform-translate-y:-80%}.-translate-y-1\/6{--transform-translate-y:-16.66667%}.-translate-y-2\/6{--transform-translate-y:-33.33333%}.-translate-y-3\/6{--transform-translate-y:-50%}.-translate-y-4\/6{--transform-translate-y:-66.66667%}.-translate-y-5\/6{--transform-translate-y:-83.33333%}.-translate-y-1\/12{--transform-translate-y:-8.33333%}.-translate-y-2\/12{--transform-translate-y:-16.66667%}.-translate-y-3\/12{--transform-translate-y:-25%}.-translate-y-4\/12{--transform-translate-y:-33.33333%}.-translate-y-5\/12{--transform-translate-y:-41.66667%}.-translate-y-6\/12{--transform-translate-y:-50%}.-translate-y-7\/12{--transform-translate-y:-58.33333%}.-translate-y-8\/12{--transform-translate-y:-66.66667%}.-translate-y-9\/12{--transform-translate-y:-75%}.-translate-y-10\/12{--transform-translate-y:-83.33333%}.-translate-y-11\/12{--transform-translate-y:-91.66667%}.-translate-y-full{--transform-translate-y:-100%}.hover\:translate-x-0:hover{--transform-translate-x:0}.hover\:translate-x-1:hover{--transform-translate-x:0.25rem}.hover\:translate-x-2:hover{--transform-translate-x:0.5rem}.hover\:translate-x-3:hover{--transform-translate-x:0.75rem}.hover\:translate-x-4:hover{--transform-translate-x:1rem}.hover\:translate-x-5:hover{--transform-translate-x:1.25rem}.hover\:translate-x-6:hover{--transform-translate-x:1.5rem}.hover\:translate-x-7:hover{--transform-translate-x:1.75rem}.hover\:translate-x-8:hover{--transform-translate-x:2rem}.hover\:translate-x-9:hover{--transform-translate-x:2.25rem}.hover\:translate-x-10:hover{--transform-translate-x:2.5rem}.hover\:translate-x-11:hover{--transform-translate-x:2.75rem}.hover\:translate-x-12:hover{--transform-translate-x:3rem}.hover\:translate-x-13:hover{--transform-translate-x:3.25rem}.hover\:translate-x-14:hover{--transform-translate-x:3.5rem}.hover\:translate-x-15:hover{--transform-translate-x:3.75rem}.hover\:translate-x-16:hover{--transform-translate-x:4rem}.hover\:translate-x-20:hover{--transform-translate-x:5rem}.hover\:translate-x-24:hover{--transform-translate-x:6rem}.hover\:translate-x-28:hover{--transform-translate-x:7rem}.hover\:translate-x-32:hover{--transform-translate-x:8rem}.hover\:translate-x-36:hover{--transform-translate-x:9rem}.hover\:translate-x-40:hover{--transform-translate-x:10rem}.hover\:translate-x-44:hover{--transform-translate-x:11rem}.hover\:translate-x-48:hover{--transform-translate-x:12rem}.hover\:translate-x-52:hover{--transform-translate-x:13rem}.hover\:translate-x-56:hover{--transform-translate-x:14rem}.hover\:translate-x-60:hover{--transform-translate-x:15rem}.hover\:translate-x-64:hover{--transform-translate-x:16rem}.hover\:translate-x-72:hover{--transform-translate-x:18rem}.hover\:translate-x-80:hover{--transform-translate-x:20rem}.hover\:translate-x-96:hover{--transform-translate-x:24rem}.hover\:translate-x-px:hover{--transform-translate-x:1px}.hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem}.hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem}.hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem}.hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem}.hover\:translate-x-1\/2:hover{--transform-translate-x:50%}.hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%}.hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%}.hover\:translate-x-1\/4:hover{--transform-translate-x:25%}.hover\:translate-x-2\/4:hover{--transform-translate-x:50%}.hover\:translate-x-3\/4:hover{--transform-translate-x:75%}.hover\:translate-x-1\/5:hover{--transform-translate-x:20%}.hover\:translate-x-2\/5:hover{--transform-translate-x:40%}.hover\:translate-x-3\/5:hover{--transform-translate-x:60%}.hover\:translate-x-4\/5:hover{--transform-translate-x:80%}.hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%}.hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%}.hover\:translate-x-3\/6:hover{--transform-translate-x:50%}.hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%}.hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%}.hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%}.hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%}.hover\:translate-x-3\/12:hover{--transform-translate-x:25%}.hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%}.hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%}.hover\:translate-x-6\/12:hover{--transform-translate-x:50%}.hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%}.hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%}.hover\:translate-x-9\/12:hover{--transform-translate-x:75%}.hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%}.hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%}.hover\:translate-x-full:hover{--transform-translate-x:100%}.hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem}.hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem}.hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem}.hover\:-translate-x-4:hover{--transform-translate-x:-1rem}.hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem}.hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem}.hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem}.hover\:-translate-x-8:hover{--transform-translate-x:-2rem}.hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem}.hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem}.hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem}.hover\:-translate-x-12:hover{--transform-translate-x:-3rem}.hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem}.hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem}.hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem}.hover\:-translate-x-16:hover{--transform-translate-x:-4rem}.hover\:-translate-x-20:hover{--transform-translate-x:-5rem}.hover\:-translate-x-24:hover{--transform-translate-x:-6rem}.hover\:-translate-x-28:hover{--transform-translate-x:-7rem}.hover\:-translate-x-32:hover{--transform-translate-x:-8rem}.hover\:-translate-x-36:hover{--transform-translate-x:-9rem}.hover\:-translate-x-40:hover{--transform-translate-x:-10rem}.hover\:-translate-x-44:hover{--transform-translate-x:-11rem}.hover\:-translate-x-48:hover{--transform-translate-x:-12rem}.hover\:-translate-x-52:hover{--transform-translate-x:-13rem}.hover\:-translate-x-56:hover{--transform-translate-x:-14rem}.hover\:-translate-x-60:hover{--transform-translate-x:-15rem}.hover\:-translate-x-64:hover{--transform-translate-x:-16rem}.hover\:-translate-x-72:hover{--transform-translate-x:-18rem}.hover\:-translate-x-80:hover{--transform-translate-x:-20rem}.hover\:-translate-x-96:hover{--transform-translate-x:-24rem}.hover\:-translate-x-px:hover{--transform-translate-x:-1px}.hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem}.hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem}.hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem}.hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem}.hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%}.hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%}.hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%}.hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%}.hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%}.hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%}.hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%}.hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%}.hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%}.hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%}.hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%}.hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%}.hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%}.hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%}.hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%}.hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%}.hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%}.hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%}.hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%}.hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%}.hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%}.hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%}.hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%}.hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%}.hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%}.hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%}.hover\:-translate-x-full:hover{--transform-translate-x:-100%}.hover\:translate-y-0:hover{--transform-translate-y:0}.hover\:translate-y-1:hover{--transform-translate-y:0.25rem}.hover\:translate-y-2:hover{--transform-translate-y:0.5rem}.hover\:translate-y-3:hover{--transform-translate-y:0.75rem}.hover\:translate-y-4:hover{--transform-translate-y:1rem}.hover\:translate-y-5:hover{--transform-translate-y:1.25rem}.hover\:translate-y-6:hover{--transform-translate-y:1.5rem}.hover\:translate-y-7:hover{--transform-translate-y:1.75rem}.hover\:translate-y-8:hover{--transform-translate-y:2rem}.hover\:translate-y-9:hover{--transform-translate-y:2.25rem}.hover\:translate-y-10:hover{--transform-translate-y:2.5rem}.hover\:translate-y-11:hover{--transform-translate-y:2.75rem}.hover\:translate-y-12:hover{--transform-translate-y:3rem}.hover\:translate-y-13:hover{--transform-translate-y:3.25rem}.hover\:translate-y-14:hover{--transform-translate-y:3.5rem}.hover\:translate-y-15:hover{--transform-translate-y:3.75rem}.hover\:translate-y-16:hover{--transform-translate-y:4rem}.hover\:translate-y-20:hover{--transform-translate-y:5rem}.hover\:translate-y-24:hover{--transform-translate-y:6rem}.hover\:translate-y-28:hover{--transform-translate-y:7rem}.hover\:translate-y-32:hover{--transform-translate-y:8rem}.hover\:translate-y-36:hover{--transform-translate-y:9rem}.hover\:translate-y-40:hover{--transform-translate-y:10rem}.hover\:translate-y-44:hover{--transform-translate-y:11rem}.hover\:translate-y-48:hover{--transform-translate-y:12rem}.hover\:translate-y-52:hover{--transform-translate-y:13rem}.hover\:translate-y-56:hover{--transform-translate-y:14rem}.hover\:translate-y-60:hover{--transform-translate-y:15rem}.hover\:translate-y-64:hover{--transform-translate-y:16rem}.hover\:translate-y-72:hover{--transform-translate-y:18rem}.hover\:translate-y-80:hover{--transform-translate-y:20rem}.hover\:translate-y-96:hover{--transform-translate-y:24rem}.hover\:translate-y-px:hover{--transform-translate-y:1px}.hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem}.hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem}.hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem}.hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem}.hover\:translate-y-1\/2:hover{--transform-translate-y:50%}.hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%}.hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%}.hover\:translate-y-1\/4:hover{--transform-translate-y:25%}.hover\:translate-y-2\/4:hover{--transform-translate-y:50%}.hover\:translate-y-3\/4:hover{--transform-translate-y:75%}.hover\:translate-y-1\/5:hover{--transform-translate-y:20%}.hover\:translate-y-2\/5:hover{--transform-translate-y:40%}.hover\:translate-y-3\/5:hover{--transform-translate-y:60%}.hover\:translate-y-4\/5:hover{--transform-translate-y:80%}.hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%}.hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%}.hover\:translate-y-3\/6:hover{--transform-translate-y:50%}.hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%}.hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%}.hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%}.hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%}.hover\:translate-y-3\/12:hover{--transform-translate-y:25%}.hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%}.hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%}.hover\:translate-y-6\/12:hover{--transform-translate-y:50%}.hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%}.hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%}.hover\:translate-y-9\/12:hover{--transform-translate-y:75%}.hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%}.hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%}.hover\:translate-y-full:hover{--transform-translate-y:100%}.hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem}.hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem}.hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem}.hover\:-translate-y-4:hover{--transform-translate-y:-1rem}.hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem}.hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem}.hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem}.hover\:-translate-y-8:hover{--transform-translate-y:-2rem}.hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem}.hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem}.hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem}.hover\:-translate-y-12:hover{--transform-translate-y:-3rem}.hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem}.hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem}.hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem}.hover\:-translate-y-16:hover{--transform-translate-y:-4rem}.hover\:-translate-y-20:hover{--transform-translate-y:-5rem}.hover\:-translate-y-24:hover{--transform-translate-y:-6rem}.hover\:-translate-y-28:hover{--transform-translate-y:-7rem}.hover\:-translate-y-32:hover{--transform-translate-y:-8rem}.hover\:-translate-y-36:hover{--transform-translate-y:-9rem}.hover\:-translate-y-40:hover{--transform-translate-y:-10rem}.hover\:-translate-y-44:hover{--transform-translate-y:-11rem}.hover\:-translate-y-48:hover{--transform-translate-y:-12rem}.hover\:-translate-y-52:hover{--transform-translate-y:-13rem}.hover\:-translate-y-56:hover{--transform-translate-y:-14rem}.hover\:-translate-y-60:hover{--transform-translate-y:-15rem}.hover\:-translate-y-64:hover{--transform-translate-y:-16rem}.hover\:-translate-y-72:hover{--transform-translate-y:-18rem}.hover\:-translate-y-80:hover{--transform-translate-y:-20rem}.hover\:-translate-y-96:hover{--transform-translate-y:-24rem}.hover\:-translate-y-px:hover{--transform-translate-y:-1px}.hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem}.hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem}.hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem}.hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem}.hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%}.hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%}.hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%}.hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%}.hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%}.hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%}.hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%}.hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%}.hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%}.hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%}.hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%}.hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%}.hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%}.hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%}.hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%}.hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%}.hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%}.hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%}.hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%}.hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%}.hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%}.hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%}.hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%}.hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%}.hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%}.hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%}.hover\:-translate-y-full:hover{--transform-translate-y:-100%}.focus\:translate-x-0:focus{--transform-translate-x:0}.focus\:translate-x-1:focus{--transform-translate-x:0.25rem}.focus\:translate-x-2:focus{--transform-translate-x:0.5rem}.focus\:translate-x-3:focus{--transform-translate-x:0.75rem}.focus\:translate-x-4:focus{--transform-translate-x:1rem}.focus\:translate-x-5:focus{--transform-translate-x:1.25rem}.focus\:translate-x-6:focus{--transform-translate-x:1.5rem}.focus\:translate-x-7:focus{--transform-translate-x:1.75rem}.focus\:translate-x-8:focus{--transform-translate-x:2rem}.focus\:translate-x-9:focus{--transform-translate-x:2.25rem}.focus\:translate-x-10:focus{--transform-translate-x:2.5rem}.focus\:translate-x-11:focus{--transform-translate-x:2.75rem}.focus\:translate-x-12:focus{--transform-translate-x:3rem}.focus\:translate-x-13:focus{--transform-translate-x:3.25rem}.focus\:translate-x-14:focus{--transform-translate-x:3.5rem}.focus\:translate-x-15:focus{--transform-translate-x:3.75rem}.focus\:translate-x-16:focus{--transform-translate-x:4rem}.focus\:translate-x-20:focus{--transform-translate-x:5rem}.focus\:translate-x-24:focus{--transform-translate-x:6rem}.focus\:translate-x-28:focus{--transform-translate-x:7rem}.focus\:translate-x-32:focus{--transform-translate-x:8rem}.focus\:translate-x-36:focus{--transform-translate-x:9rem}.focus\:translate-x-40:focus{--transform-translate-x:10rem}.focus\:translate-x-44:focus{--transform-translate-x:11rem}.focus\:translate-x-48:focus{--transform-translate-x:12rem}.focus\:translate-x-52:focus{--transform-translate-x:13rem}.focus\:translate-x-56:focus{--transform-translate-x:14rem}.focus\:translate-x-60:focus{--transform-translate-x:15rem}.focus\:translate-x-64:focus{--transform-translate-x:16rem}.focus\:translate-x-72:focus{--transform-translate-x:18rem}.focus\:translate-x-80:focus{--transform-translate-x:20rem}.focus\:translate-x-96:focus{--transform-translate-x:24rem}.focus\:translate-x-px:focus{--transform-translate-x:1px}.focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem}.focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem}.focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem}.focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem}.focus\:translate-x-1\/2:focus{--transform-translate-x:50%}.focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%}.focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%}.focus\:translate-x-1\/4:focus{--transform-translate-x:25%}.focus\:translate-x-2\/4:focus{--transform-translate-x:50%}.focus\:translate-x-3\/4:focus{--transform-translate-x:75%}.focus\:translate-x-1\/5:focus{--transform-translate-x:20%}.focus\:translate-x-2\/5:focus{--transform-translate-x:40%}.focus\:translate-x-3\/5:focus{--transform-translate-x:60%}.focus\:translate-x-4\/5:focus{--transform-translate-x:80%}.focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%}.focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%}.focus\:translate-x-3\/6:focus{--transform-translate-x:50%}.focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%}.focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%}.focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%}.focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%}.focus\:translate-x-3\/12:focus{--transform-translate-x:25%}.focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%}.focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%}.focus\:translate-x-6\/12:focus{--transform-translate-x:50%}.focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%}.focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%}.focus\:translate-x-9\/12:focus{--transform-translate-x:75%}.focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%}.focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%}.focus\:translate-x-full:focus{--transform-translate-x:100%}.focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem}.focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem}.focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem}.focus\:-translate-x-4:focus{--transform-translate-x:-1rem}.focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem}.focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem}.focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem}.focus\:-translate-x-8:focus{--transform-translate-x:-2rem}.focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem}.focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem}.focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem}.focus\:-translate-x-12:focus{--transform-translate-x:-3rem}.focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem}.focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem}.focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem}.focus\:-translate-x-16:focus{--transform-translate-x:-4rem}.focus\:-translate-x-20:focus{--transform-translate-x:-5rem}.focus\:-translate-x-24:focus{--transform-translate-x:-6rem}.focus\:-translate-x-28:focus{--transform-translate-x:-7rem}.focus\:-translate-x-32:focus{--transform-translate-x:-8rem}.focus\:-translate-x-36:focus{--transform-translate-x:-9rem}.focus\:-translate-x-40:focus{--transform-translate-x:-10rem}.focus\:-translate-x-44:focus{--transform-translate-x:-11rem}.focus\:-translate-x-48:focus{--transform-translate-x:-12rem}.focus\:-translate-x-52:focus{--transform-translate-x:-13rem}.focus\:-translate-x-56:focus{--transform-translate-x:-14rem}.focus\:-translate-x-60:focus{--transform-translate-x:-15rem}.focus\:-translate-x-64:focus{--transform-translate-x:-16rem}.focus\:-translate-x-72:focus{--transform-translate-x:-18rem}.focus\:-translate-x-80:focus{--transform-translate-x:-20rem}.focus\:-translate-x-96:focus{--transform-translate-x:-24rem}.focus\:-translate-x-px:focus{--transform-translate-x:-1px}.focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem}.focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem}.focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem}.focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem}.focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%}.focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%}.focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%}.focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%}.focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%}.focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%}.focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%}.focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%}.focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%}.focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%}.focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%}.focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%}.focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%}.focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%}.focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%}.focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%}.focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%}.focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%}.focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%}.focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%}.focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%}.focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%}.focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%}.focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%}.focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%}.focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%}.focus\:-translate-x-full:focus{--transform-translate-x:-100%}.focus\:translate-y-0:focus{--transform-translate-y:0}.focus\:translate-y-1:focus{--transform-translate-y:0.25rem}.focus\:translate-y-2:focus{--transform-translate-y:0.5rem}.focus\:translate-y-3:focus{--transform-translate-y:0.75rem}.focus\:translate-y-4:focus{--transform-translate-y:1rem}.focus\:translate-y-5:focus{--transform-translate-y:1.25rem}.focus\:translate-y-6:focus{--transform-translate-y:1.5rem}.focus\:translate-y-7:focus{--transform-translate-y:1.75rem}.focus\:translate-y-8:focus{--transform-translate-y:2rem}.focus\:translate-y-9:focus{--transform-translate-y:2.25rem}.focus\:translate-y-10:focus{--transform-translate-y:2.5rem}.focus\:translate-y-11:focus{--transform-translate-y:2.75rem}.focus\:translate-y-12:focus{--transform-translate-y:3rem}.focus\:translate-y-13:focus{--transform-translate-y:3.25rem}.focus\:translate-y-14:focus{--transform-translate-y:3.5rem}.focus\:translate-y-15:focus{--transform-translate-y:3.75rem}.focus\:translate-y-16:focus{--transform-translate-y:4rem}.focus\:translate-y-20:focus{--transform-translate-y:5rem}.focus\:translate-y-24:focus{--transform-translate-y:6rem}.focus\:translate-y-28:focus{--transform-translate-y:7rem}.focus\:translate-y-32:focus{--transform-translate-y:8rem}.focus\:translate-y-36:focus{--transform-translate-y:9rem}.focus\:translate-y-40:focus{--transform-translate-y:10rem}.focus\:translate-y-44:focus{--transform-translate-y:11rem}.focus\:translate-y-48:focus{--transform-translate-y:12rem}.focus\:translate-y-52:focus{--transform-translate-y:13rem}.focus\:translate-y-56:focus{--transform-translate-y:14rem}.focus\:translate-y-60:focus{--transform-translate-y:15rem}.focus\:translate-y-64:focus{--transform-translate-y:16rem}.focus\:translate-y-72:focus{--transform-translate-y:18rem}.focus\:translate-y-80:focus{--transform-translate-y:20rem}.focus\:translate-y-96:focus{--transform-translate-y:24rem}.focus\:translate-y-px:focus{--transform-translate-y:1px}.focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem}.focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem}.focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem}.focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem}.focus\:translate-y-1\/2:focus{--transform-translate-y:50%}.focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%}.focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%}.focus\:translate-y-1\/4:focus{--transform-translate-y:25%}.focus\:translate-y-2\/4:focus{--transform-translate-y:50%}.focus\:translate-y-3\/4:focus{--transform-translate-y:75%}.focus\:translate-y-1\/5:focus{--transform-translate-y:20%}.focus\:translate-y-2\/5:focus{--transform-translate-y:40%}.focus\:translate-y-3\/5:focus{--transform-translate-y:60%}.focus\:translate-y-4\/5:focus{--transform-translate-y:80%}.focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%}.focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%}.focus\:translate-y-3\/6:focus{--transform-translate-y:50%}.focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%}.focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%}.focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%}.focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%}.focus\:translate-y-3\/12:focus{--transform-translate-y:25%}.focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%}.focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%}.focus\:translate-y-6\/12:focus{--transform-translate-y:50%}.focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%}.focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%}.focus\:translate-y-9\/12:focus{--transform-translate-y:75%}.focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%}.focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%}.focus\:translate-y-full:focus{--transform-translate-y:100%}.focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem}.focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem}.focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem}.focus\:-translate-y-4:focus{--transform-translate-y:-1rem}.focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem}.focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem}.focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem}.focus\:-translate-y-8:focus{--transform-translate-y:-2rem}.focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem}.focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem}.focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem}.focus\:-translate-y-12:focus{--transform-translate-y:-3rem}.focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem}.focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem}.focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem}.focus\:-translate-y-16:focus{--transform-translate-y:-4rem}.focus\:-translate-y-20:focus{--transform-translate-y:-5rem}.focus\:-translate-y-24:focus{--transform-translate-y:-6rem}.focus\:-translate-y-28:focus{--transform-translate-y:-7rem}.focus\:-translate-y-32:focus{--transform-translate-y:-8rem}.focus\:-translate-y-36:focus{--transform-translate-y:-9rem}.focus\:-translate-y-40:focus{--transform-translate-y:-10rem}.focus\:-translate-y-44:focus{--transform-translate-y:-11rem}.focus\:-translate-y-48:focus{--transform-translate-y:-12rem}.focus\:-translate-y-52:focus{--transform-translate-y:-13rem}.focus\:-translate-y-56:focus{--transform-translate-y:-14rem}.focus\:-translate-y-60:focus{--transform-translate-y:-15rem}.focus\:-translate-y-64:focus{--transform-translate-y:-16rem}.focus\:-translate-y-72:focus{--transform-translate-y:-18rem}.focus\:-translate-y-80:focus{--transform-translate-y:-20rem}.focus\:-translate-y-96:focus{--transform-translate-y:-24rem}.focus\:-translate-y-px:focus{--transform-translate-y:-1px}.focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem}.focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem}.focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem}.focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem}.focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%}.focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%}.focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%}.focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%}.focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%}.focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%}.focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%}.focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%}.focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%}.focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%}.focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%}.focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%}.focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%}.focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%}.focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%}.focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%}.focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%}.focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%}.focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%}.focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%}.focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%}.focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%}.focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%}.focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%}.focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%}.focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%}.focus\:-translate-y-full:focus{--transform-translate-y:-100%}.skew-x-0{--transform-skew-x:0}.skew-x-3{--transform-skew-x:3deg}.skew-x-6{--transform-skew-x:6deg}.skew-x-12{--transform-skew-x:12deg}.-skew-x-12{--transform-skew-x:-12deg}.-skew-x-6{--transform-skew-x:-6deg}.-skew-x-3{--transform-skew-x:-3deg}.skew-y-0{--transform-skew-y:0}.skew-y-3{--transform-skew-y:3deg}.skew-y-6{--transform-skew-y:6deg}.skew-y-12{--transform-skew-y:12deg}.-skew-y-12{--transform-skew-y:-12deg}.-skew-y-6{--transform-skew-y:-6deg}.-skew-y-3{--transform-skew-y:-3deg}.hover\:skew-x-0:hover{--transform-skew-x:0}.hover\:skew-x-3:hover{--transform-skew-x:3deg}.hover\:skew-x-6:hover{--transform-skew-x:6deg}.hover\:skew-x-12:hover{--transform-skew-x:12deg}.hover\:-skew-x-12:hover{--transform-skew-x:-12deg}.hover\:-skew-x-6:hover{--transform-skew-x:-6deg}.hover\:-skew-x-3:hover{--transform-skew-x:-3deg}.hover\:skew-y-0:hover{--transform-skew-y:0}.hover\:skew-y-3:hover{--transform-skew-y:3deg}.hover\:skew-y-6:hover{--transform-skew-y:6deg}.hover\:skew-y-12:hover{--transform-skew-y:12deg}.hover\:-skew-y-12:hover{--transform-skew-y:-12deg}.hover\:-skew-y-6:hover{--transform-skew-y:-6deg}.hover\:-skew-y-3:hover{--transform-skew-y:-3deg}.focus\:skew-x-0:focus{--transform-skew-x:0}.focus\:skew-x-3:focus{--transform-skew-x:3deg}.focus\:skew-x-6:focus{--transform-skew-x:6deg}.focus\:skew-x-12:focus{--transform-skew-x:12deg}.focus\:-skew-x-12:focus{--transform-skew-x:-12deg}.focus\:-skew-x-6:focus{--transform-skew-x:-6deg}.focus\:-skew-x-3:focus{--transform-skew-x:-3deg}.focus\:skew-y-0:focus{--transform-skew-y:0}.focus\:skew-y-3:focus{--transform-skew-y:3deg}.focus\:skew-y-6:focus{--transform-skew-y:6deg}.focus\:skew-y-12:focus{--transform-skew-y:12deg}.focus\:-skew-y-12:focus{--transform-skew-y:-12deg}.focus\:-skew-y-6:focus{--transform-skew-y:-6deg}.focus\:-skew-y-3:focus{--transform-skew-y:-3deg}.transition-none{transition-property:none}.transition-all{transition-property:all}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.transition-colors{transition-property:background-color,border-color,color,fill,stroke}.transition-opacity{transition-property:opacity}.transition-shadow{transition-property:box-shadow}.transition-transform{transition-property:transform}.ease-linear{transition-timing-function:linear}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-75{transition-duration:75ms}.duration-100{transition-duration:.1s}.duration-150{transition-duration:150ms}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.duration-700{transition-duration:.7s}.duration-1000{transition-duration:1s}.delay-75{transition-delay:75ms}.delay-100{transition-delay:.1s}.delay-150{transition-delay:150ms}.delay-200{transition-delay:.2s}.delay-300{transition-delay:.3s}.delay-500{transition-delay:.5s}.delay-700{transition-delay:.7s}.delay-1000{transition-delay:1s}@media (min-width:640px){.sm\:container{width:100%}@media (min-width:640px){.sm\:container{max-width:640px}}@media (min-width:768px){.sm\:container{max-width:768px}}@media (min-width:1024px){.sm\:container{max-width:1024px}}@media (min-width:1280px){.sm\:container{max-width:1280px}}.sm\:prose{color:#374151;max-width:65ch}.sm\:prose [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.sm\:prose a{color:#5850ec;text-decoration:none;font-weight:600}.sm\:prose strong{color:#161e2e;font-weight:600}.sm\:prose ol{counter-reset:list-counter;margin-top:1.25em;margin-bottom:1.25em}.sm\:prose ol>li{position:relative;counter-increment:list-counter;padding-left:1.75em}.sm\:prose ol>li::before{content:counter(list-counter) ".";position:absolute;font-weight:400;color:#6b7280}.sm\:prose ul>li{position:relative;padding-left:1.75em}.sm\:prose ul>li::before{content:"";position:absolute;background-color:#d2d6dc;border-radius:50%;width:.375em;height:.375em;top:calc(.875em - .1875em);left:.25em}.sm\:prose hr{border-color:#e5e7eb;border-top-width:1px;margin-top:3em;margin-bottom:3em}.sm\:prose blockquote{font-weight:500;font-style:italic;color:#161e2e;border-left-width:.25rem;border-left-color:#e5e7eb;quotes:"\201C""\201D""\2018""\2019";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.sm\:prose blockquote p:first-of-type::before{content:open-quote}.sm\:prose blockquote p:last-of-type::after{content:close-quote}.sm\:prose h1{color:#1a202c;font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.sm\:prose h2{color:#1a202c;font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.sm\:prose h3{color:#1a202c;font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.sm\:prose h4{color:#1a202c;font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.sm\:prose figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.sm\:prose code{color:#161e2e;font-weight:600;font-size:.875em}.sm\:prose code::before{content:"`"}.sm\:prose code::after{content:"`"}.sm\:prose pre{color:#e5e7eb;background-color:#252f3f;overflow-x:auto;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-right:1.1428571em;padding-bottom:.8571429em;padding-left:1.1428571em}.sm\:prose pre code{background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:400;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.sm\:prose pre code::before{content:""}.sm\:prose pre code::after{content:""}.sm\:prose table{width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.sm\:prose thead{color:#161e2e;font-weight:600;border-bottom-width:1px;border-bottom-color:#d2d6dc}.sm\:prose thead th{vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.sm\:prose tbody tr{border-bottom-width:1px;border-bottom-color:#e5e7eb}.sm\:prose tbody tr:last-child{border-bottom-width:0}.sm\:prose tbody td{vertical-align:top;padding-top:.5714286em;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.sm\:prose{font-size:1rem;line-height:1.75}.sm\:prose p{margin-top:1.25em;margin-bottom:1.25em}.sm\:prose img{margin-top:2em;margin-bottom:2em}.sm\:prose video{margin-top:2em;margin-bottom:2em}.sm\:prose figure{margin-top:2em;margin-bottom:2em}.sm\:prose figure>*{margin-top:0;margin-bottom:0}.sm\:prose h2 code{font-size:.875em}.sm\:prose h3 code{font-size:.9em}.sm\:prose ul{margin-top:1.25em;margin-bottom:1.25em}.sm\:prose li{margin-top:.5em;margin-bottom:.5em}.sm\:prose ol>li:before{left:0}.sm\:prose>ul>li p{margin-top:.75em;margin-bottom:.75em}.sm\:prose>ul>li>:first-child{margin-top:1.25em}.sm\:prose>ul>li>:last-child{margin-bottom:1.25em}.sm\:prose>ol>li>:first-child{margin-top:1.25em}.sm\:prose>ol>li>:last-child{margin-bottom:1.25em}.sm\:prose ol ol,.sm\:prose ol ul,.sm\:prose ul ol,.sm\:prose ul ul{margin-top:.75em;margin-bottom:.75em}.sm\:prose hr+*{margin-top:0}.sm\:prose h2+*{margin-top:0}.sm\:prose h3+*{margin-top:0}.sm\:prose h4+*{margin-top:0}.sm\:prose thead th:first-child{padding-left:0}.sm\:prose thead th:last-child{padding-right:0}.sm\:prose tbody td:first-child{padding-left:0}.sm\:prose tbody td:last-child{padding-right:0}.sm\:prose>:first-child{margin-top:0}.sm\:prose>:last-child{margin-bottom:0}.sm\:prose h1,.sm\:prose h2,.sm\:prose h3,.sm\:prose h4{color:#161e2e}.sm\:prose-sm{font-size:.875rem;line-height:1.7142857}.sm\:prose-sm p{margin-top:1.1428571em;margin-bottom:1.1428571em}.sm\:prose-sm [class~=lead]{font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.sm\:prose-sm blockquote{margin-top:1.3333333em;margin-bottom:1.3333333em;padding-left:1.1111111em}.sm\:prose-sm h1{font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.sm\:prose-sm h2{font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.sm\:prose-sm h3{font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.sm\:prose-sm h4{margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.sm\:prose-sm img{margin-top:1.7142857em;margin-bottom:1.7142857em}.sm\:prose-sm video{margin-top:1.7142857em;margin-bottom:1.7142857em}.sm\:prose-sm figure{margin-top:1.7142857em;margin-bottom:1.7142857em}.sm\:prose-sm figure>*{margin-top:0;margin-bottom:0}.sm\:prose-sm figure figcaption{font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.sm\:prose-sm code{font-size:.8571429em}.sm\:prose-sm h2 code{font-size:.9em}.sm\:prose-sm h3 code{font-size:.8888889em}.sm\:prose-sm pre{font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.sm\:prose-sm ol{margin-top:1.1428571em;margin-bottom:1.1428571em}.sm\:prose-sm ul{margin-top:1.1428571em;margin-bottom:1.1428571em}.sm\:prose-sm li{margin-top:.2857143em;margin-bottom:.2857143em}.sm\:prose-sm ol>li{padding-left:1.5714286em}.sm\:prose-sm ol>li:before{left:0}.sm\:prose-sm ul>li{padding-left:1.5714286em}.sm\:prose-sm ul>li::before{height:.3571429em;width:.3571429em;top:calc(.8571429em - .1785714em);left:.2142857em}.sm\:prose-sm>ul>li p{margin-top:.5714286em;margin-bottom:.5714286em}.sm\:prose-sm>ul>li>:first-child{margin-top:1.1428571em}.sm\:prose-sm>ul>li>:last-child{margin-bottom:1.1428571em}.sm\:prose-sm>ol>li>:first-child{margin-top:1.1428571em}.sm\:prose-sm>ol>li>:last-child{margin-bottom:1.1428571em}.sm\:prose-sm ol ol,.sm\:prose-sm ol ul,.sm\:prose-sm ul ol,.sm\:prose-sm ul ul{margin-top:.5714286em;margin-bottom:.5714286em}.sm\:prose-sm hr{margin-top:2.8571429em;margin-bottom:2.8571429em}.sm\:prose-sm hr+*{margin-top:0}.sm\:prose-sm h2+*{margin-top:0}.sm\:prose-sm h3+*{margin-top:0}.sm\:prose-sm h4+*{margin-top:0}.sm\:prose-sm table{font-size:.8571429em;line-height:1.5}.sm\:prose-sm thead th{padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.sm\:prose-sm thead th:first-child{padding-left:0}.sm\:prose-sm thead th:last-child{padding-right:0}.sm\:prose-sm tbody td{padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.sm\:prose-sm tbody td:first-child{padding-left:0}.sm\:prose-sm tbody td:last-child{padding-right:0}.sm\:prose-sm>:first-child{margin-top:0}.sm\:prose-sm>:last-child{margin-bottom:0}.sm\:prose-lg{font-size:1.125rem;line-height:1.7777778}.sm\:prose-lg p{margin-top:1.3333333em;margin-bottom:1.3333333em}.sm\:prose-lg [class~=lead]{font-size:1.2222222em;line-height:1.4545455;margin-top:1.0909091em;margin-bottom:1.0909091em}.sm\:prose-lg blockquote{margin-top:1.6666667em;margin-bottom:1.6666667em;padding-left:1em}.sm\:prose-lg h1{font-size:2.6666667em;margin-top:0;margin-bottom:.8333333em;line-height:1}.sm\:prose-lg h2{font-size:1.6666667em;margin-top:1.8666667em;margin-bottom:1.0666667em;line-height:1.3333333}.sm\:prose-lg h3{font-size:1.3333333em;margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.sm\:prose-lg h4{margin-top:1.7777778em;margin-bottom:.4444444em;line-height:1.5555556}.sm\:prose-lg img{margin-top:1.7777778em;margin-bottom:1.7777778em}.sm\:prose-lg video{margin-top:1.7777778em;margin-bottom:1.7777778em}.sm\:prose-lg figure{margin-top:1.7777778em;margin-bottom:1.7777778em}.sm\:prose-lg figure>*{margin-top:0;margin-bottom:0}.sm\:prose-lg figure figcaption{font-size:.8888889em;line-height:1.5;margin-top:1em}.sm\:prose-lg code{font-size:.8888889em}.sm\:prose-lg h2 code{font-size:.8666667em}.sm\:prose-lg h3 code{font-size:.875em}.sm\:prose-lg pre{font-size:.8888889em;line-height:1.75;margin-top:2em;margin-bottom:2em;border-radius:.375rem;padding-top:1em;padding-right:1.5em;padding-bottom:1em;padding-left:1.5em}.sm\:prose-lg ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.sm\:prose-lg ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.sm\:prose-lg li{margin-top:.6666667em;margin-bottom:.6666667em}.sm\:prose-lg ol>li{padding-left:1.6666667em}.sm\:prose-lg ol>li:before{left:0}.sm\:prose-lg ul>li{padding-left:1.6666667em}.sm\:prose-lg ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8888889em - .1666667em);left:.2222222em}.sm\:prose-lg>ul>li p{margin-top:.8888889em;margin-bottom:.8888889em}.sm\:prose-lg>ul>li>:first-child{margin-top:1.3333333em}.sm\:prose-lg>ul>li>:last-child{margin-bottom:1.3333333em}.sm\:prose-lg>ol>li>:first-child{margin-top:1.3333333em}.sm\:prose-lg>ol>li>:last-child{margin-bottom:1.3333333em}.sm\:prose-lg ol ol,.sm\:prose-lg ol ul,.sm\:prose-lg ul ol,.sm\:prose-lg ul ul{margin-top:.8888889em;margin-bottom:.8888889em}.sm\:prose-lg hr{margin-top:3.1111111em;margin-bottom:3.1111111em}.sm\:prose-lg hr+*{margin-top:0}.sm\:prose-lg h2+*{margin-top:0}.sm\:prose-lg h3+*{margin-top:0}.sm\:prose-lg h4+*{margin-top:0}.sm\:prose-lg table{font-size:.8888889em;line-height:1.5}.sm\:prose-lg thead th{padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.sm\:prose-lg thead th:first-child{padding-left:0}.sm\:prose-lg thead th:last-child{padding-right:0}.sm\:prose-lg tbody td{padding-top:.75em;padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.sm\:prose-lg tbody td:first-child{padding-left:0}.sm\:prose-lg tbody td:last-child{padding-right:0}.sm\:prose-lg>:first-child{margin-top:0}.sm\:prose-lg>:last-child{margin-bottom:0}.sm\:prose-xl{font-size:1.25rem;line-height:1.8}.sm\:prose-xl p{margin-top:1.2em;margin-bottom:1.2em}.sm\:prose-xl [class~=lead]{font-size:1.2em;line-height:1.5;margin-top:1em;margin-bottom:1em}.sm\:prose-xl blockquote{margin-top:1.6em;margin-bottom:1.6em;padding-left:1.0666667em}.sm\:prose-xl h1{font-size:2.8em;margin-top:0;margin-bottom:.8571429em;line-height:1}.sm\:prose-xl h2{font-size:1.8em;margin-top:1.5555556em;margin-bottom:.8888889em;line-height:1.1111111}.sm\:prose-xl h3{font-size:1.5em;margin-top:1.6em;margin-bottom:.6666667em;line-height:1.3333333}.sm\:prose-xl h4{margin-top:1.8em;margin-bottom:.6em;line-height:1.6}.sm\:prose-xl img{margin-top:2em;margin-bottom:2em}.sm\:prose-xl video{margin-top:2em;margin-bottom:2em}.sm\:prose-xl figure{margin-top:2em;margin-bottom:2em}.sm\:prose-xl figure>*{margin-top:0;margin-bottom:0}.sm\:prose-xl figure figcaption{font-size:.9em;line-height:1.5555556;margin-top:1em}.sm\:prose-xl code{font-size:.9em}.sm\:prose-xl h2 code{font-size:.8611111em}.sm\:prose-xl h3 code{font-size:.9em}.sm\:prose-xl pre{font-size:.9em;line-height:1.7777778;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.1111111em;padding-right:1.3333333em;padding-bottom:1.1111111em;padding-left:1.3333333em}.sm\:prose-xl ol{margin-top:1.2em;margin-bottom:1.2em}.sm\:prose-xl ul{margin-top:1.2em;margin-bottom:1.2em}.sm\:prose-xl li{margin-top:.6em;margin-bottom:.6em}.sm\:prose-xl ol>li{padding-left:1.8em}.sm\:prose-xl ol>li:before{left:0}.sm\:prose-xl ul>li{padding-left:1.8em}.sm\:prose-xl ul>li::before{width:.35em;height:.35em;top:calc(.9em - .175em);left:.25em}.sm\:prose-xl>ul>li p{margin-top:.8em;margin-bottom:.8em}.sm\:prose-xl>ul>li>:first-child{margin-top:1.2em}.sm\:prose-xl>ul>li>:last-child{margin-bottom:1.2em}.sm\:prose-xl>ol>li>:first-child{margin-top:1.2em}.sm\:prose-xl>ol>li>:last-child{margin-bottom:1.2em}.sm\:prose-xl ol ol,.sm\:prose-xl ol ul,.sm\:prose-xl ul ol,.sm\:prose-xl ul ul{margin-top:.8em;margin-bottom:.8em}.sm\:prose-xl hr{margin-top:2.8em;margin-bottom:2.8em}.sm\:prose-xl hr+*{margin-top:0}.sm\:prose-xl h2+*{margin-top:0}.sm\:prose-xl h3+*{margin-top:0}.sm\:prose-xl h4+*{margin-top:0}.sm\:prose-xl table{font-size:.9em;line-height:1.5555556}.sm\:prose-xl thead th{padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.sm\:prose-xl thead th:first-child{padding-left:0}.sm\:prose-xl thead th:last-child{padding-right:0}.sm\:prose-xl tbody td{padding-top:.8888889em;padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.sm\:prose-xl tbody td:first-child{padding-left:0}.sm\:prose-xl tbody td:last-child{padding-right:0}.sm\:prose-xl>:first-child{margin-top:0}.sm\:prose-xl>:last-child{margin-bottom:0}.sm\:prose-2xl{font-size:1.5rem;line-height:1.6666667}.sm\:prose-2xl p{margin-top:1.3333333em;margin-bottom:1.3333333em}.sm\:prose-2xl [class~=lead]{font-size:1.25em;line-height:1.4666667;margin-top:1.0666667em;margin-bottom:1.0666667em}.sm\:prose-2xl blockquote{margin-top:1.7777778em;margin-bottom:1.7777778em;padding-left:1.1111111em}.sm\:prose-2xl h1{font-size:2.6666667em;margin-top:0;margin-bottom:.875em;line-height:1}.sm\:prose-2xl h2{font-size:2em;margin-top:1.5em;margin-bottom:.8333333em;line-height:1.0833333}.sm\:prose-2xl h3{font-size:1.5em;margin-top:1.5555556em;margin-bottom:.6666667em;line-height:1.2222222}.sm\:prose-2xl h4{margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.sm\:prose-2xl img{margin-top:2em;margin-bottom:2em}.sm\:prose-2xl video{margin-top:2em;margin-bottom:2em}.sm\:prose-2xl figure{margin-top:2em;margin-bottom:2em}.sm\:prose-2xl figure>*{margin-top:0;margin-bottom:0}.sm\:prose-2xl figure figcaption{font-size:.8333333em;line-height:1.6;margin-top:1em}.sm\:prose-2xl code{font-size:.8333333em}.sm\:prose-2xl h2 code{font-size:.875em}.sm\:prose-2xl h3 code{font-size:.8888889em}.sm\:prose-2xl pre{font-size:.8333333em;line-height:1.8;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.2em;padding-right:1.6em;padding-bottom:1.2em;padding-left:1.6em}.sm\:prose-2xl ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.sm\:prose-2xl ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.sm\:prose-2xl li{margin-top:.5em;margin-bottom:.5em}.sm\:prose-2xl ol>li{padding-left:1.6666667em}.sm\:prose-2xl ol>li:before{left:0}.sm\:prose-2xl ul>li{padding-left:1.6666667em}.sm\:prose-2xl ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8333333em - .1666667em);left:.25em}.sm\:prose-2xl>ul>li p{margin-top:.8333333em;margin-bottom:.8333333em}.sm\:prose-2xl>ul>li>:first-child{margin-top:1.3333333em}.sm\:prose-2xl>ul>li>:last-child{margin-bottom:1.3333333em}.sm\:prose-2xl>ol>li>:first-child{margin-top:1.3333333em}.sm\:prose-2xl>ol>li>:last-child{margin-bottom:1.3333333em}.sm\:prose-2xl ol ol,.sm\:prose-2xl ol ul,.sm\:prose-2xl ul ol,.sm\:prose-2xl ul ul{margin-top:.6666667em;margin-bottom:.6666667em}.sm\:prose-2xl hr{margin-top:3em;margin-bottom:3em}.sm\:prose-2xl hr+*{margin-top:0}.sm\:prose-2xl h2+*{margin-top:0}.sm\:prose-2xl h3+*{margin-top:0}.sm\:prose-2xl h4+*{margin-top:0}.sm\:prose-2xl table{font-size:.8333333em;line-height:1.4}.sm\:prose-2xl thead th{padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.sm\:prose-2xl thead th:first-child{padding-left:0}.sm\:prose-2xl thead th:last-child{padding-right:0}.sm\:prose-2xl tbody td{padding-top:.8em;padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.sm\:prose-2xl tbody td:first-child{padding-left:0}.sm\:prose-2xl tbody td:last-child{padding-right:0}.sm\:prose-2xl>:first-child{margin-top:0}.sm\:prose-2xl>:last-child{margin-bottom:0}.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.sm\:space-x-0>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0px * var(--space-x-reverse));margin-left:calc(0px * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.25rem * var(--space-y-reverse))}.sm\:space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.25rem * var(--space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.5rem * var(--space-y-reverse))}.sm\:space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.75rem * var(--space-y-reverse))}.sm\:space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.75rem * var(--space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1rem * var(--space-y-reverse))}.sm\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem * var(--space-y-reverse))}.sm\:space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.25rem * var(--space-x-reverse));margin-left:calc(1.25rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.5rem * var(--space-y-reverse))}.sm\:space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem * var(--space-x-reverse));margin-left:calc(1.5rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.75rem * var(--space-y-reverse))}.sm\:space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.75rem * var(--space-x-reverse));margin-left:calc(1.75rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2rem * var(--space-y-reverse))}.sm\:space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.25rem * var(--space-y-reverse))}.sm\:space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.25rem * var(--space-x-reverse));margin-left:calc(2.25rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.5rem * var(--space-y-reverse))}.sm\:space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.5rem * var(--space-x-reverse));margin-left:calc(2.5rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.75rem * var(--space-y-reverse))}.sm\:space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.75rem * var(--space-x-reverse));margin-left:calc(2.75rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3rem * var(--space-y-reverse))}.sm\:space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3rem * var(--space-x-reverse));margin-left:calc(3rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.25rem * var(--space-y-reverse))}.sm\:space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.25rem * var(--space-x-reverse));margin-left:calc(3.25rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.5rem * var(--space-y-reverse))}.sm\:space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.5rem * var(--space-x-reverse));margin-left:calc(3.5rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.75rem * var(--space-y-reverse))}.sm\:space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.75rem * var(--space-x-reverse));margin-left:calc(3.75rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(4rem * var(--space-y-reverse))}.sm\:space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(5rem * var(--space-y-reverse))}.sm\:space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(5rem * var(--space-x-reverse));margin-left:calc(5rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(6rem * var(--space-y-reverse))}.sm\:space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(6rem * var(--space-x-reverse));margin-left:calc(6rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(7rem * var(--space-y-reverse))}.sm\:space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(7rem * var(--space-x-reverse));margin-left:calc(7rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8rem * var(--space-y-reverse))}.sm\:space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8rem * var(--space-x-reverse));margin-left:calc(8rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(9rem * var(--space-y-reverse))}.sm\:space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(9rem * var(--space-x-reverse));margin-left:calc(9rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(10rem * var(--space-y-reverse))}.sm\:space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(10rem * var(--space-x-reverse));margin-left:calc(10rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(11rem * var(--space-y-reverse))}.sm\:space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(11rem * var(--space-x-reverse));margin-left:calc(11rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(12rem * var(--space-y-reverse))}.sm\:space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(12rem * var(--space-x-reverse));margin-left:calc(12rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(13rem * var(--space-y-reverse))}.sm\:space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(13rem * var(--space-x-reverse));margin-left:calc(13rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(14rem * var(--space-y-reverse))}.sm\:space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(14rem * var(--space-x-reverse));margin-left:calc(14rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(15rem * var(--space-y-reverse))}.sm\:space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(15rem * var(--space-x-reverse));margin-left:calc(15rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16rem * var(--space-y-reverse))}.sm\:space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16rem * var(--space-x-reverse));margin-left:calc(16rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(18rem * var(--space-y-reverse))}.sm\:space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(18rem * var(--space-x-reverse));margin-left:calc(18rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20rem * var(--space-y-reverse))}.sm\:space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20rem * var(--space-x-reverse));margin-left:calc(20rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(24rem * var(--space-y-reverse))}.sm\:space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(24rem * var(--space-x-reverse));margin-left:calc(24rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1px * var(--space-y-reverse))}.sm\:space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1px * var(--space-x-reverse));margin-left:calc(1px * calc(1 - var(--space-x-reverse)))}.sm\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.125rem * var(--space-y-reverse))}.sm\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.125rem * var(--space-x-reverse));margin-left:calc(.125rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.375rem * var(--space-y-reverse))}.sm\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.375rem * var(--space-x-reverse));margin-left:calc(.375rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.625rem * var(--space-y-reverse))}.sm\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.625rem * var(--space-x-reverse));margin-left:calc(.625rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.875rem * var(--space-y-reverse))}.sm\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.875rem * var(--space-x-reverse));margin-left:calc(.875rem * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.sm\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.sm\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.sm\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.sm\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.sm\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.sm\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20% * var(--space-y-reverse))}.sm\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20% * var(--space-x-reverse));margin-left:calc(20% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(40% * var(--space-y-reverse))}.sm\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(40% * var(--space-x-reverse));margin-left:calc(40% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(60% * var(--space-y-reverse))}.sm\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(60% * var(--space-x-reverse));margin-left:calc(60% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(80% * var(--space-y-reverse))}.sm\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(80% * var(--space-x-reverse));margin-left:calc(80% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.sm\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.sm\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.sm\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.sm\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.sm\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8.333333% * var(--space-y-reverse))}.sm\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8.333333% * var(--space-x-reverse));margin-left:calc(8.333333% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.sm\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.sm\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.sm\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(41.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(41.666667% * var(--space-y-reverse))}.sm\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(41.666667% * var(--space-x-reverse));margin-left:calc(41.666667% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.sm\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(58.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(58.333333% * var(--space-y-reverse))}.sm\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(58.333333% * var(--space-x-reverse));margin-left:calc(58.333333% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.sm\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.sm\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.sm\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(91.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(91.666667% * var(--space-y-reverse))}.sm\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(91.666667% * var(--space-x-reverse));margin-left:calc(91.666667% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(100% * var(--space-y-reverse))}.sm\:space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(100% * var(--space-x-reverse));margin-left:calc(100% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.25rem * var(--space-y-reverse))}.sm\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.25rem * var(--space-x-reverse));margin-left:calc(-.25rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.5rem * var(--space-y-reverse))}.sm\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.5rem * var(--space-x-reverse));margin-left:calc(-.5rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.75rem * var(--space-y-reverse))}.sm\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.75rem * var(--space-x-reverse));margin-left:calc(-.75rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1rem * var(--space-y-reverse))}.sm\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1rem * var(--space-x-reverse));margin-left:calc(-1rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.25rem * var(--space-y-reverse))}.sm\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.25rem * var(--space-x-reverse));margin-left:calc(-1.25rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.5rem * var(--space-y-reverse))}.sm\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.5rem * var(--space-x-reverse));margin-left:calc(-1.5rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.75rem * var(--space-y-reverse))}.sm\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.75rem * var(--space-x-reverse));margin-left:calc(-1.75rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2rem * var(--space-y-reverse))}.sm\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2rem * var(--space-x-reverse));margin-left:calc(-2rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.25rem * var(--space-y-reverse))}.sm\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.25rem * var(--space-x-reverse));margin-left:calc(-2.25rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.5rem * var(--space-y-reverse))}.sm\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.5rem * var(--space-x-reverse));margin-left:calc(-2.5rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.75rem * var(--space-y-reverse))}.sm\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.75rem * var(--space-x-reverse));margin-left:calc(-2.75rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3rem * var(--space-y-reverse))}.sm\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3rem * var(--space-x-reverse));margin-left:calc(-3rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.25rem * var(--space-y-reverse))}.sm\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.25rem * var(--space-x-reverse));margin-left:calc(-3.25rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.5rem * var(--space-y-reverse))}.sm\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.5rem * var(--space-x-reverse));margin-left:calc(-3.5rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.75rem * var(--space-y-reverse))}.sm\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.75rem * var(--space-x-reverse));margin-left:calc(-3.75rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-4rem * var(--space-y-reverse))}.sm\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-4rem * var(--space-x-reverse));margin-left:calc(-4rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-5rem * var(--space-y-reverse))}.sm\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-5rem * var(--space-x-reverse));margin-left:calc(-5rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-6rem * var(--space-y-reverse))}.sm\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-6rem * var(--space-x-reverse));margin-left:calc(-6rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-7rem * var(--space-y-reverse))}.sm\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-7rem * var(--space-x-reverse));margin-left:calc(-7rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8rem * var(--space-y-reverse))}.sm\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8rem * var(--space-x-reverse));margin-left:calc(-8rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-9rem * var(--space-y-reverse))}.sm\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-9rem * var(--space-x-reverse));margin-left:calc(-9rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-10rem * var(--space-y-reverse))}.sm\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-10rem * var(--space-x-reverse));margin-left:calc(-10rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-11rem * var(--space-y-reverse))}.sm\:-space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-11rem * var(--space-x-reverse));margin-left:calc(-11rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-12rem * var(--space-y-reverse))}.sm\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-12rem * var(--space-x-reverse));margin-left:calc(-12rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-13rem * var(--space-y-reverse))}.sm\:-space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-13rem * var(--space-x-reverse));margin-left:calc(-13rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-14rem * var(--space-y-reverse))}.sm\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-14rem * var(--space-x-reverse));margin-left:calc(-14rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-15rem * var(--space-y-reverse))}.sm\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-15rem * var(--space-x-reverse));margin-left:calc(-15rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16rem * var(--space-y-reverse))}.sm\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16rem * var(--space-x-reverse));margin-left:calc(-16rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-18rem * var(--space-y-reverse))}.sm\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-18rem * var(--space-x-reverse));margin-left:calc(-18rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20rem * var(--space-y-reverse))}.sm\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20rem * var(--space-x-reverse));margin-left:calc(-20rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-24rem * var(--space-y-reverse))}.sm\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-24rem * var(--space-x-reverse));margin-left:calc(-24rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1px * var(--space-y-reverse))}.sm\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1px * var(--space-x-reverse));margin-left:calc(-1px * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.125rem * var(--space-y-reverse))}.sm\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.125rem * var(--space-x-reverse));margin-left:calc(-.125rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.375rem * var(--space-y-reverse))}.sm\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.375rem * var(--space-x-reverse));margin-left:calc(-.375rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.625rem * var(--space-y-reverse))}.sm\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.625rem * var(--space-x-reverse));margin-left:calc(-.625rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.875rem * var(--space-y-reverse))}.sm\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.875rem * var(--space-x-reverse));margin-left:calc(-.875rem * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.sm\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.sm\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.sm\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.sm\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.sm\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.sm\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20% * var(--space-y-reverse))}.sm\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20% * var(--space-x-reverse));margin-left:calc(-20% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-40% * var(--space-y-reverse))}.sm\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-40% * var(--space-x-reverse));margin-left:calc(-40% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-60% * var(--space-y-reverse))}.sm\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-60% * var(--space-x-reverse));margin-left:calc(-60% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-80% * var(--space-y-reverse))}.sm\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-80% * var(--space-x-reverse));margin-left:calc(-80% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.sm\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.sm\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.sm\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.sm\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.sm\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8.33333% * var(--space-y-reverse))}.sm\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8.33333% * var(--space-x-reverse));margin-left:calc(-8.33333% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.sm\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.sm\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.sm\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-41.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-41.66667% * var(--space-y-reverse))}.sm\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-41.66667% * var(--space-x-reverse));margin-left:calc(-41.66667% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.sm\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-58.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-58.33333% * var(--space-y-reverse))}.sm\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-58.33333% * var(--space-x-reverse));margin-left:calc(-58.33333% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.sm\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.sm\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.sm\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-91.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-91.66667% * var(--space-y-reverse))}.sm\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-91.66667% * var(--space-x-reverse));margin-left:calc(-91.66667% * calc(1 - var(--space-x-reverse)))}.sm\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-100% * var(--space-y-reverse))}.sm\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-100% * var(--space-x-reverse));margin-left:calc(-100% * calc(1 - var(--space-x-reverse)))}.sm\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1}.sm\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1}.sm\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(0px * var(--divide-y-reverse))}.sm\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(0px * var(--divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--divide-x-reverse)))}.sm\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(2px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(2px * var(--divide-y-reverse))}.sm\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(2px * var(--divide-x-reverse));border-left-width:calc(2px * calc(1 - var(--divide-x-reverse)))}.sm\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(4px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(4px * var(--divide-y-reverse))}.sm\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(4px * var(--divide-x-reverse));border-left-width:calc(4px * calc(1 - var(--divide-x-reverse)))}.sm\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(8px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(8px * var(--divide-y-reverse))}.sm\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(8px * var(--divide-x-reverse));border-left-width:calc(8px * calc(1 - var(--divide-x-reverse)))}.sm\:divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px * var(--divide-y-reverse))}.sm\:divide-x>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}.sm\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1}.sm\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1}.sm\:divide-transparent>:not(template)~:not(template){border-color:transparent}.sm\:divide-white>:not(template)~:not(template){--divide-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--divide-opacity))}.sm\:divide-black>:not(template)~:not(template){--divide-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--divide-opacity))}.sm\:divide-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--divide-opacity))}.sm\:divide-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--divide-opacity))}.sm\:divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.sm\:divide-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--divide-opacity))}.sm\:divide-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--divide-opacity))}.sm\:divide-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--divide-opacity))}.sm\:divide-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--divide-opacity))}.sm\:divide-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--divide-opacity))}.sm\:divide-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--divide-opacity))}.sm\:divide-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--divide-opacity))}.sm\:divide-cool-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--divide-opacity))}.sm\:divide-cool-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--divide-opacity))}.sm\:divide-cool-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--divide-opacity))}.sm\:divide-cool-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--divide-opacity))}.sm\:divide-cool-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--divide-opacity))}.sm\:divide-cool-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--divide-opacity))}.sm\:divide-cool-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--divide-opacity))}.sm\:divide-cool-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--divide-opacity))}.sm\:divide-cool-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--divide-opacity))}.sm\:divide-cool-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--divide-opacity))}.sm\:divide-red-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--divide-opacity))}.sm\:divide-red-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--divide-opacity))}.sm\:divide-red-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--divide-opacity))}.sm\:divide-red-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--divide-opacity))}.sm\:divide-red-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--divide-opacity))}.sm\:divide-red-500>:not(template)~:not(template){--divide-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--divide-opacity))}.sm\:divide-red-600>:not(template)~:not(template){--divide-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--divide-opacity))}.sm\:divide-red-700>:not(template)~:not(template){--divide-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--divide-opacity))}.sm\:divide-red-800>:not(template)~:not(template){--divide-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--divide-opacity))}.sm\:divide-red-900>:not(template)~:not(template){--divide-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--divide-opacity))}.sm\:divide-orange-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--divide-opacity))}.sm\:divide-orange-100>:not(template)~:not(template){--divide-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--divide-opacity))}.sm\:divide-orange-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--divide-opacity))}.sm\:divide-orange-300>:not(template)~:not(template){--divide-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--divide-opacity))}.sm\:divide-orange-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--divide-opacity))}.sm\:divide-orange-500>:not(template)~:not(template){--divide-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--divide-opacity))}.sm\:divide-orange-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--divide-opacity))}.sm\:divide-orange-700>:not(template)~:not(template){--divide-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--divide-opacity))}.sm\:divide-orange-800>:not(template)~:not(template){--divide-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--divide-opacity))}.sm\:divide-orange-900>:not(template)~:not(template){--divide-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--divide-opacity))}.sm\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--divide-opacity))}.sm\:divide-yellow-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--divide-opacity))}.sm\:divide-yellow-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--divide-opacity))}.sm\:divide-yellow-300>:not(template)~:not(template){--divide-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--divide-opacity))}.sm\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--divide-opacity))}.sm\:divide-yellow-500>:not(template)~:not(template){--divide-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--divide-opacity))}.sm\:divide-yellow-600>:not(template)~:not(template){--divide-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--divide-opacity))}.sm\:divide-yellow-700>:not(template)~:not(template){--divide-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--divide-opacity))}.sm\:divide-yellow-800>:not(template)~:not(template){--divide-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--divide-opacity))}.sm\:divide-yellow-900>:not(template)~:not(template){--divide-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--divide-opacity))}.sm\:divide-green-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--divide-opacity))}.sm\:divide-green-100>:not(template)~:not(template){--divide-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--divide-opacity))}.sm\:divide-green-200>:not(template)~:not(template){--divide-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--divide-opacity))}.sm\:divide-green-300>:not(template)~:not(template){--divide-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--divide-opacity))}.sm\:divide-green-400>:not(template)~:not(template){--divide-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--divide-opacity))}.sm\:divide-green-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--divide-opacity))}.sm\:divide-green-600>:not(template)~:not(template){--divide-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--divide-opacity))}.sm\:divide-green-700>:not(template)~:not(template){--divide-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--divide-opacity))}.sm\:divide-green-800>:not(template)~:not(template){--divide-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--divide-opacity))}.sm\:divide-green-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--divide-opacity))}.sm\:divide-teal-50>:not(template)~:not(template){--divide-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--divide-opacity))}.sm\:divide-teal-100>:not(template)~:not(template){--divide-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--divide-opacity))}.sm\:divide-teal-200>:not(template)~:not(template){--divide-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--divide-opacity))}.sm\:divide-teal-300>:not(template)~:not(template){--divide-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--divide-opacity))}.sm\:divide-teal-400>:not(template)~:not(template){--divide-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--divide-opacity))}.sm\:divide-teal-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--divide-opacity))}.sm\:divide-teal-600>:not(template)~:not(template){--divide-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--divide-opacity))}.sm\:divide-teal-700>:not(template)~:not(template){--divide-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--divide-opacity))}.sm\:divide-teal-800>:not(template)~:not(template){--divide-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--divide-opacity))}.sm\:divide-teal-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--divide-opacity))}.sm\:divide-blue-50>:not(template)~:not(template){--divide-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--divide-opacity))}.sm\:divide-blue-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--divide-opacity))}.sm\:divide-blue-200>:not(template)~:not(template){--divide-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--divide-opacity))}.sm\:divide-blue-300>:not(template)~:not(template){--divide-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--divide-opacity))}.sm\:divide-blue-400>:not(template)~:not(template){--divide-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--divide-opacity))}.sm\:divide-blue-500>:not(template)~:not(template){--divide-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--divide-opacity))}.sm\:divide-blue-600>:not(template)~:not(template){--divide-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--divide-opacity))}.sm\:divide-blue-700>:not(template)~:not(template){--divide-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--divide-opacity))}.sm\:divide-blue-800>:not(template)~:not(template){--divide-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--divide-opacity))}.sm\:divide-blue-900>:not(template)~:not(template){--divide-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--divide-opacity))}.sm\:divide-indigo-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--divide-opacity))}.sm\:divide-indigo-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--divide-opacity))}.sm\:divide-indigo-200>:not(template)~:not(template){--divide-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--divide-opacity))}.sm\:divide-indigo-300>:not(template)~:not(template){--divide-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--divide-opacity))}.sm\:divide-indigo-400>:not(template)~:not(template){--divide-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--divide-opacity))}.sm\:divide-indigo-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--divide-opacity))}.sm\:divide-indigo-600>:not(template)~:not(template){--divide-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--divide-opacity))}.sm\:divide-indigo-700>:not(template)~:not(template){--divide-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--divide-opacity))}.sm\:divide-indigo-800>:not(template)~:not(template){--divide-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--divide-opacity))}.sm\:divide-indigo-900>:not(template)~:not(template){--divide-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--divide-opacity))}.sm\:divide-purple-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--divide-opacity))}.sm\:divide-purple-100>:not(template)~:not(template){--divide-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--divide-opacity))}.sm\:divide-purple-200>:not(template)~:not(template){--divide-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--divide-opacity))}.sm\:divide-purple-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--divide-opacity))}.sm\:divide-purple-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--divide-opacity))}.sm\:divide-purple-500>:not(template)~:not(template){--divide-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--divide-opacity))}.sm\:divide-purple-600>:not(template)~:not(template){--divide-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--divide-opacity))}.sm\:divide-purple-700>:not(template)~:not(template){--divide-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--divide-opacity))}.sm\:divide-purple-800>:not(template)~:not(template){--divide-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--divide-opacity))}.sm\:divide-purple-900>:not(template)~:not(template){--divide-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--divide-opacity))}.sm\:divide-pink-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--divide-opacity))}.sm\:divide-pink-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--divide-opacity))}.sm\:divide-pink-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--divide-opacity))}.sm\:divide-pink-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--divide-opacity))}.sm\:divide-pink-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--divide-opacity))}.sm\:divide-pink-500>:not(template)~:not(template){--divide-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--divide-opacity))}.sm\:divide-pink-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--divide-opacity))}.sm\:divide-pink-700>:not(template)~:not(template){--divide-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--divide-opacity))}.sm\:divide-pink-800>:not(template)~:not(template){--divide-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--divide-opacity))}.sm\:divide-pink-900>:not(template)~:not(template){--divide-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--divide-opacity))}.sm\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0}.sm\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25}.sm\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5}.sm\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75}.sm\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1}.sm\:sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sm\:not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.sm\:focus\:sr-only:focus{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sm\:focus\:not-sr-only:focus{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.sm\:appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.sm\:bg-fixed{background-attachment:fixed}.sm\:bg-local{background-attachment:local}.sm\:bg-scroll{background-attachment:scroll}.sm\:bg-transparent{background-color:transparent}.sm\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.sm\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.sm\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.sm\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.sm\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.sm\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.sm\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.sm\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.sm\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.sm\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.sm\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.sm\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.sm\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.sm\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.sm\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.sm\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.sm\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.sm\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.sm\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.sm\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.sm\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.sm\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.sm\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.sm\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.sm\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.sm\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.sm\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.sm\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.sm\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.sm\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.sm\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.sm\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.sm\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.sm\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.sm\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.sm\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.sm\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.sm\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.sm\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.sm\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.sm\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.sm\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.sm\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.sm\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.sm\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.sm\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.sm\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.sm\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.sm\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.sm\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.sm\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.sm\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.sm\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.sm\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.sm\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.sm\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.sm\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.sm\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.sm\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.sm\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.sm\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.sm\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.sm\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.sm\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.sm\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.sm\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.sm\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.sm\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.sm\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.sm\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.sm\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.sm\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.sm\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.sm\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.sm\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.sm\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.sm\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.sm\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.sm\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.sm\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.sm\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.sm\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.sm\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.sm\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.sm\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.sm\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.sm\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.sm\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.sm\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.sm\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.sm\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.sm\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.sm\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.sm\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.sm\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.sm\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.sm\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.sm\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.sm\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.sm\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.sm\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.sm\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.sm\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.sm\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.sm\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.sm\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.sm\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.sm\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.sm\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.sm\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.sm\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.sm\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-transparent{background-color:transparent}.group:hover .sm\:group-hover\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:hover .sm\:group-hover\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-transparent{background-color:transparent}.group:focus .sm\:group-focus\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:focus .sm\:group-focus\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.sm\:hover\:bg-transparent:hover{background-color:transparent}.sm\:hover\:bg-white:hover{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.sm\:hover\:bg-black:hover{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.sm\:hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.sm\:hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.sm\:hover\:bg-gray-200:hover{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.sm\:hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.sm\:hover\:bg-gray-400:hover{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.sm\:hover\:bg-gray-500:hover{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.sm\:hover\:bg-gray-600:hover{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.sm\:hover\:bg-gray-700:hover{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.sm\:hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.sm\:hover\:bg-gray-900:hover{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-50:hover{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-100:hover{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-200:hover{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-300:hover{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-400:hover{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-500:hover{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-600:hover{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-700:hover{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-800:hover{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.sm\:hover\:bg-cool-gray-900:hover{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.sm\:hover\:bg-red-50:hover{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.sm\:hover\:bg-red-100:hover{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.sm\:hover\:bg-red-200:hover{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.sm\:hover\:bg-red-300:hover{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.sm\:hover\:bg-red-400:hover{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.sm\:hover\:bg-red-500:hover{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.sm\:hover\:bg-red-600:hover{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.sm\:hover\:bg-red-700:hover{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.sm\:hover\:bg-red-800:hover{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.sm\:hover\:bg-red-900:hover{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.sm\:hover\:bg-orange-50:hover{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.sm\:hover\:bg-orange-100:hover{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.sm\:hover\:bg-orange-200:hover{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.sm\:hover\:bg-orange-300:hover{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.sm\:hover\:bg-orange-400:hover{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.sm\:hover\:bg-orange-500:hover{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.sm\:hover\:bg-orange-600:hover{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.sm\:hover\:bg-orange-700:hover{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.sm\:hover\:bg-orange-800:hover{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.sm\:hover\:bg-orange-900:hover{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.sm\:hover\:bg-yellow-50:hover{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.sm\:hover\:bg-yellow-100:hover{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.sm\:hover\:bg-yellow-200:hover{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.sm\:hover\:bg-yellow-300:hover{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.sm\:hover\:bg-yellow-400:hover{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.sm\:hover\:bg-yellow-500:hover{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.sm\:hover\:bg-yellow-600:hover{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.sm\:hover\:bg-yellow-700:hover{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.sm\:hover\:bg-yellow-800:hover{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.sm\:hover\:bg-yellow-900:hover{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.sm\:hover\:bg-green-50:hover{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.sm\:hover\:bg-green-100:hover{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.sm\:hover\:bg-green-200:hover{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.sm\:hover\:bg-green-300:hover{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.sm\:hover\:bg-green-400:hover{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.sm\:hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.sm\:hover\:bg-green-600:hover{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.sm\:hover\:bg-green-700:hover{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.sm\:hover\:bg-green-800:hover{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.sm\:hover\:bg-green-900:hover{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.sm\:hover\:bg-teal-50:hover{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.sm\:hover\:bg-teal-100:hover{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.sm\:hover\:bg-teal-200:hover{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.sm\:hover\:bg-teal-300:hover{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.sm\:hover\:bg-teal-400:hover{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.sm\:hover\:bg-teal-500:hover{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.sm\:hover\:bg-teal-600:hover{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.sm\:hover\:bg-teal-700:hover{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.sm\:hover\:bg-teal-800:hover{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.sm\:hover\:bg-teal-900:hover{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.sm\:hover\:bg-blue-50:hover{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.sm\:hover\:bg-blue-100:hover{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.sm\:hover\:bg-blue-200:hover{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.sm\:hover\:bg-blue-300:hover{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.sm\:hover\:bg-blue-400:hover{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.sm\:hover\:bg-blue-500:hover{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.sm\:hover\:bg-blue-600:hover{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.sm\:hover\:bg-blue-700:hover{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.sm\:hover\:bg-blue-800:hover{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.sm\:hover\:bg-blue-900:hover{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.sm\:hover\:bg-indigo-50:hover{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.sm\:hover\:bg-indigo-100:hover{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.sm\:hover\:bg-indigo-200:hover{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.sm\:hover\:bg-indigo-300:hover{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.sm\:hover\:bg-indigo-400:hover{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.sm\:hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.sm\:hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.sm\:hover\:bg-indigo-700:hover{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.sm\:hover\:bg-indigo-800:hover{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.sm\:hover\:bg-indigo-900:hover{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.sm\:hover\:bg-purple-50:hover{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.sm\:hover\:bg-purple-100:hover{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.sm\:hover\:bg-purple-200:hover{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.sm\:hover\:bg-purple-300:hover{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.sm\:hover\:bg-purple-400:hover{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.sm\:hover\:bg-purple-500:hover{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.sm\:hover\:bg-purple-600:hover{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.sm\:hover\:bg-purple-700:hover{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.sm\:hover\:bg-purple-800:hover{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.sm\:hover\:bg-purple-900:hover{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.sm\:hover\:bg-pink-50:hover{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.sm\:hover\:bg-pink-100:hover{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.sm\:hover\:bg-pink-200:hover{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.sm\:hover\:bg-pink-300:hover{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.sm\:hover\:bg-pink-400:hover{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.sm\:hover\:bg-pink-500:hover{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.sm\:hover\:bg-pink-600:hover{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.sm\:hover\:bg-pink-700:hover{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.sm\:hover\:bg-pink-800:hover{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.sm\:hover\:bg-pink-900:hover{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.sm\:focus\:bg-transparent:focus{background-color:transparent}.sm\:focus\:bg-white:focus{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.sm\:focus\:bg-black:focus{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.sm\:focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.sm\:focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.sm\:focus\:bg-gray-200:focus{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.sm\:focus\:bg-gray-300:focus{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.sm\:focus\:bg-gray-400:focus{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.sm\:focus\:bg-gray-500:focus{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.sm\:focus\:bg-gray-600:focus{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.sm\:focus\:bg-gray-700:focus{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.sm\:focus\:bg-gray-800:focus{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.sm\:focus\:bg-gray-900:focus{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-50:focus{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-100:focus{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-200:focus{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-300:focus{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-400:focus{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-500:focus{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-600:focus{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-700:focus{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-800:focus{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.sm\:focus\:bg-cool-gray-900:focus{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.sm\:focus\:bg-red-50:focus{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.sm\:focus\:bg-red-100:focus{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.sm\:focus\:bg-red-200:focus{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.sm\:focus\:bg-red-300:focus{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.sm\:focus\:bg-red-400:focus{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.sm\:focus\:bg-red-500:focus{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.sm\:focus\:bg-red-600:focus{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.sm\:focus\:bg-red-700:focus{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.sm\:focus\:bg-red-800:focus{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.sm\:focus\:bg-red-900:focus{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.sm\:focus\:bg-orange-50:focus{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.sm\:focus\:bg-orange-100:focus{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.sm\:focus\:bg-orange-200:focus{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.sm\:focus\:bg-orange-300:focus{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.sm\:focus\:bg-orange-400:focus{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.sm\:focus\:bg-orange-500:focus{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.sm\:focus\:bg-orange-600:focus{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.sm\:focus\:bg-orange-700:focus{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.sm\:focus\:bg-orange-800:focus{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.sm\:focus\:bg-orange-900:focus{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.sm\:focus\:bg-yellow-50:focus{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.sm\:focus\:bg-yellow-100:focus{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.sm\:focus\:bg-yellow-200:focus{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.sm\:focus\:bg-yellow-300:focus{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.sm\:focus\:bg-yellow-400:focus{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.sm\:focus\:bg-yellow-500:focus{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.sm\:focus\:bg-yellow-600:focus{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.sm\:focus\:bg-yellow-700:focus{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.sm\:focus\:bg-yellow-800:focus{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.sm\:focus\:bg-yellow-900:focus{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.sm\:focus\:bg-green-50:focus{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.sm\:focus\:bg-green-100:focus{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.sm\:focus\:bg-green-200:focus{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.sm\:focus\:bg-green-300:focus{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.sm\:focus\:bg-green-400:focus{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.sm\:focus\:bg-green-500:focus{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.sm\:focus\:bg-green-600:focus{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.sm\:focus\:bg-green-700:focus{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.sm\:focus\:bg-green-800:focus{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.sm\:focus\:bg-green-900:focus{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.sm\:focus\:bg-teal-50:focus{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.sm\:focus\:bg-teal-100:focus{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.sm\:focus\:bg-teal-200:focus{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.sm\:focus\:bg-teal-300:focus{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.sm\:focus\:bg-teal-400:focus{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.sm\:focus\:bg-teal-500:focus{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.sm\:focus\:bg-teal-600:focus{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.sm\:focus\:bg-teal-700:focus{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.sm\:focus\:bg-teal-800:focus{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.sm\:focus\:bg-teal-900:focus{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.sm\:focus\:bg-blue-50:focus{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.sm\:focus\:bg-blue-100:focus{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.sm\:focus\:bg-blue-200:focus{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.sm\:focus\:bg-blue-300:focus{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.sm\:focus\:bg-blue-400:focus{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.sm\:focus\:bg-blue-500:focus{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.sm\:focus\:bg-blue-600:focus{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.sm\:focus\:bg-blue-700:focus{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.sm\:focus\:bg-blue-800:focus{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.sm\:focus\:bg-blue-900:focus{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.sm\:focus\:bg-indigo-50:focus{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.sm\:focus\:bg-indigo-100:focus{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.sm\:focus\:bg-indigo-200:focus{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.sm\:focus\:bg-indigo-300:focus{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.sm\:focus\:bg-indigo-400:focus{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.sm\:focus\:bg-indigo-500:focus{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.sm\:focus\:bg-indigo-600:focus{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.sm\:focus\:bg-indigo-700:focus{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.sm\:focus\:bg-indigo-800:focus{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.sm\:focus\:bg-indigo-900:focus{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.sm\:focus\:bg-purple-50:focus{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.sm\:focus\:bg-purple-100:focus{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.sm\:focus\:bg-purple-200:focus{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.sm\:focus\:bg-purple-300:focus{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.sm\:focus\:bg-purple-400:focus{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.sm\:focus\:bg-purple-500:focus{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.sm\:focus\:bg-purple-600:focus{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.sm\:focus\:bg-purple-700:focus{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.sm\:focus\:bg-purple-800:focus{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.sm\:focus\:bg-purple-900:focus{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.sm\:focus\:bg-pink-50:focus{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.sm\:focus\:bg-pink-100:focus{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.sm\:focus\:bg-pink-200:focus{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.sm\:focus\:bg-pink-300:focus{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.sm\:focus\:bg-pink-400:focus{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.sm\:focus\:bg-pink-500:focus{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.sm\:focus\:bg-pink-600:focus{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.sm\:focus\:bg-pink-700:focus{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.sm\:focus\:bg-pink-800:focus{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.sm\:focus\:bg-pink-900:focus{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.sm\:active\:bg-transparent:active{background-color:transparent}.sm\:active\:bg-white:active{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.sm\:active\:bg-black:active{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.sm\:active\:bg-gray-50:active{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.sm\:active\:bg-gray-100:active{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.sm\:active\:bg-gray-200:active{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.sm\:active\:bg-gray-300:active{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.sm\:active\:bg-gray-400:active{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.sm\:active\:bg-gray-500:active{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.sm\:active\:bg-gray-600:active{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.sm\:active\:bg-gray-700:active{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.sm\:active\:bg-gray-800:active{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.sm\:active\:bg-gray-900:active{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.sm\:active\:bg-cool-gray-50:active{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.sm\:active\:bg-cool-gray-100:active{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.sm\:active\:bg-cool-gray-200:active{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.sm\:active\:bg-cool-gray-300:active{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.sm\:active\:bg-cool-gray-400:active{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.sm\:active\:bg-cool-gray-500:active{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.sm\:active\:bg-cool-gray-600:active{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.sm\:active\:bg-cool-gray-700:active{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.sm\:active\:bg-cool-gray-800:active{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.sm\:active\:bg-cool-gray-900:active{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.sm\:active\:bg-red-50:active{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.sm\:active\:bg-red-100:active{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.sm\:active\:bg-red-200:active{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.sm\:active\:bg-red-300:active{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.sm\:active\:bg-red-400:active{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.sm\:active\:bg-red-500:active{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.sm\:active\:bg-red-600:active{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.sm\:active\:bg-red-700:active{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.sm\:active\:bg-red-800:active{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.sm\:active\:bg-red-900:active{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.sm\:active\:bg-orange-50:active{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.sm\:active\:bg-orange-100:active{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.sm\:active\:bg-orange-200:active{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.sm\:active\:bg-orange-300:active{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.sm\:active\:bg-orange-400:active{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.sm\:active\:bg-orange-500:active{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.sm\:active\:bg-orange-600:active{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.sm\:active\:bg-orange-700:active{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.sm\:active\:bg-orange-800:active{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.sm\:active\:bg-orange-900:active{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.sm\:active\:bg-yellow-50:active{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.sm\:active\:bg-yellow-100:active{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.sm\:active\:bg-yellow-200:active{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.sm\:active\:bg-yellow-300:active{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.sm\:active\:bg-yellow-400:active{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.sm\:active\:bg-yellow-500:active{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.sm\:active\:bg-yellow-600:active{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.sm\:active\:bg-yellow-700:active{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.sm\:active\:bg-yellow-800:active{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.sm\:active\:bg-yellow-900:active{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.sm\:active\:bg-green-50:active{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.sm\:active\:bg-green-100:active{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.sm\:active\:bg-green-200:active{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.sm\:active\:bg-green-300:active{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.sm\:active\:bg-green-400:active{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.sm\:active\:bg-green-500:active{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.sm\:active\:bg-green-600:active{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.sm\:active\:bg-green-700:active{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.sm\:active\:bg-green-800:active{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.sm\:active\:bg-green-900:active{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.sm\:active\:bg-teal-50:active{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.sm\:active\:bg-teal-100:active{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.sm\:active\:bg-teal-200:active{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.sm\:active\:bg-teal-300:active{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.sm\:active\:bg-teal-400:active{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.sm\:active\:bg-teal-500:active{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.sm\:active\:bg-teal-600:active{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.sm\:active\:bg-teal-700:active{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.sm\:active\:bg-teal-800:active{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.sm\:active\:bg-teal-900:active{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.sm\:active\:bg-blue-50:active{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.sm\:active\:bg-blue-100:active{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.sm\:active\:bg-blue-200:active{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.sm\:active\:bg-blue-300:active{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.sm\:active\:bg-blue-400:active{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.sm\:active\:bg-blue-500:active{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.sm\:active\:bg-blue-600:active{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.sm\:active\:bg-blue-700:active{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.sm\:active\:bg-blue-800:active{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.sm\:active\:bg-blue-900:active{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.sm\:active\:bg-indigo-50:active{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.sm\:active\:bg-indigo-100:active{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.sm\:active\:bg-indigo-200:active{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.sm\:active\:bg-indigo-300:active{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.sm\:active\:bg-indigo-400:active{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.sm\:active\:bg-indigo-500:active{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.sm\:active\:bg-indigo-600:active{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.sm\:active\:bg-indigo-700:active{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.sm\:active\:bg-indigo-800:active{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.sm\:active\:bg-indigo-900:active{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.sm\:active\:bg-purple-50:active{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.sm\:active\:bg-purple-100:active{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.sm\:active\:bg-purple-200:active{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.sm\:active\:bg-purple-300:active{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.sm\:active\:bg-purple-400:active{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.sm\:active\:bg-purple-500:active{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.sm\:active\:bg-purple-600:active{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.sm\:active\:bg-purple-700:active{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.sm\:active\:bg-purple-800:active{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.sm\:active\:bg-purple-900:active{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.sm\:active\:bg-pink-50:active{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.sm\:active\:bg-pink-100:active{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.sm\:active\:bg-pink-200:active{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.sm\:active\:bg-pink-300:active{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.sm\:active\:bg-pink-400:active{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.sm\:active\:bg-pink-500:active{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.sm\:active\:bg-pink-600:active{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.sm\:active\:bg-pink-700:active{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.sm\:active\:bg-pink-800:active{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.sm\:active\:bg-pink-900:active{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.sm\:bg-opacity-0{--bg-opacity:0}.sm\:bg-opacity-25{--bg-opacity:0.25}.sm\:bg-opacity-50{--bg-opacity:0.5}.sm\:bg-opacity-75{--bg-opacity:0.75}.sm\:bg-opacity-100{--bg-opacity:1}.sm\:hover\:bg-opacity-0:hover{--bg-opacity:0}.sm\:hover\:bg-opacity-25:hover{--bg-opacity:0.25}.sm\:hover\:bg-opacity-50:hover{--bg-opacity:0.5}.sm\:hover\:bg-opacity-75:hover{--bg-opacity:0.75}.sm\:hover\:bg-opacity-100:hover{--bg-opacity:1}.sm\:focus\:bg-opacity-0:focus{--bg-opacity:0}.sm\:focus\:bg-opacity-25:focus{--bg-opacity:0.25}.sm\:focus\:bg-opacity-50:focus{--bg-opacity:0.5}.sm\:focus\:bg-opacity-75:focus{--bg-opacity:0.75}.sm\:focus\:bg-opacity-100:focus{--bg-opacity:1}.sm\:bg-bottom{background-position:bottom}.sm\:bg-center{background-position:center}.sm\:bg-left{background-position:left}.sm\:bg-left-bottom{background-position:left bottom}.sm\:bg-left-top{background-position:left top}.sm\:bg-right{background-position:right}.sm\:bg-right-bottom{background-position:right bottom}.sm\:bg-right-top{background-position:right top}.sm\:bg-top{background-position:top}.sm\:bg-repeat{background-repeat:repeat}.sm\:bg-no-repeat{background-repeat:no-repeat}.sm\:bg-repeat-x{background-repeat:repeat-x}.sm\:bg-repeat-y{background-repeat:repeat-y}.sm\:bg-repeat-round{background-repeat:round}.sm\:bg-repeat-space{background-repeat:space}.sm\:bg-auto{background-size:auto}.sm\:bg-cover{background-size:cover}.sm\:bg-contain{background-size:contain}.sm\:border-collapse{border-collapse:collapse}.sm\:border-separate{border-collapse:separate}.sm\:border-transparent{border-color:transparent}.sm\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.sm\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.sm\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.sm\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.sm\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.sm\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.sm\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.sm\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.sm\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.sm\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.sm\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.sm\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.sm\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.sm\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.sm\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.sm\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.sm\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.sm\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.sm\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.sm\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.sm\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.sm\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.sm\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.sm\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.sm\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.sm\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.sm\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.sm\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.sm\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.sm\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.sm\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.sm\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.sm\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.sm\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.sm\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.sm\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.sm\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.sm\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.sm\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.sm\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.sm\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.sm\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.sm\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.sm\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.sm\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.sm\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.sm\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.sm\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.sm\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.sm\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.sm\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.sm\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.sm\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.sm\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.sm\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.sm\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.sm\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.sm\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.sm\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.sm\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.sm\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.sm\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.sm\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.sm\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.sm\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.sm\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.sm\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.sm\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.sm\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.sm\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.sm\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.sm\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.sm\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.sm\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.sm\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.sm\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.sm\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.sm\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.sm\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.sm\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.sm\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.sm\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.sm\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.sm\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.sm\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.sm\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.sm\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.sm\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.sm\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.sm\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.sm\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.sm\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.sm\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.sm\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.sm\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.sm\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.sm\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.sm\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.sm\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.sm\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.sm\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.sm\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.sm\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.sm\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.sm\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.sm\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.sm\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.sm\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.sm\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.sm\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.sm\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.sm\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:hover .sm\:group-hover\:border-transparent{border-color:transparent}.group:hover .sm\:group-hover\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:hover .sm\:group-hover\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:hover .sm\:group-hover\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:hover .sm\:group-hover\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:hover .sm\:group-hover\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:hover .sm\:group-hover\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:hover .sm\:group-hover\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:hover .sm\:group-hover\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:hover .sm\:group-hover\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:hover .sm\:group-hover\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:hover .sm\:group-hover\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:hover .sm\:group-hover\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:hover .sm\:group-hover\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:focus .sm\:group-focus\:border-transparent{border-color:transparent}.group:focus .sm\:group-focus\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:focus .sm\:group-focus\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:focus .sm\:group-focus\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:focus .sm\:group-focus\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:focus .sm\:group-focus\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:focus .sm\:group-focus\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:focus .sm\:group-focus\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:focus .sm\:group-focus\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:focus .sm\:group-focus\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:focus .sm\:group-focus\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:focus .sm\:group-focus\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:focus .sm\:group-focus\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:focus .sm\:group-focus\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.sm\:hover\:border-transparent:hover{border-color:transparent}.sm\:hover\:border-white:hover{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.sm\:hover\:border-black:hover{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.sm\:hover\:border-gray-50:hover{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.sm\:hover\:border-gray-100:hover{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.sm\:hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.sm\:hover\:border-gray-300:hover{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.sm\:hover\:border-gray-400:hover{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.sm\:hover\:border-gray-500:hover{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.sm\:hover\:border-gray-600:hover{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.sm\:hover\:border-gray-700:hover{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.sm\:hover\:border-gray-800:hover{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.sm\:hover\:border-gray-900:hover{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.sm\:hover\:border-cool-gray-50:hover{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.sm\:hover\:border-cool-gray-100:hover{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.sm\:hover\:border-cool-gray-200:hover{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.sm\:hover\:border-cool-gray-300:hover{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.sm\:hover\:border-cool-gray-400:hover{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.sm\:hover\:border-cool-gray-500:hover{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.sm\:hover\:border-cool-gray-600:hover{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.sm\:hover\:border-cool-gray-700:hover{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.sm\:hover\:border-cool-gray-800:hover{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.sm\:hover\:border-cool-gray-900:hover{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.sm\:hover\:border-red-50:hover{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.sm\:hover\:border-red-100:hover{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.sm\:hover\:border-red-200:hover{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.sm\:hover\:border-red-300:hover{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.sm\:hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.sm\:hover\:border-red-500:hover{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.sm\:hover\:border-red-600:hover{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.sm\:hover\:border-red-700:hover{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.sm\:hover\:border-red-800:hover{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.sm\:hover\:border-red-900:hover{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.sm\:hover\:border-orange-50:hover{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.sm\:hover\:border-orange-100:hover{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.sm\:hover\:border-orange-200:hover{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.sm\:hover\:border-orange-300:hover{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.sm\:hover\:border-orange-400:hover{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.sm\:hover\:border-orange-500:hover{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.sm\:hover\:border-orange-600:hover{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.sm\:hover\:border-orange-700:hover{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.sm\:hover\:border-orange-800:hover{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.sm\:hover\:border-orange-900:hover{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.sm\:hover\:border-yellow-50:hover{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.sm\:hover\:border-yellow-100:hover{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.sm\:hover\:border-yellow-200:hover{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.sm\:hover\:border-yellow-300:hover{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.sm\:hover\:border-yellow-400:hover{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.sm\:hover\:border-yellow-500:hover{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.sm\:hover\:border-yellow-600:hover{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.sm\:hover\:border-yellow-700:hover{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.sm\:hover\:border-yellow-800:hover{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.sm\:hover\:border-yellow-900:hover{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.sm\:hover\:border-green-50:hover{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.sm\:hover\:border-green-100:hover{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.sm\:hover\:border-green-200:hover{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.sm\:hover\:border-green-300:hover{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.sm\:hover\:border-green-400:hover{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.sm\:hover\:border-green-500:hover{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.sm\:hover\:border-green-600:hover{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.sm\:hover\:border-green-700:hover{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.sm\:hover\:border-green-800:hover{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.sm\:hover\:border-green-900:hover{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.sm\:hover\:border-teal-50:hover{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.sm\:hover\:border-teal-100:hover{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.sm\:hover\:border-teal-200:hover{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.sm\:hover\:border-teal-300:hover{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.sm\:hover\:border-teal-400:hover{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.sm\:hover\:border-teal-500:hover{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.sm\:hover\:border-teal-600:hover{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.sm\:hover\:border-teal-700:hover{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.sm\:hover\:border-teal-800:hover{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.sm\:hover\:border-teal-900:hover{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.sm\:hover\:border-blue-50:hover{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.sm\:hover\:border-blue-100:hover{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.sm\:hover\:border-blue-200:hover{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.sm\:hover\:border-blue-300:hover{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.sm\:hover\:border-blue-400:hover{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.sm\:hover\:border-blue-500:hover{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.sm\:hover\:border-blue-600:hover{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.sm\:hover\:border-blue-700:hover{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.sm\:hover\:border-blue-800:hover{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.sm\:hover\:border-blue-900:hover{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.sm\:hover\:border-indigo-50:hover{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.sm\:hover\:border-indigo-100:hover{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.sm\:hover\:border-indigo-200:hover{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.sm\:hover\:border-indigo-300:hover{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.sm\:hover\:border-indigo-400:hover{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.sm\:hover\:border-indigo-500:hover{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.sm\:hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.sm\:hover\:border-indigo-700:hover{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.sm\:hover\:border-indigo-800:hover{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.sm\:hover\:border-indigo-900:hover{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.sm\:hover\:border-purple-50:hover{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.sm\:hover\:border-purple-100:hover{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.sm\:hover\:border-purple-200:hover{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.sm\:hover\:border-purple-300:hover{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.sm\:hover\:border-purple-400:hover{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.sm\:hover\:border-purple-500:hover{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.sm\:hover\:border-purple-600:hover{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.sm\:hover\:border-purple-700:hover{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.sm\:hover\:border-purple-800:hover{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.sm\:hover\:border-purple-900:hover{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.sm\:hover\:border-pink-50:hover{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.sm\:hover\:border-pink-100:hover{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.sm\:hover\:border-pink-200:hover{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.sm\:hover\:border-pink-300:hover{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.sm\:hover\:border-pink-400:hover{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.sm\:hover\:border-pink-500:hover{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.sm\:hover\:border-pink-600:hover{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.sm\:hover\:border-pink-700:hover{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.sm\:hover\:border-pink-800:hover{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.sm\:hover\:border-pink-900:hover{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.sm\:focus\:border-transparent:focus{border-color:transparent}.sm\:focus\:border-white:focus{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.sm\:focus\:border-black:focus{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.sm\:focus\:border-gray-50:focus{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.sm\:focus\:border-gray-100:focus{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.sm\:focus\:border-gray-200:focus{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.sm\:focus\:border-gray-300:focus{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.sm\:focus\:border-gray-400:focus{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.sm\:focus\:border-gray-500:focus{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.sm\:focus\:border-gray-600:focus{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.sm\:focus\:border-gray-700:focus{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.sm\:focus\:border-gray-800:focus{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.sm\:focus\:border-gray-900:focus{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.sm\:focus\:border-cool-gray-50:focus{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.sm\:focus\:border-cool-gray-100:focus{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.sm\:focus\:border-cool-gray-200:focus{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.sm\:focus\:border-cool-gray-300:focus{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.sm\:focus\:border-cool-gray-400:focus{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.sm\:focus\:border-cool-gray-500:focus{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.sm\:focus\:border-cool-gray-600:focus{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.sm\:focus\:border-cool-gray-700:focus{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.sm\:focus\:border-cool-gray-800:focus{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.sm\:focus\:border-cool-gray-900:focus{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.sm\:focus\:border-red-50:focus{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.sm\:focus\:border-red-100:focus{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.sm\:focus\:border-red-200:focus{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.sm\:focus\:border-red-300:focus{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.sm\:focus\:border-red-400:focus{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.sm\:focus\:border-red-500:focus{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.sm\:focus\:border-red-600:focus{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.sm\:focus\:border-red-700:focus{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.sm\:focus\:border-red-800:focus{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.sm\:focus\:border-red-900:focus{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.sm\:focus\:border-orange-50:focus{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.sm\:focus\:border-orange-100:focus{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.sm\:focus\:border-orange-200:focus{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.sm\:focus\:border-orange-300:focus{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.sm\:focus\:border-orange-400:focus{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.sm\:focus\:border-orange-500:focus{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.sm\:focus\:border-orange-600:focus{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.sm\:focus\:border-orange-700:focus{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.sm\:focus\:border-orange-800:focus{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.sm\:focus\:border-orange-900:focus{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.sm\:focus\:border-yellow-50:focus{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.sm\:focus\:border-yellow-100:focus{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.sm\:focus\:border-yellow-200:focus{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.sm\:focus\:border-yellow-300:focus{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.sm\:focus\:border-yellow-400:focus{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.sm\:focus\:border-yellow-500:focus{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.sm\:focus\:border-yellow-600:focus{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.sm\:focus\:border-yellow-700:focus{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.sm\:focus\:border-yellow-800:focus{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.sm\:focus\:border-yellow-900:focus{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.sm\:focus\:border-green-50:focus{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.sm\:focus\:border-green-100:focus{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.sm\:focus\:border-green-200:focus{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.sm\:focus\:border-green-300:focus{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.sm\:focus\:border-green-400:focus{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.sm\:focus\:border-green-500:focus{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.sm\:focus\:border-green-600:focus{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.sm\:focus\:border-green-700:focus{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.sm\:focus\:border-green-800:focus{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.sm\:focus\:border-green-900:focus{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.sm\:focus\:border-teal-50:focus{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.sm\:focus\:border-teal-100:focus{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.sm\:focus\:border-teal-200:focus{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.sm\:focus\:border-teal-300:focus{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.sm\:focus\:border-teal-400:focus{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.sm\:focus\:border-teal-500:focus{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.sm\:focus\:border-teal-600:focus{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.sm\:focus\:border-teal-700:focus{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.sm\:focus\:border-teal-800:focus{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.sm\:focus\:border-teal-900:focus{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.sm\:focus\:border-blue-50:focus{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.sm\:focus\:border-blue-100:focus{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.sm\:focus\:border-blue-200:focus{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.sm\:focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.sm\:focus\:border-blue-400:focus{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.sm\:focus\:border-blue-500:focus{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.sm\:focus\:border-blue-600:focus{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.sm\:focus\:border-blue-700:focus{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.sm\:focus\:border-blue-800:focus{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.sm\:focus\:border-blue-900:focus{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.sm\:focus\:border-indigo-50:focus{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.sm\:focus\:border-indigo-100:focus{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.sm\:focus\:border-indigo-200:focus{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.sm\:focus\:border-indigo-300:focus{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.sm\:focus\:border-indigo-400:focus{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.sm\:focus\:border-indigo-500:focus{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.sm\:focus\:border-indigo-600:focus{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.sm\:focus\:border-indigo-700:focus{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.sm\:focus\:border-indigo-800:focus{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.sm\:focus\:border-indigo-900:focus{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.sm\:focus\:border-purple-50:focus{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.sm\:focus\:border-purple-100:focus{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.sm\:focus\:border-purple-200:focus{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.sm\:focus\:border-purple-300:focus{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.sm\:focus\:border-purple-400:focus{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.sm\:focus\:border-purple-500:focus{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.sm\:focus\:border-purple-600:focus{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.sm\:focus\:border-purple-700:focus{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.sm\:focus\:border-purple-800:focus{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.sm\:focus\:border-purple-900:focus{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.sm\:focus\:border-pink-50:focus{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.sm\:focus\:border-pink-100:focus{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.sm\:focus\:border-pink-200:focus{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.sm\:focus\:border-pink-300:focus{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.sm\:focus\:border-pink-400:focus{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.sm\:focus\:border-pink-500:focus{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.sm\:focus\:border-pink-600:focus{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.sm\:focus\:border-pink-700:focus{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.sm\:focus\:border-pink-800:focus{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.sm\:focus\:border-pink-900:focus{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.sm\:border-opacity-0{--border-opacity:0}.sm\:border-opacity-25{--border-opacity:0.25}.sm\:border-opacity-50{--border-opacity:0.5}.sm\:border-opacity-75{--border-opacity:0.75}.sm\:border-opacity-100{--border-opacity:1}.sm\:hover\:border-opacity-0:hover{--border-opacity:0}.sm\:hover\:border-opacity-25:hover{--border-opacity:0.25}.sm\:hover\:border-opacity-50:hover{--border-opacity:0.5}.sm\:hover\:border-opacity-75:hover{--border-opacity:0.75}.sm\:hover\:border-opacity-100:hover{--border-opacity:1}.sm\:focus\:border-opacity-0:focus{--border-opacity:0}.sm\:focus\:border-opacity-25:focus{--border-opacity:0.25}.sm\:focus\:border-opacity-50:focus{--border-opacity:0.5}.sm\:focus\:border-opacity-75:focus{--border-opacity:0.75}.sm\:focus\:border-opacity-100:focus{--border-opacity:1}.sm\:rounded-none{border-radius:0}.sm\:rounded-sm{border-radius:.125rem}.sm\:rounded{border-radius:.25rem}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-full{border-radius:9999px}.sm\:rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.sm\:rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.sm\:rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.sm\:rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.sm\:rounded-t-sm{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.sm\:rounded-r-sm{border-top-right-radius:.125rem;border-bottom-right-radius:.125rem}.sm\:rounded-b-sm{border-bottom-right-radius:.125rem;border-bottom-left-radius:.125rem}.sm\:rounded-l-sm{border-top-left-radius:.125rem;border-bottom-left-radius:.125rem}.sm\:rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.sm\:rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.sm\:rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.sm\:rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.sm\:rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.sm\:rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.sm\:rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.sm\:rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.sm\:rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.sm\:rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.sm\:rounded-b-lg{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.sm\:rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.sm\:rounded-t-full{border-top-left-radius:9999px;border-top-right-radius:9999px}.sm\:rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.sm\:rounded-b-full{border-bottom-right-radius:9999px;border-bottom-left-radius:9999px}.sm\:rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.sm\:rounded-tl-none{border-top-left-radius:0}.sm\:rounded-tr-none{border-top-right-radius:0}.sm\:rounded-br-none{border-bottom-right-radius:0}.sm\:rounded-bl-none{border-bottom-left-radius:0}.sm\:rounded-tl-sm{border-top-left-radius:.125rem}.sm\:rounded-tr-sm{border-top-right-radius:.125rem}.sm\:rounded-br-sm{border-bottom-right-radius:.125rem}.sm\:rounded-bl-sm{border-bottom-left-radius:.125rem}.sm\:rounded-tl{border-top-left-radius:.25rem}.sm\:rounded-tr{border-top-right-radius:.25rem}.sm\:rounded-br{border-bottom-right-radius:.25rem}.sm\:rounded-bl{border-bottom-left-radius:.25rem}.sm\:rounded-tl-md{border-top-left-radius:.375rem}.sm\:rounded-tr-md{border-top-right-radius:.375rem}.sm\:rounded-br-md{border-bottom-right-radius:.375rem}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem}.sm\:rounded-tl-lg{border-top-left-radius:.5rem}.sm\:rounded-tr-lg{border-top-right-radius:.5rem}.sm\:rounded-br-lg{border-bottom-right-radius:.5rem}.sm\:rounded-bl-lg{border-bottom-left-radius:.5rem}.sm\:rounded-tl-full{border-top-left-radius:9999px}.sm\:rounded-tr-full{border-top-right-radius:9999px}.sm\:rounded-br-full{border-bottom-right-radius:9999px}.sm\:rounded-bl-full{border-bottom-left-radius:9999px}.sm\:border-solid{border-style:solid}.sm\:border-dashed{border-style:dashed}.sm\:border-dotted{border-style:dotted}.sm\:border-double{border-style:double}.sm\:border-none{border-style:none}.sm\:border-0{border-width:0}.sm\:border-2{border-width:2px}.sm\:border-4{border-width:4px}.sm\:border-8{border-width:8px}.sm\:border{border-width:1px}.sm\:border-t-0{border-top-width:0}.sm\:border-r-0{border-right-width:0}.sm\:border-b-0{border-bottom-width:0}.sm\:border-l-0{border-left-width:0}.sm\:border-t-2{border-top-width:2px}.sm\:border-r-2{border-right-width:2px}.sm\:border-b-2{border-bottom-width:2px}.sm\:border-l-2{border-left-width:2px}.sm\:border-t-4{border-top-width:4px}.sm\:border-r-4{border-right-width:4px}.sm\:border-b-4{border-bottom-width:4px}.sm\:border-l-4{border-left-width:4px}.sm\:border-t-8{border-top-width:8px}.sm\:border-r-8{border-right-width:8px}.sm\:border-b-8{border-bottom-width:8px}.sm\:border-l-8{border-left-width:8px}.sm\:border-t{border-top-width:1px}.sm\:border-r{border-right-width:1px}.sm\:border-b{border-bottom-width:1px}.sm\:border-l{border-left-width:1px}.sm\:box-border{box-sizing:border-box}.sm\:box-content{box-sizing:content-box}.sm\:cursor-auto{cursor:auto}.sm\:cursor-default{cursor:default}.sm\:cursor-pointer{cursor:pointer}.sm\:cursor-wait{cursor:wait}.sm\:cursor-text{cursor:text}.sm\:cursor-move{cursor:move}.sm\:cursor-not-allowed{cursor:not-allowed}.sm\:block{display:block}.sm\:inline-block{display:inline-block}.sm\:inline{display:inline}.sm\:flex{display:flex}.sm\:inline-flex{display:inline-flex}.sm\:table{display:table}.sm\:table-caption{display:table-caption}.sm\:table-cell{display:table-cell}.sm\:table-column{display:table-column}.sm\:table-column-group{display:table-column-group}.sm\:table-footer-group{display:table-footer-group}.sm\:table-header-group{display:table-header-group}.sm\:table-row-group{display:table-row-group}.sm\:table-row{display:table-row}.sm\:flow-root{display:flow-root}.sm\:grid{display:grid}.sm\:inline-grid{display:inline-grid}.sm\:hidden{display:none}.sm\:flex-row{flex-direction:row}.sm\:flex-row-reverse{flex-direction:row-reverse}.sm\:flex-col{flex-direction:column}.sm\:flex-col-reverse{flex-direction:column-reverse}.sm\:flex-wrap{flex-wrap:wrap}.sm\:flex-wrap-reverse{flex-wrap:wrap-reverse}.sm\:flex-no-wrap{flex-wrap:nowrap}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:items-baseline{align-items:baseline}.sm\:items-stretch{align-items:stretch}.sm\:self-auto{align-self:auto}.sm\:self-start{align-self:flex-start}.sm\:self-end{align-self:flex-end}.sm\:self-center{align-self:center}.sm\:self-stretch{align-self:stretch}.sm\:justify-start{justify-content:flex-start}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:justify-around{justify-content:space-around}.sm\:justify-evenly{justify-content:space-evenly}.sm\:content-center{align-content:center}.sm\:content-start{align-content:flex-start}.sm\:content-end{align-content:flex-end}.sm\:content-between{align-content:space-between}.sm\:content-around{align-content:space-around}.sm\:flex-1{flex:1 1 0%}.sm\:flex-auto{flex:1 1 auto}.sm\:flex-initial{flex:0 1 auto}.sm\:flex-none{flex:none}.sm\:flex-grow-0{flex-grow:0}.sm\:flex-grow{flex-grow:1}.sm\:flex-shrink-0{flex-shrink:0}.sm\:flex-shrink{flex-shrink:1}.sm\:order-1{order:1}.sm\:order-2{order:2}.sm\:order-3{order:3}.sm\:order-4{order:4}.sm\:order-5{order:5}.sm\:order-6{order:6}.sm\:order-7{order:7}.sm\:order-8{order:8}.sm\:order-9{order:9}.sm\:order-10{order:10}.sm\:order-11{order:11}.sm\:order-12{order:12}.sm\:order-first{order:-9999}.sm\:order-last{order:9999}.sm\:order-none{order:0}.sm\:float-right{float:right}.sm\:float-left{float:left}.sm\:float-none{float:none}.sm\:clearfix:after{content:"";display:table;clear:both}.sm\:clear-left{clear:left}.sm\:clear-right{clear:right}.sm\:clear-both{clear:both}.sm\:clear-none{clear:none}.sm\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.sm\:font-serif{font-family:Georgia,Cambria,"Times New Roman",Times,serif}.sm\:font-mono{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.sm\:font-hairline{font-weight:100}.sm\:font-thin{font-weight:200}.sm\:font-light{font-weight:300}.sm\:font-normal{font-weight:400}.sm\:font-medium{font-weight:500}.sm\:font-semibold{font-weight:600}.sm\:font-bold{font-weight:700}.sm\:font-extrabold{font-weight:800}.sm\:font-black{font-weight:900}.sm\:hover\:font-hairline:hover{font-weight:100}.sm\:hover\:font-thin:hover{font-weight:200}.sm\:hover\:font-light:hover{font-weight:300}.sm\:hover\:font-normal:hover{font-weight:400}.sm\:hover\:font-medium:hover{font-weight:500}.sm\:hover\:font-semibold:hover{font-weight:600}.sm\:hover\:font-bold:hover{font-weight:700}.sm\:hover\:font-extrabold:hover{font-weight:800}.sm\:hover\:font-black:hover{font-weight:900}.sm\:focus\:font-hairline:focus{font-weight:100}.sm\:focus\:font-thin:focus{font-weight:200}.sm\:focus\:font-light:focus{font-weight:300}.sm\:focus\:font-normal:focus{font-weight:400}.sm\:focus\:font-medium:focus{font-weight:500}.sm\:focus\:font-semibold:focus{font-weight:600}.sm\:focus\:font-bold:focus{font-weight:700}.sm\:focus\:font-extrabold:focus{font-weight:800}.sm\:focus\:font-black:focus{font-weight:900}.sm\:h-0{height:0}.sm\:h-1{height:.25rem}.sm\:h-2{height:.5rem}.sm\:h-3{height:.75rem}.sm\:h-4{height:1rem}.sm\:h-5{height:1.25rem}.sm\:h-6{height:1.5rem}.sm\:h-7{height:1.75rem}.sm\:h-8{height:2rem}.sm\:h-9{height:2.25rem}.sm\:h-10{height:2.5rem}.sm\:h-11{height:2.75rem}.sm\:h-12{height:3rem}.sm\:h-13{height:3.25rem}.sm\:h-14{height:3.5rem}.sm\:h-15{height:3.75rem}.sm\:h-16{height:4rem}.sm\:h-20{height:5rem}.sm\:h-24{height:6rem}.sm\:h-28{height:7rem}.sm\:h-32{height:8rem}.sm\:h-36{height:9rem}.sm\:h-40{height:10rem}.sm\:h-44{height:11rem}.sm\:h-48{height:12rem}.sm\:h-52{height:13rem}.sm\:h-56{height:14rem}.sm\:h-60{height:15rem}.sm\:h-64{height:16rem}.sm\:h-72{height:18rem}.sm\:h-80{height:20rem}.sm\:h-96{height:24rem}.sm\:h-auto{height:auto}.sm\:h-px{height:1px}.sm\:h-0\.5{height:.125rem}.sm\:h-1\.5{height:.375rem}.sm\:h-2\.5{height:.625rem}.sm\:h-3\.5{height:.875rem}.sm\:h-1\/2{height:50%}.sm\:h-1\/3{height:33.333333%}.sm\:h-2\/3{height:66.666667%}.sm\:h-1\/4{height:25%}.sm\:h-2\/4{height:50%}.sm\:h-3\/4{height:75%}.sm\:h-1\/5{height:20%}.sm\:h-2\/5{height:40%}.sm\:h-3\/5{height:60%}.sm\:h-4\/5{height:80%}.sm\:h-1\/6{height:16.666667%}.sm\:h-2\/6{height:33.333333%}.sm\:h-3\/6{height:50%}.sm\:h-4\/6{height:66.666667%}.sm\:h-5\/6{height:83.333333%}.sm\:h-1\/12{height:8.333333%}.sm\:h-2\/12{height:16.666667%}.sm\:h-3\/12{height:25%}.sm\:h-4\/12{height:33.333333%}.sm\:h-5\/12{height:41.666667%}.sm\:h-6\/12{height:50%}.sm\:h-7\/12{height:58.333333%}.sm\:h-8\/12{height:66.666667%}.sm\:h-9\/12{height:75%}.sm\:h-10\/12{height:83.333333%}.sm\:h-11\/12{height:91.666667%}.sm\:h-full{height:100%}.sm\:h-screen{height:100vh}.sm\:text-xs{font-size:.75rem}.sm\:text-sm{font-size:.875rem}.sm\:text-base{font-size:1rem}.sm\:text-lg{font-size:1.125rem}.sm\:text-xl{font-size:1.25rem}.sm\:text-2xl{font-size:1.5rem}.sm\:text-3xl{font-size:1.875rem}.sm\:text-4xl{font-size:2.25rem}.sm\:text-5xl{font-size:3rem}.sm\:text-6xl{font-size:4rem}.sm\:leading-3{line-height:.75rem}.sm\:leading-4{line-height:1rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-8{line-height:2rem}.sm\:leading-9{line-height:2.25rem}.sm\:leading-10{line-height:2.5rem}.sm\:leading-none{line-height:1}.sm\:leading-tight{line-height:1.25}.sm\:leading-snug{line-height:1.375}.sm\:leading-normal{line-height:1.5}.sm\:leading-relaxed{line-height:1.625}.sm\:leading-loose{line-height:2}.sm\:list-inside{list-style-position:inside}.sm\:list-outside{list-style-position:outside}.sm\:list-none{list-style-type:none}.sm\:list-disc{list-style-type:disc}.sm\:list-decimal{list-style-type:decimal}.sm\:m-0{margin:0}.sm\:m-1{margin:.25rem}.sm\:m-2{margin:.5rem}.sm\:m-3{margin:.75rem}.sm\:m-4{margin:1rem}.sm\:m-5{margin:1.25rem}.sm\:m-6{margin:1.5rem}.sm\:m-7{margin:1.75rem}.sm\:m-8{margin:2rem}.sm\:m-9{margin:2.25rem}.sm\:m-10{margin:2.5rem}.sm\:m-11{margin:2.75rem}.sm\:m-12{margin:3rem}.sm\:m-13{margin:3.25rem}.sm\:m-14{margin:3.5rem}.sm\:m-15{margin:3.75rem}.sm\:m-16{margin:4rem}.sm\:m-20{margin:5rem}.sm\:m-24{margin:6rem}.sm\:m-28{margin:7rem}.sm\:m-32{margin:8rem}.sm\:m-36{margin:9rem}.sm\:m-40{margin:10rem}.sm\:m-44{margin:11rem}.sm\:m-48{margin:12rem}.sm\:m-52{margin:13rem}.sm\:m-56{margin:14rem}.sm\:m-60{margin:15rem}.sm\:m-64{margin:16rem}.sm\:m-72{margin:18rem}.sm\:m-80{margin:20rem}.sm\:m-96{margin:24rem}.sm\:m-auto{margin:auto}.sm\:m-px{margin:1px}.sm\:m-0\.5{margin:.125rem}.sm\:m-1\.5{margin:.375rem}.sm\:m-2\.5{margin:.625rem}.sm\:m-3\.5{margin:.875rem}.sm\:m-1\/2{margin:50%}.sm\:m-1\/3{margin:33.333333%}.sm\:m-2\/3{margin:66.666667%}.sm\:m-1\/4{margin:25%}.sm\:m-2\/4{margin:50%}.sm\:m-3\/4{margin:75%}.sm\:m-1\/5{margin:20%}.sm\:m-2\/5{margin:40%}.sm\:m-3\/5{margin:60%}.sm\:m-4\/5{margin:80%}.sm\:m-1\/6{margin:16.666667%}.sm\:m-2\/6{margin:33.333333%}.sm\:m-3\/6{margin:50%}.sm\:m-4\/6{margin:66.666667%}.sm\:m-5\/6{margin:83.333333%}.sm\:m-1\/12{margin:8.333333%}.sm\:m-2\/12{margin:16.666667%}.sm\:m-3\/12{margin:25%}.sm\:m-4\/12{margin:33.333333%}.sm\:m-5\/12{margin:41.666667%}.sm\:m-6\/12{margin:50%}.sm\:m-7\/12{margin:58.333333%}.sm\:m-8\/12{margin:66.666667%}.sm\:m-9\/12{margin:75%}.sm\:m-10\/12{margin:83.333333%}.sm\:m-11\/12{margin:91.666667%}.sm\:m-full{margin:100%}.sm\:-m-1{margin:-.25rem}.sm\:-m-2{margin:-.5rem}.sm\:-m-3{margin:-.75rem}.sm\:-m-4{margin:-1rem}.sm\:-m-5{margin:-1.25rem}.sm\:-m-6{margin:-1.5rem}.sm\:-m-7{margin:-1.75rem}.sm\:-m-8{margin:-2rem}.sm\:-m-9{margin:-2.25rem}.sm\:-m-10{margin:-2.5rem}.sm\:-m-11{margin:-2.75rem}.sm\:-m-12{margin:-3rem}.sm\:-m-13{margin:-3.25rem}.sm\:-m-14{margin:-3.5rem}.sm\:-m-15{margin:-3.75rem}.sm\:-m-16{margin:-4rem}.sm\:-m-20{margin:-5rem}.sm\:-m-24{margin:-6rem}.sm\:-m-28{margin:-7rem}.sm\:-m-32{margin:-8rem}.sm\:-m-36{margin:-9rem}.sm\:-m-40{margin:-10rem}.sm\:-m-44{margin:-11rem}.sm\:-m-48{margin:-12rem}.sm\:-m-52{margin:-13rem}.sm\:-m-56{margin:-14rem}.sm\:-m-60{margin:-15rem}.sm\:-m-64{margin:-16rem}.sm\:-m-72{margin:-18rem}.sm\:-m-80{margin:-20rem}.sm\:-m-96{margin:-24rem}.sm\:-m-px{margin:-1px}.sm\:-m-0\.5{margin:-.125rem}.sm\:-m-1\.5{margin:-.375rem}.sm\:-m-2\.5{margin:-.625rem}.sm\:-m-3\.5{margin:-.875rem}.sm\:-m-1\/2{margin:-50%}.sm\:-m-1\/3{margin:-33.33333%}.sm\:-m-2\/3{margin:-66.66667%}.sm\:-m-1\/4{margin:-25%}.sm\:-m-2\/4{margin:-50%}.sm\:-m-3\/4{margin:-75%}.sm\:-m-1\/5{margin:-20%}.sm\:-m-2\/5{margin:-40%}.sm\:-m-3\/5{margin:-60%}.sm\:-m-4\/5{margin:-80%}.sm\:-m-1\/6{margin:-16.66667%}.sm\:-m-2\/6{margin:-33.33333%}.sm\:-m-3\/6{margin:-50%}.sm\:-m-4\/6{margin:-66.66667%}.sm\:-m-5\/6{margin:-83.33333%}.sm\:-m-1\/12{margin:-8.33333%}.sm\:-m-2\/12{margin:-16.66667%}.sm\:-m-3\/12{margin:-25%}.sm\:-m-4\/12{margin:-33.33333%}.sm\:-m-5\/12{margin:-41.66667%}.sm\:-m-6\/12{margin:-50%}.sm\:-m-7\/12{margin:-58.33333%}.sm\:-m-8\/12{margin:-66.66667%}.sm\:-m-9\/12{margin:-75%}.sm\:-m-10\/12{margin:-83.33333%}.sm\:-m-11\/12{margin:-91.66667%}.sm\:-m-full{margin:-100%}.sm\:my-0{margin-top:0;margin-bottom:0}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-1{margin-top:.25rem;margin-bottom:.25rem}.sm\:mx-1{margin-left:.25rem;margin-right:.25rem}.sm\:my-2{margin-top:.5rem;margin-bottom:.5rem}.sm\:mx-2{margin-left:.5rem;margin-right:.5rem}.sm\:my-3{margin-top:.75rem;margin-bottom:.75rem}.sm\:mx-3{margin-left:.75rem;margin-right:.75rem}.sm\:my-4{margin-top:1rem;margin-bottom:1rem}.sm\:mx-4{margin-left:1rem;margin-right:1rem}.sm\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.sm\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.sm\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.sm\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.sm\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.sm\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.sm\:my-8{margin-top:2rem;margin-bottom:2rem}.sm\:mx-8{margin-left:2rem;margin-right:2rem}.sm\:my-9{margin-top:2.25rem;margin-bottom:2.25rem}.sm\:mx-9{margin-left:2.25rem;margin-right:2.25rem}.sm\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.sm\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.sm\:my-11{margin-top:2.75rem;margin-bottom:2.75rem}.sm\:mx-11{margin-left:2.75rem;margin-right:2.75rem}.sm\:my-12{margin-top:3rem;margin-bottom:3rem}.sm\:mx-12{margin-left:3rem;margin-right:3rem}.sm\:my-13{margin-top:3.25rem;margin-bottom:3.25rem}.sm\:mx-13{margin-left:3.25rem;margin-right:3.25rem}.sm\:my-14{margin-top:3.5rem;margin-bottom:3.5rem}.sm\:mx-14{margin-left:3.5rem;margin-right:3.5rem}.sm\:my-15{margin-top:3.75rem;margin-bottom:3.75rem}.sm\:mx-15{margin-left:3.75rem;margin-right:3.75rem}.sm\:my-16{margin-top:4rem;margin-bottom:4rem}.sm\:mx-16{margin-left:4rem;margin-right:4rem}.sm\:my-20{margin-top:5rem;margin-bottom:5rem}.sm\:mx-20{margin-left:5rem;margin-right:5rem}.sm\:my-24{margin-top:6rem;margin-bottom:6rem}.sm\:mx-24{margin-left:6rem;margin-right:6rem}.sm\:my-28{margin-top:7rem;margin-bottom:7rem}.sm\:mx-28{margin-left:7rem;margin-right:7rem}.sm\:my-32{margin-top:8rem;margin-bottom:8rem}.sm\:mx-32{margin-left:8rem;margin-right:8rem}.sm\:my-36{margin-top:9rem;margin-bottom:9rem}.sm\:mx-36{margin-left:9rem;margin-right:9rem}.sm\:my-40{margin-top:10rem;margin-bottom:10rem}.sm\:mx-40{margin-left:10rem;margin-right:10rem}.sm\:my-44{margin-top:11rem;margin-bottom:11rem}.sm\:mx-44{margin-left:11rem;margin-right:11rem}.sm\:my-48{margin-top:12rem;margin-bottom:12rem}.sm\:mx-48{margin-left:12rem;margin-right:12rem}.sm\:my-52{margin-top:13rem;margin-bottom:13rem}.sm\:mx-52{margin-left:13rem;margin-right:13rem}.sm\:my-56{margin-top:14rem;margin-bottom:14rem}.sm\:mx-56{margin-left:14rem;margin-right:14rem}.sm\:my-60{margin-top:15rem;margin-bottom:15rem}.sm\:mx-60{margin-left:15rem;margin-right:15rem}.sm\:my-64{margin-top:16rem;margin-bottom:16rem}.sm\:mx-64{margin-left:16rem;margin-right:16rem}.sm\:my-72{margin-top:18rem;margin-bottom:18rem}.sm\:mx-72{margin-left:18rem;margin-right:18rem}.sm\:my-80{margin-top:20rem;margin-bottom:20rem}.sm\:mx-80{margin-left:20rem;margin-right:20rem}.sm\:my-96{margin-top:24rem;margin-bottom:24rem}.sm\:mx-96{margin-left:24rem;margin-right:24rem}.sm\:my-auto{margin-top:auto;margin-bottom:auto}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:my-px{margin-top:1px;margin-bottom:1px}.sm\:mx-px{margin-left:1px;margin-right:1px}.sm\:my-0\.5{margin-top:.125rem;margin-bottom:.125rem}.sm\:mx-0\.5{margin-left:.125rem;margin-right:.125rem}.sm\:my-1\.5{margin-top:.375rem;margin-bottom:.375rem}.sm\:mx-1\.5{margin-left:.375rem;margin-right:.375rem}.sm\:my-2\.5{margin-top:.625rem;margin-bottom:.625rem}.sm\:mx-2\.5{margin-left:.625rem;margin-right:.625rem}.sm\:my-3\.5{margin-top:.875rem;margin-bottom:.875rem}.sm\:mx-3\.5{margin-left:.875rem;margin-right:.875rem}.sm\:my-1\/2{margin-top:50%;margin-bottom:50%}.sm\:mx-1\/2{margin-left:50%;margin-right:50%}.sm\:my-1\/3{margin-top:33.333333%;margin-bottom:33.333333%}.sm\:mx-1\/3{margin-left:33.333333%;margin-right:33.333333%}.sm\:my-2\/3{margin-top:66.666667%;margin-bottom:66.666667%}.sm\:mx-2\/3{margin-left:66.666667%;margin-right:66.666667%}.sm\:my-1\/4{margin-top:25%;margin-bottom:25%}.sm\:mx-1\/4{margin-left:25%;margin-right:25%}.sm\:my-2\/4{margin-top:50%;margin-bottom:50%}.sm\:mx-2\/4{margin-left:50%;margin-right:50%}.sm\:my-3\/4{margin-top:75%;margin-bottom:75%}.sm\:mx-3\/4{margin-left:75%;margin-right:75%}.sm\:my-1\/5{margin-top:20%;margin-bottom:20%}.sm\:mx-1\/5{margin-left:20%;margin-right:20%}.sm\:my-2\/5{margin-top:40%;margin-bottom:40%}.sm\:mx-2\/5{margin-left:40%;margin-right:40%}.sm\:my-3\/5{margin-top:60%;margin-bottom:60%}.sm\:mx-3\/5{margin-left:60%;margin-right:60%}.sm\:my-4\/5{margin-top:80%;margin-bottom:80%}.sm\:mx-4\/5{margin-left:80%;margin-right:80%}.sm\:my-1\/6{margin-top:16.666667%;margin-bottom:16.666667%}.sm\:mx-1\/6{margin-left:16.666667%;margin-right:16.666667%}.sm\:my-2\/6{margin-top:33.333333%;margin-bottom:33.333333%}.sm\:mx-2\/6{margin-left:33.333333%;margin-right:33.333333%}.sm\:my-3\/6{margin-top:50%;margin-bottom:50%}.sm\:mx-3\/6{margin-left:50%;margin-right:50%}.sm\:my-4\/6{margin-top:66.666667%;margin-bottom:66.666667%}.sm\:mx-4\/6{margin-left:66.666667%;margin-right:66.666667%}.sm\:my-5\/6{margin-top:83.333333%;margin-bottom:83.333333%}.sm\:mx-5\/6{margin-left:83.333333%;margin-right:83.333333%}.sm\:my-1\/12{margin-top:8.333333%;margin-bottom:8.333333%}.sm\:mx-1\/12{margin-left:8.333333%;margin-right:8.333333%}.sm\:my-2\/12{margin-top:16.666667%;margin-bottom:16.666667%}.sm\:mx-2\/12{margin-left:16.666667%;margin-right:16.666667%}.sm\:my-3\/12{margin-top:25%;margin-bottom:25%}.sm\:mx-3\/12{margin-left:25%;margin-right:25%}.sm\:my-4\/12{margin-top:33.333333%;margin-bottom:33.333333%}.sm\:mx-4\/12{margin-left:33.333333%;margin-right:33.333333%}.sm\:my-5\/12{margin-top:41.666667%;margin-bottom:41.666667%}.sm\:mx-5\/12{margin-left:41.666667%;margin-right:41.666667%}.sm\:my-6\/12{margin-top:50%;margin-bottom:50%}.sm\:mx-6\/12{margin-left:50%;margin-right:50%}.sm\:my-7\/12{margin-top:58.333333%;margin-bottom:58.333333%}.sm\:mx-7\/12{margin-left:58.333333%;margin-right:58.333333%}.sm\:my-8\/12{margin-top:66.666667%;margin-bottom:66.666667%}.sm\:mx-8\/12{margin-left:66.666667%;margin-right:66.666667%}.sm\:my-9\/12{margin-top:75%;margin-bottom:75%}.sm\:mx-9\/12{margin-left:75%;margin-right:75%}.sm\:my-10\/12{margin-top:83.333333%;margin-bottom:83.333333%}.sm\:mx-10\/12{margin-left:83.333333%;margin-right:83.333333%}.sm\:my-11\/12{margin-top:91.666667%;margin-bottom:91.666667%}.sm\:mx-11\/12{margin-left:91.666667%;margin-right:91.666667%}.sm\:my-full{margin-top:100%;margin-bottom:100%}.sm\:mx-full{margin-left:100%;margin-right:100%}.sm\:-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.sm\:-mx-1{margin-left:-.25rem;margin-right:-.25rem}.sm\:-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.sm\:-mx-2{margin-left:-.5rem;margin-right:-.5rem}.sm\:-my-3{margin-top:-.75rem;margin-bottom:-.75rem}.sm\:-mx-3{margin-left:-.75rem;margin-right:-.75rem}.sm\:-my-4{margin-top:-1rem;margin-bottom:-1rem}.sm\:-mx-4{margin-left:-1rem;margin-right:-1rem}.sm\:-my-5{margin-top:-1.25rem;margin-bottom:-1.25rem}.sm\:-mx-5{margin-left:-1.25rem;margin-right:-1.25rem}.sm\:-my-6{margin-top:-1.5rem;margin-bottom:-1.5rem}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:-my-7{margin-top:-1.75rem;margin-bottom:-1.75rem}.sm\:-mx-7{margin-left:-1.75rem;margin-right:-1.75rem}.sm\:-my-8{margin-top:-2rem;margin-bottom:-2rem}.sm\:-mx-8{margin-left:-2rem;margin-right:-2rem}.sm\:-my-9{margin-top:-2.25rem;margin-bottom:-2.25rem}.sm\:-mx-9{margin-left:-2.25rem;margin-right:-2.25rem}.sm\:-my-10{margin-top:-2.5rem;margin-bottom:-2.5rem}.sm\:-mx-10{margin-left:-2.5rem;margin-right:-2.5rem}.sm\:-my-11{margin-top:-2.75rem;margin-bottom:-2.75rem}.sm\:-mx-11{margin-left:-2.75rem;margin-right:-2.75rem}.sm\:-my-12{margin-top:-3rem;margin-bottom:-3rem}.sm\:-mx-12{margin-left:-3rem;margin-right:-3rem}.sm\:-my-13{margin-top:-3.25rem;margin-bottom:-3.25rem}.sm\:-mx-13{margin-left:-3.25rem;margin-right:-3.25rem}.sm\:-my-14{margin-top:-3.5rem;margin-bottom:-3.5rem}.sm\:-mx-14{margin-left:-3.5rem;margin-right:-3.5rem}.sm\:-my-15{margin-top:-3.75rem;margin-bottom:-3.75rem}.sm\:-mx-15{margin-left:-3.75rem;margin-right:-3.75rem}.sm\:-my-16{margin-top:-4rem;margin-bottom:-4rem}.sm\:-mx-16{margin-left:-4rem;margin-right:-4rem}.sm\:-my-20{margin-top:-5rem;margin-bottom:-5rem}.sm\:-mx-20{margin-left:-5rem;margin-right:-5rem}.sm\:-my-24{margin-top:-6rem;margin-bottom:-6rem}.sm\:-mx-24{margin-left:-6rem;margin-right:-6rem}.sm\:-my-28{margin-top:-7rem;margin-bottom:-7rem}.sm\:-mx-28{margin-left:-7rem;margin-right:-7rem}.sm\:-my-32{margin-top:-8rem;margin-bottom:-8rem}.sm\:-mx-32{margin-left:-8rem;margin-right:-8rem}.sm\:-my-36{margin-top:-9rem;margin-bottom:-9rem}.sm\:-mx-36{margin-left:-9rem;margin-right:-9rem}.sm\:-my-40{margin-top:-10rem;margin-bottom:-10rem}.sm\:-mx-40{margin-left:-10rem;margin-right:-10rem}.sm\:-my-44{margin-top:-11rem;margin-bottom:-11rem}.sm\:-mx-44{margin-left:-11rem;margin-right:-11rem}.sm\:-my-48{margin-top:-12rem;margin-bottom:-12rem}.sm\:-mx-48{margin-left:-12rem;margin-right:-12rem}.sm\:-my-52{margin-top:-13rem;margin-bottom:-13rem}.sm\:-mx-52{margin-left:-13rem;margin-right:-13rem}.sm\:-my-56{margin-top:-14rem;margin-bottom:-14rem}.sm\:-mx-56{margin-left:-14rem;margin-right:-14rem}.sm\:-my-60{margin-top:-15rem;margin-bottom:-15rem}.sm\:-mx-60{margin-left:-15rem;margin-right:-15rem}.sm\:-my-64{margin-top:-16rem;margin-bottom:-16rem}.sm\:-mx-64{margin-left:-16rem;margin-right:-16rem}.sm\:-my-72{margin-top:-18rem;margin-bottom:-18rem}.sm\:-mx-72{margin-left:-18rem;margin-right:-18rem}.sm\:-my-80{margin-top:-20rem;margin-bottom:-20rem}.sm\:-mx-80{margin-left:-20rem;margin-right:-20rem}.sm\:-my-96{margin-top:-24rem;margin-bottom:-24rem}.sm\:-mx-96{margin-left:-24rem;margin-right:-24rem}.sm\:-my-px{margin-top:-1px;margin-bottom:-1px}.sm\:-mx-px{margin-left:-1px;margin-right:-1px}.sm\:-my-0\.5{margin-top:-.125rem;margin-bottom:-.125rem}.sm\:-mx-0\.5{margin-left:-.125rem;margin-right:-.125rem}.sm\:-my-1\.5{margin-top:-.375rem;margin-bottom:-.375rem}.sm\:-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.sm\:-my-2\.5{margin-top:-.625rem;margin-bottom:-.625rem}.sm\:-mx-2\.5{margin-left:-.625rem;margin-right:-.625rem}.sm\:-my-3\.5{margin-top:-.875rem;margin-bottom:-.875rem}.sm\:-mx-3\.5{margin-left:-.875rem;margin-right:-.875rem}.sm\:-my-1\/2{margin-top:-50%;margin-bottom:-50%}.sm\:-mx-1\/2{margin-left:-50%;margin-right:-50%}.sm\:-my-1\/3{margin-top:-33.33333%;margin-bottom:-33.33333%}.sm\:-mx-1\/3{margin-left:-33.33333%;margin-right:-33.33333%}.sm\:-my-2\/3{margin-top:-66.66667%;margin-bottom:-66.66667%}.sm\:-mx-2\/3{margin-left:-66.66667%;margin-right:-66.66667%}.sm\:-my-1\/4{margin-top:-25%;margin-bottom:-25%}.sm\:-mx-1\/4{margin-left:-25%;margin-right:-25%}.sm\:-my-2\/4{margin-top:-50%;margin-bottom:-50%}.sm\:-mx-2\/4{margin-left:-50%;margin-right:-50%}.sm\:-my-3\/4{margin-top:-75%;margin-bottom:-75%}.sm\:-mx-3\/4{margin-left:-75%;margin-right:-75%}.sm\:-my-1\/5{margin-top:-20%;margin-bottom:-20%}.sm\:-mx-1\/5{margin-left:-20%;margin-right:-20%}.sm\:-my-2\/5{margin-top:-40%;margin-bottom:-40%}.sm\:-mx-2\/5{margin-left:-40%;margin-right:-40%}.sm\:-my-3\/5{margin-top:-60%;margin-bottom:-60%}.sm\:-mx-3\/5{margin-left:-60%;margin-right:-60%}.sm\:-my-4\/5{margin-top:-80%;margin-bottom:-80%}.sm\:-mx-4\/5{margin-left:-80%;margin-right:-80%}.sm\:-my-1\/6{margin-top:-16.66667%;margin-bottom:-16.66667%}.sm\:-mx-1\/6{margin-left:-16.66667%;margin-right:-16.66667%}.sm\:-my-2\/6{margin-top:-33.33333%;margin-bottom:-33.33333%}.sm\:-mx-2\/6{margin-left:-33.33333%;margin-right:-33.33333%}.sm\:-my-3\/6{margin-top:-50%;margin-bottom:-50%}.sm\:-mx-3\/6{margin-left:-50%;margin-right:-50%}.sm\:-my-4\/6{margin-top:-66.66667%;margin-bottom:-66.66667%}.sm\:-mx-4\/6{margin-left:-66.66667%;margin-right:-66.66667%}.sm\:-my-5\/6{margin-top:-83.33333%;margin-bottom:-83.33333%}.sm\:-mx-5\/6{margin-left:-83.33333%;margin-right:-83.33333%}.sm\:-my-1\/12{margin-top:-8.33333%;margin-bottom:-8.33333%}.sm\:-mx-1\/12{margin-left:-8.33333%;margin-right:-8.33333%}.sm\:-my-2\/12{margin-top:-16.66667%;margin-bottom:-16.66667%}.sm\:-mx-2\/12{margin-left:-16.66667%;margin-right:-16.66667%}.sm\:-my-3\/12{margin-top:-25%;margin-bottom:-25%}.sm\:-mx-3\/12{margin-left:-25%;margin-right:-25%}.sm\:-my-4\/12{margin-top:-33.33333%;margin-bottom:-33.33333%}.sm\:-mx-4\/12{margin-left:-33.33333%;margin-right:-33.33333%}.sm\:-my-5\/12{margin-top:-41.66667%;margin-bottom:-41.66667%}.sm\:-mx-5\/12{margin-left:-41.66667%;margin-right:-41.66667%}.sm\:-my-6\/12{margin-top:-50%;margin-bottom:-50%}.sm\:-mx-6\/12{margin-left:-50%;margin-right:-50%}.sm\:-my-7\/12{margin-top:-58.33333%;margin-bottom:-58.33333%}.sm\:-mx-7\/12{margin-left:-58.33333%;margin-right:-58.33333%}.sm\:-my-8\/12{margin-top:-66.66667%;margin-bottom:-66.66667%}.sm\:-mx-8\/12{margin-left:-66.66667%;margin-right:-66.66667%}.sm\:-my-9\/12{margin-top:-75%;margin-bottom:-75%}.sm\:-mx-9\/12{margin-left:-75%;margin-right:-75%}.sm\:-my-10\/12{margin-top:-83.33333%;margin-bottom:-83.33333%}.sm\:-mx-10\/12{margin-left:-83.33333%;margin-right:-83.33333%}.sm\:-my-11\/12{margin-top:-91.66667%;margin-bottom:-91.66667%}.sm\:-mx-11\/12{margin-left:-91.66667%;margin-right:-91.66667%}.sm\:-my-full{margin-top:-100%;margin-bottom:-100%}.sm\:-mx-full{margin-left:-100%;margin-right:-100%}.sm\:mt-0{margin-top:0}.sm\:mr-0{margin-right:0}.sm\:mb-0{margin-bottom:0}.sm\:ml-0{margin-left:0}.sm\:mt-1{margin-top:.25rem}.sm\:mr-1{margin-right:.25rem}.sm\:mb-1{margin-bottom:.25rem}.sm\:ml-1{margin-left:.25rem}.sm\:mt-2{margin-top:.5rem}.sm\:mr-2{margin-right:.5rem}.sm\:mb-2{margin-bottom:.5rem}.sm\:ml-2{margin-left:.5rem}.sm\:mt-3{margin-top:.75rem}.sm\:mr-3{margin-right:.75rem}.sm\:mb-3{margin-bottom:.75rem}.sm\:ml-3{margin-left:.75rem}.sm\:mt-4{margin-top:1rem}.sm\:mr-4{margin-right:1rem}.sm\:mb-4{margin-bottom:1rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-5{margin-top:1.25rem}.sm\:mr-5{margin-right:1.25rem}.sm\:mb-5{margin-bottom:1.25rem}.sm\:ml-5{margin-left:1.25rem}.sm\:mt-6{margin-top:1.5rem}.sm\:mr-6{margin-right:1.5rem}.sm\:mb-6{margin-bottom:1.5rem}.sm\:ml-6{margin-left:1.5rem}.sm\:mt-7{margin-top:1.75rem}.sm\:mr-7{margin-right:1.75rem}.sm\:mb-7{margin-bottom:1.75rem}.sm\:ml-7{margin-left:1.75rem}.sm\:mt-8{margin-top:2rem}.sm\:mr-8{margin-right:2rem}.sm\:mb-8{margin-bottom:2rem}.sm\:ml-8{margin-left:2rem}.sm\:mt-9{margin-top:2.25rem}.sm\:mr-9{margin-right:2.25rem}.sm\:mb-9{margin-bottom:2.25rem}.sm\:ml-9{margin-left:2.25rem}.sm\:mt-10{margin-top:2.5rem}.sm\:mr-10{margin-right:2.5rem}.sm\:mb-10{margin-bottom:2.5rem}.sm\:ml-10{margin-left:2.5rem}.sm\:mt-11{margin-top:2.75rem}.sm\:mr-11{margin-right:2.75rem}.sm\:mb-11{margin-bottom:2.75rem}.sm\:ml-11{margin-left:2.75rem}.sm\:mt-12{margin-top:3rem}.sm\:mr-12{margin-right:3rem}.sm\:mb-12{margin-bottom:3rem}.sm\:ml-12{margin-left:3rem}.sm\:mt-13{margin-top:3.25rem}.sm\:mr-13{margin-right:3.25rem}.sm\:mb-13{margin-bottom:3.25rem}.sm\:ml-13{margin-left:3.25rem}.sm\:mt-14{margin-top:3.5rem}.sm\:mr-14{margin-right:3.5rem}.sm\:mb-14{margin-bottom:3.5rem}.sm\:ml-14{margin-left:3.5rem}.sm\:mt-15{margin-top:3.75rem}.sm\:mr-15{margin-right:3.75rem}.sm\:mb-15{margin-bottom:3.75rem}.sm\:ml-15{margin-left:3.75rem}.sm\:mt-16{margin-top:4rem}.sm\:mr-16{margin-right:4rem}.sm\:mb-16{margin-bottom:4rem}.sm\:ml-16{margin-left:4rem}.sm\:mt-20{margin-top:5rem}.sm\:mr-20{margin-right:5rem}.sm\:mb-20{margin-bottom:5rem}.sm\:ml-20{margin-left:5rem}.sm\:mt-24{margin-top:6rem}.sm\:mr-24{margin-right:6rem}.sm\:mb-24{margin-bottom:6rem}.sm\:ml-24{margin-left:6rem}.sm\:mt-28{margin-top:7rem}.sm\:mr-28{margin-right:7rem}.sm\:mb-28{margin-bottom:7rem}.sm\:ml-28{margin-left:7rem}.sm\:mt-32{margin-top:8rem}.sm\:mr-32{margin-right:8rem}.sm\:mb-32{margin-bottom:8rem}.sm\:ml-32{margin-left:8rem}.sm\:mt-36{margin-top:9rem}.sm\:mr-36{margin-right:9rem}.sm\:mb-36{margin-bottom:9rem}.sm\:ml-36{margin-left:9rem}.sm\:mt-40{margin-top:10rem}.sm\:mr-40{margin-right:10rem}.sm\:mb-40{margin-bottom:10rem}.sm\:ml-40{margin-left:10rem}.sm\:mt-44{margin-top:11rem}.sm\:mr-44{margin-right:11rem}.sm\:mb-44{margin-bottom:11rem}.sm\:ml-44{margin-left:11rem}.sm\:mt-48{margin-top:12rem}.sm\:mr-48{margin-right:12rem}.sm\:mb-48{margin-bottom:12rem}.sm\:ml-48{margin-left:12rem}.sm\:mt-52{margin-top:13rem}.sm\:mr-52{margin-right:13rem}.sm\:mb-52{margin-bottom:13rem}.sm\:ml-52{margin-left:13rem}.sm\:mt-56{margin-top:14rem}.sm\:mr-56{margin-right:14rem}.sm\:mb-56{margin-bottom:14rem}.sm\:ml-56{margin-left:14rem}.sm\:mt-60{margin-top:15rem}.sm\:mr-60{margin-right:15rem}.sm\:mb-60{margin-bottom:15rem}.sm\:ml-60{margin-left:15rem}.sm\:mt-64{margin-top:16rem}.sm\:mr-64{margin-right:16rem}.sm\:mb-64{margin-bottom:16rem}.sm\:ml-64{margin-left:16rem}.sm\:mt-72{margin-top:18rem}.sm\:mr-72{margin-right:18rem}.sm\:mb-72{margin-bottom:18rem}.sm\:ml-72{margin-left:18rem}.sm\:mt-80{margin-top:20rem}.sm\:mr-80{margin-right:20rem}.sm\:mb-80{margin-bottom:20rem}.sm\:ml-80{margin-left:20rem}.sm\:mt-96{margin-top:24rem}.sm\:mr-96{margin-right:24rem}.sm\:mb-96{margin-bottom:24rem}.sm\:ml-96{margin-left:24rem}.sm\:mt-auto{margin-top:auto}.sm\:mr-auto{margin-right:auto}.sm\:mb-auto{margin-bottom:auto}.sm\:ml-auto{margin-left:auto}.sm\:mt-px{margin-top:1px}.sm\:mr-px{margin-right:1px}.sm\:mb-px{margin-bottom:1px}.sm\:ml-px{margin-left:1px}.sm\:mt-0\.5{margin-top:.125rem}.sm\:mr-0\.5{margin-right:.125rem}.sm\:mb-0\.5{margin-bottom:.125rem}.sm\:ml-0\.5{margin-left:.125rem}.sm\:mt-1\.5{margin-top:.375rem}.sm\:mr-1\.5{margin-right:.375rem}.sm\:mb-1\.5{margin-bottom:.375rem}.sm\:ml-1\.5{margin-left:.375rem}.sm\:mt-2\.5{margin-top:.625rem}.sm\:mr-2\.5{margin-right:.625rem}.sm\:mb-2\.5{margin-bottom:.625rem}.sm\:ml-2\.5{margin-left:.625rem}.sm\:mt-3\.5{margin-top:.875rem}.sm\:mr-3\.5{margin-right:.875rem}.sm\:mb-3\.5{margin-bottom:.875rem}.sm\:ml-3\.5{margin-left:.875rem}.sm\:mt-1\/2{margin-top:50%}.sm\:mr-1\/2{margin-right:50%}.sm\:mb-1\/2{margin-bottom:50%}.sm\:ml-1\/2{margin-left:50%}.sm\:mt-1\/3{margin-top:33.333333%}.sm\:mr-1\/3{margin-right:33.333333%}.sm\:mb-1\/3{margin-bottom:33.333333%}.sm\:ml-1\/3{margin-left:33.333333%}.sm\:mt-2\/3{margin-top:66.666667%}.sm\:mr-2\/3{margin-right:66.666667%}.sm\:mb-2\/3{margin-bottom:66.666667%}.sm\:ml-2\/3{margin-left:66.666667%}.sm\:mt-1\/4{margin-top:25%}.sm\:mr-1\/4{margin-right:25%}.sm\:mb-1\/4{margin-bottom:25%}.sm\:ml-1\/4{margin-left:25%}.sm\:mt-2\/4{margin-top:50%}.sm\:mr-2\/4{margin-right:50%}.sm\:mb-2\/4{margin-bottom:50%}.sm\:ml-2\/4{margin-left:50%}.sm\:mt-3\/4{margin-top:75%}.sm\:mr-3\/4{margin-right:75%}.sm\:mb-3\/4{margin-bottom:75%}.sm\:ml-3\/4{margin-left:75%}.sm\:mt-1\/5{margin-top:20%}.sm\:mr-1\/5{margin-right:20%}.sm\:mb-1\/5{margin-bottom:20%}.sm\:ml-1\/5{margin-left:20%}.sm\:mt-2\/5{margin-top:40%}.sm\:mr-2\/5{margin-right:40%}.sm\:mb-2\/5{margin-bottom:40%}.sm\:ml-2\/5{margin-left:40%}.sm\:mt-3\/5{margin-top:60%}.sm\:mr-3\/5{margin-right:60%}.sm\:mb-3\/5{margin-bottom:60%}.sm\:ml-3\/5{margin-left:60%}.sm\:mt-4\/5{margin-top:80%}.sm\:mr-4\/5{margin-right:80%}.sm\:mb-4\/5{margin-bottom:80%}.sm\:ml-4\/5{margin-left:80%}.sm\:mt-1\/6{margin-top:16.666667%}.sm\:mr-1\/6{margin-right:16.666667%}.sm\:mb-1\/6{margin-bottom:16.666667%}.sm\:ml-1\/6{margin-left:16.666667%}.sm\:mt-2\/6{margin-top:33.333333%}.sm\:mr-2\/6{margin-right:33.333333%}.sm\:mb-2\/6{margin-bottom:33.333333%}.sm\:ml-2\/6{margin-left:33.333333%}.sm\:mt-3\/6{margin-top:50%}.sm\:mr-3\/6{margin-right:50%}.sm\:mb-3\/6{margin-bottom:50%}.sm\:ml-3\/6{margin-left:50%}.sm\:mt-4\/6{margin-top:66.666667%}.sm\:mr-4\/6{margin-right:66.666667%}.sm\:mb-4\/6{margin-bottom:66.666667%}.sm\:ml-4\/6{margin-left:66.666667%}.sm\:mt-5\/6{margin-top:83.333333%}.sm\:mr-5\/6{margin-right:83.333333%}.sm\:mb-5\/6{margin-bottom:83.333333%}.sm\:ml-5\/6{margin-left:83.333333%}.sm\:mt-1\/12{margin-top:8.333333%}.sm\:mr-1\/12{margin-right:8.333333%}.sm\:mb-1\/12{margin-bottom:8.333333%}.sm\:ml-1\/12{margin-left:8.333333%}.sm\:mt-2\/12{margin-top:16.666667%}.sm\:mr-2\/12{margin-right:16.666667%}.sm\:mb-2\/12{margin-bottom:16.666667%}.sm\:ml-2\/12{margin-left:16.666667%}.sm\:mt-3\/12{margin-top:25%}.sm\:mr-3\/12{margin-right:25%}.sm\:mb-3\/12{margin-bottom:25%}.sm\:ml-3\/12{margin-left:25%}.sm\:mt-4\/12{margin-top:33.333333%}.sm\:mr-4\/12{margin-right:33.333333%}.sm\:mb-4\/12{margin-bottom:33.333333%}.sm\:ml-4\/12{margin-left:33.333333%}.sm\:mt-5\/12{margin-top:41.666667%}.sm\:mr-5\/12{margin-right:41.666667%}.sm\:mb-5\/12{margin-bottom:41.666667%}.sm\:ml-5\/12{margin-left:41.666667%}.sm\:mt-6\/12{margin-top:50%}.sm\:mr-6\/12{margin-right:50%}.sm\:mb-6\/12{margin-bottom:50%}.sm\:ml-6\/12{margin-left:50%}.sm\:mt-7\/12{margin-top:58.333333%}.sm\:mr-7\/12{margin-right:58.333333%}.sm\:mb-7\/12{margin-bottom:58.333333%}.sm\:ml-7\/12{margin-left:58.333333%}.sm\:mt-8\/12{margin-top:66.666667%}.sm\:mr-8\/12{margin-right:66.666667%}.sm\:mb-8\/12{margin-bottom:66.666667%}.sm\:ml-8\/12{margin-left:66.666667%}.sm\:mt-9\/12{margin-top:75%}.sm\:mr-9\/12{margin-right:75%}.sm\:mb-9\/12{margin-bottom:75%}.sm\:ml-9\/12{margin-left:75%}.sm\:mt-10\/12{margin-top:83.333333%}.sm\:mr-10\/12{margin-right:83.333333%}.sm\:mb-10\/12{margin-bottom:83.333333%}.sm\:ml-10\/12{margin-left:83.333333%}.sm\:mt-11\/12{margin-top:91.666667%}.sm\:mr-11\/12{margin-right:91.666667%}.sm\:mb-11\/12{margin-bottom:91.666667%}.sm\:ml-11\/12{margin-left:91.666667%}.sm\:mt-full{margin-top:100%}.sm\:mr-full{margin-right:100%}.sm\:mb-full{margin-bottom:100%}.sm\:ml-full{margin-left:100%}.sm\:-mt-1{margin-top:-.25rem}.sm\:-mr-1{margin-right:-.25rem}.sm\:-mb-1{margin-bottom:-.25rem}.sm\:-ml-1{margin-left:-.25rem}.sm\:-mt-2{margin-top:-.5rem}.sm\:-mr-2{margin-right:-.5rem}.sm\:-mb-2{margin-bottom:-.5rem}.sm\:-ml-2{margin-left:-.5rem}.sm\:-mt-3{margin-top:-.75rem}.sm\:-mr-3{margin-right:-.75rem}.sm\:-mb-3{margin-bottom:-.75rem}.sm\:-ml-3{margin-left:-.75rem}.sm\:-mt-4{margin-top:-1rem}.sm\:-mr-4{margin-right:-1rem}.sm\:-mb-4{margin-bottom:-1rem}.sm\:-ml-4{margin-left:-1rem}.sm\:-mt-5{margin-top:-1.25rem}.sm\:-mr-5{margin-right:-1.25rem}.sm\:-mb-5{margin-bottom:-1.25rem}.sm\:-ml-5{margin-left:-1.25rem}.sm\:-mt-6{margin-top:-1.5rem}.sm\:-mr-6{margin-right:-1.5rem}.sm\:-mb-6{margin-bottom:-1.5rem}.sm\:-ml-6{margin-left:-1.5rem}.sm\:-mt-7{margin-top:-1.75rem}.sm\:-mr-7{margin-right:-1.75rem}.sm\:-mb-7{margin-bottom:-1.75rem}.sm\:-ml-7{margin-left:-1.75rem}.sm\:-mt-8{margin-top:-2rem}.sm\:-mr-8{margin-right:-2rem}.sm\:-mb-8{margin-bottom:-2rem}.sm\:-ml-8{margin-left:-2rem}.sm\:-mt-9{margin-top:-2.25rem}.sm\:-mr-9{margin-right:-2.25rem}.sm\:-mb-9{margin-bottom:-2.25rem}.sm\:-ml-9{margin-left:-2.25rem}.sm\:-mt-10{margin-top:-2.5rem}.sm\:-mr-10{margin-right:-2.5rem}.sm\:-mb-10{margin-bottom:-2.5rem}.sm\:-ml-10{margin-left:-2.5rem}.sm\:-mt-11{margin-top:-2.75rem}.sm\:-mr-11{margin-right:-2.75rem}.sm\:-mb-11{margin-bottom:-2.75rem}.sm\:-ml-11{margin-left:-2.75rem}.sm\:-mt-12{margin-top:-3rem}.sm\:-mr-12{margin-right:-3rem}.sm\:-mb-12{margin-bottom:-3rem}.sm\:-ml-12{margin-left:-3rem}.sm\:-mt-13{margin-top:-3.25rem}.sm\:-mr-13{margin-right:-3.25rem}.sm\:-mb-13{margin-bottom:-3.25rem}.sm\:-ml-13{margin-left:-3.25rem}.sm\:-mt-14{margin-top:-3.5rem}.sm\:-mr-14{margin-right:-3.5rem}.sm\:-mb-14{margin-bottom:-3.5rem}.sm\:-ml-14{margin-left:-3.5rem}.sm\:-mt-15{margin-top:-3.75rem}.sm\:-mr-15{margin-right:-3.75rem}.sm\:-mb-15{margin-bottom:-3.75rem}.sm\:-ml-15{margin-left:-3.75rem}.sm\:-mt-16{margin-top:-4rem}.sm\:-mr-16{margin-right:-4rem}.sm\:-mb-16{margin-bottom:-4rem}.sm\:-ml-16{margin-left:-4rem}.sm\:-mt-20{margin-top:-5rem}.sm\:-mr-20{margin-right:-5rem}.sm\:-mb-20{margin-bottom:-5rem}.sm\:-ml-20{margin-left:-5rem}.sm\:-mt-24{margin-top:-6rem}.sm\:-mr-24{margin-right:-6rem}.sm\:-mb-24{margin-bottom:-6rem}.sm\:-ml-24{margin-left:-6rem}.sm\:-mt-28{margin-top:-7rem}.sm\:-mr-28{margin-right:-7rem}.sm\:-mb-28{margin-bottom:-7rem}.sm\:-ml-28{margin-left:-7rem}.sm\:-mt-32{margin-top:-8rem}.sm\:-mr-32{margin-right:-8rem}.sm\:-mb-32{margin-bottom:-8rem}.sm\:-ml-32{margin-left:-8rem}.sm\:-mt-36{margin-top:-9rem}.sm\:-mr-36{margin-right:-9rem}.sm\:-mb-36{margin-bottom:-9rem}.sm\:-ml-36{margin-left:-9rem}.sm\:-mt-40{margin-top:-10rem}.sm\:-mr-40{margin-right:-10rem}.sm\:-mb-40{margin-bottom:-10rem}.sm\:-ml-40{margin-left:-10rem}.sm\:-mt-44{margin-top:-11rem}.sm\:-mr-44{margin-right:-11rem}.sm\:-mb-44{margin-bottom:-11rem}.sm\:-ml-44{margin-left:-11rem}.sm\:-mt-48{margin-top:-12rem}.sm\:-mr-48{margin-right:-12rem}.sm\:-mb-48{margin-bottom:-12rem}.sm\:-ml-48{margin-left:-12rem}.sm\:-mt-52{margin-top:-13rem}.sm\:-mr-52{margin-right:-13rem}.sm\:-mb-52{margin-bottom:-13rem}.sm\:-ml-52{margin-left:-13rem}.sm\:-mt-56{margin-top:-14rem}.sm\:-mr-56{margin-right:-14rem}.sm\:-mb-56{margin-bottom:-14rem}.sm\:-ml-56{margin-left:-14rem}.sm\:-mt-60{margin-top:-15rem}.sm\:-mr-60{margin-right:-15rem}.sm\:-mb-60{margin-bottom:-15rem}.sm\:-ml-60{margin-left:-15rem}.sm\:-mt-64{margin-top:-16rem}.sm\:-mr-64{margin-right:-16rem}.sm\:-mb-64{margin-bottom:-16rem}.sm\:-ml-64{margin-left:-16rem}.sm\:-mt-72{margin-top:-18rem}.sm\:-mr-72{margin-right:-18rem}.sm\:-mb-72{margin-bottom:-18rem}.sm\:-ml-72{margin-left:-18rem}.sm\:-mt-80{margin-top:-20rem}.sm\:-mr-80{margin-right:-20rem}.sm\:-mb-80{margin-bottom:-20rem}.sm\:-ml-80{margin-left:-20rem}.sm\:-mt-96{margin-top:-24rem}.sm\:-mr-96{margin-right:-24rem}.sm\:-mb-96{margin-bottom:-24rem}.sm\:-ml-96{margin-left:-24rem}.sm\:-mt-px{margin-top:-1px}.sm\:-mr-px{margin-right:-1px}.sm\:-mb-px{margin-bottom:-1px}.sm\:-ml-px{margin-left:-1px}.sm\:-mt-0\.5{margin-top:-.125rem}.sm\:-mr-0\.5{margin-right:-.125rem}.sm\:-mb-0\.5{margin-bottom:-.125rem}.sm\:-ml-0\.5{margin-left:-.125rem}.sm\:-mt-1\.5{margin-top:-.375rem}.sm\:-mr-1\.5{margin-right:-.375rem}.sm\:-mb-1\.5{margin-bottom:-.375rem}.sm\:-ml-1\.5{margin-left:-.375rem}.sm\:-mt-2\.5{margin-top:-.625rem}.sm\:-mr-2\.5{margin-right:-.625rem}.sm\:-mb-2\.5{margin-bottom:-.625rem}.sm\:-ml-2\.5{margin-left:-.625rem}.sm\:-mt-3\.5{margin-top:-.875rem}.sm\:-mr-3\.5{margin-right:-.875rem}.sm\:-mb-3\.5{margin-bottom:-.875rem}.sm\:-ml-3\.5{margin-left:-.875rem}.sm\:-mt-1\/2{margin-top:-50%}.sm\:-mr-1\/2{margin-right:-50%}.sm\:-mb-1\/2{margin-bottom:-50%}.sm\:-ml-1\/2{margin-left:-50%}.sm\:-mt-1\/3{margin-top:-33.33333%}.sm\:-mr-1\/3{margin-right:-33.33333%}.sm\:-mb-1\/3{margin-bottom:-33.33333%}.sm\:-ml-1\/3{margin-left:-33.33333%}.sm\:-mt-2\/3{margin-top:-66.66667%}.sm\:-mr-2\/3{margin-right:-66.66667%}.sm\:-mb-2\/3{margin-bottom:-66.66667%}.sm\:-ml-2\/3{margin-left:-66.66667%}.sm\:-mt-1\/4{margin-top:-25%}.sm\:-mr-1\/4{margin-right:-25%}.sm\:-mb-1\/4{margin-bottom:-25%}.sm\:-ml-1\/4{margin-left:-25%}.sm\:-mt-2\/4{margin-top:-50%}.sm\:-mr-2\/4{margin-right:-50%}.sm\:-mb-2\/4{margin-bottom:-50%}.sm\:-ml-2\/4{margin-left:-50%}.sm\:-mt-3\/4{margin-top:-75%}.sm\:-mr-3\/4{margin-right:-75%}.sm\:-mb-3\/4{margin-bottom:-75%}.sm\:-ml-3\/4{margin-left:-75%}.sm\:-mt-1\/5{margin-top:-20%}.sm\:-mr-1\/5{margin-right:-20%}.sm\:-mb-1\/5{margin-bottom:-20%}.sm\:-ml-1\/5{margin-left:-20%}.sm\:-mt-2\/5{margin-top:-40%}.sm\:-mr-2\/5{margin-right:-40%}.sm\:-mb-2\/5{margin-bottom:-40%}.sm\:-ml-2\/5{margin-left:-40%}.sm\:-mt-3\/5{margin-top:-60%}.sm\:-mr-3\/5{margin-right:-60%}.sm\:-mb-3\/5{margin-bottom:-60%}.sm\:-ml-3\/5{margin-left:-60%}.sm\:-mt-4\/5{margin-top:-80%}.sm\:-mr-4\/5{margin-right:-80%}.sm\:-mb-4\/5{margin-bottom:-80%}.sm\:-ml-4\/5{margin-left:-80%}.sm\:-mt-1\/6{margin-top:-16.66667%}.sm\:-mr-1\/6{margin-right:-16.66667%}.sm\:-mb-1\/6{margin-bottom:-16.66667%}.sm\:-ml-1\/6{margin-left:-16.66667%}.sm\:-mt-2\/6{margin-top:-33.33333%}.sm\:-mr-2\/6{margin-right:-33.33333%}.sm\:-mb-2\/6{margin-bottom:-33.33333%}.sm\:-ml-2\/6{margin-left:-33.33333%}.sm\:-mt-3\/6{margin-top:-50%}.sm\:-mr-3\/6{margin-right:-50%}.sm\:-mb-3\/6{margin-bottom:-50%}.sm\:-ml-3\/6{margin-left:-50%}.sm\:-mt-4\/6{margin-top:-66.66667%}.sm\:-mr-4\/6{margin-right:-66.66667%}.sm\:-mb-4\/6{margin-bottom:-66.66667%}.sm\:-ml-4\/6{margin-left:-66.66667%}.sm\:-mt-5\/6{margin-top:-83.33333%}.sm\:-mr-5\/6{margin-right:-83.33333%}.sm\:-mb-5\/6{margin-bottom:-83.33333%}.sm\:-ml-5\/6{margin-left:-83.33333%}.sm\:-mt-1\/12{margin-top:-8.33333%}.sm\:-mr-1\/12{margin-right:-8.33333%}.sm\:-mb-1\/12{margin-bottom:-8.33333%}.sm\:-ml-1\/12{margin-left:-8.33333%}.sm\:-mt-2\/12{margin-top:-16.66667%}.sm\:-mr-2\/12{margin-right:-16.66667%}.sm\:-mb-2\/12{margin-bottom:-16.66667%}.sm\:-ml-2\/12{margin-left:-16.66667%}.sm\:-mt-3\/12{margin-top:-25%}.sm\:-mr-3\/12{margin-right:-25%}.sm\:-mb-3\/12{margin-bottom:-25%}.sm\:-ml-3\/12{margin-left:-25%}.sm\:-mt-4\/12{margin-top:-33.33333%}.sm\:-mr-4\/12{margin-right:-33.33333%}.sm\:-mb-4\/12{margin-bottom:-33.33333%}.sm\:-ml-4\/12{margin-left:-33.33333%}.sm\:-mt-5\/12{margin-top:-41.66667%}.sm\:-mr-5\/12{margin-right:-41.66667%}.sm\:-mb-5\/12{margin-bottom:-41.66667%}.sm\:-ml-5\/12{margin-left:-41.66667%}.sm\:-mt-6\/12{margin-top:-50%}.sm\:-mr-6\/12{margin-right:-50%}.sm\:-mb-6\/12{margin-bottom:-50%}.sm\:-ml-6\/12{margin-left:-50%}.sm\:-mt-7\/12{margin-top:-58.33333%}.sm\:-mr-7\/12{margin-right:-58.33333%}.sm\:-mb-7\/12{margin-bottom:-58.33333%}.sm\:-ml-7\/12{margin-left:-58.33333%}.sm\:-mt-8\/12{margin-top:-66.66667%}.sm\:-mr-8\/12{margin-right:-66.66667%}.sm\:-mb-8\/12{margin-bottom:-66.66667%}.sm\:-ml-8\/12{margin-left:-66.66667%}.sm\:-mt-9\/12{margin-top:-75%}.sm\:-mr-9\/12{margin-right:-75%}.sm\:-mb-9\/12{margin-bottom:-75%}.sm\:-ml-9\/12{margin-left:-75%}.sm\:-mt-10\/12{margin-top:-83.33333%}.sm\:-mr-10\/12{margin-right:-83.33333%}.sm\:-mb-10\/12{margin-bottom:-83.33333%}.sm\:-ml-10\/12{margin-left:-83.33333%}.sm\:-mt-11\/12{margin-top:-91.66667%}.sm\:-mr-11\/12{margin-right:-91.66667%}.sm\:-mb-11\/12{margin-bottom:-91.66667%}.sm\:-ml-11\/12{margin-left:-91.66667%}.sm\:-mt-full{margin-top:-100%}.sm\:-mr-full{margin-right:-100%}.sm\:-mb-full{margin-bottom:-100%}.sm\:-ml-full{margin-left:-100%}.sm\:max-h-0{max-height:0}.sm\:max-h-1{max-height:.25rem}.sm\:max-h-2{max-height:.5rem}.sm\:max-h-3{max-height:.75rem}.sm\:max-h-4{max-height:1rem}.sm\:max-h-5{max-height:1.25rem}.sm\:max-h-6{max-height:1.5rem}.sm\:max-h-7{max-height:1.75rem}.sm\:max-h-8{max-height:2rem}.sm\:max-h-9{max-height:2.25rem}.sm\:max-h-10{max-height:2.5rem}.sm\:max-h-11{max-height:2.75rem}.sm\:max-h-12{max-height:3rem}.sm\:max-h-13{max-height:3.25rem}.sm\:max-h-14{max-height:3.5rem}.sm\:max-h-15{max-height:3.75rem}.sm\:max-h-16{max-height:4rem}.sm\:max-h-20{max-height:5rem}.sm\:max-h-24{max-height:6rem}.sm\:max-h-28{max-height:7rem}.sm\:max-h-32{max-height:8rem}.sm\:max-h-36{max-height:9rem}.sm\:max-h-40{max-height:10rem}.sm\:max-h-44{max-height:11rem}.sm\:max-h-48{max-height:12rem}.sm\:max-h-52{max-height:13rem}.sm\:max-h-56{max-height:14rem}.sm\:max-h-60{max-height:15rem}.sm\:max-h-64{max-height:16rem}.sm\:max-h-72{max-height:18rem}.sm\:max-h-80{max-height:20rem}.sm\:max-h-96{max-height:24rem}.sm\:max-h-screen{max-height:100vh}.sm\:max-h-px{max-height:1px}.sm\:max-h-0\.5{max-height:.125rem}.sm\:max-h-1\.5{max-height:.375rem}.sm\:max-h-2\.5{max-height:.625rem}.sm\:max-h-3\.5{max-height:.875rem}.sm\:max-h-1\/2{max-height:50%}.sm\:max-h-1\/3{max-height:33.333333%}.sm\:max-h-2\/3{max-height:66.666667%}.sm\:max-h-1\/4{max-height:25%}.sm\:max-h-2\/4{max-height:50%}.sm\:max-h-3\/4{max-height:75%}.sm\:max-h-1\/5{max-height:20%}.sm\:max-h-2\/5{max-height:40%}.sm\:max-h-3\/5{max-height:60%}.sm\:max-h-4\/5{max-height:80%}.sm\:max-h-1\/6{max-height:16.666667%}.sm\:max-h-2\/6{max-height:33.333333%}.sm\:max-h-3\/6{max-height:50%}.sm\:max-h-4\/6{max-height:66.666667%}.sm\:max-h-5\/6{max-height:83.333333%}.sm\:max-h-1\/12{max-height:8.333333%}.sm\:max-h-2\/12{max-height:16.666667%}.sm\:max-h-3\/12{max-height:25%}.sm\:max-h-4\/12{max-height:33.333333%}.sm\:max-h-5\/12{max-height:41.666667%}.sm\:max-h-6\/12{max-height:50%}.sm\:max-h-7\/12{max-height:58.333333%}.sm\:max-h-8\/12{max-height:66.666667%}.sm\:max-h-9\/12{max-height:75%}.sm\:max-h-10\/12{max-height:83.333333%}.sm\:max-h-11\/12{max-height:91.666667%}.sm\:max-h-full{max-height:100%}.sm\:max-w-0{max-width:0}.sm\:max-w-none{max-width:none}.sm\:max-w-xs{max-width:20rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-xl{max-width:36rem}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-3xl{max-width:48rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-5xl{max-width:64rem}.sm\:max-w-6xl{max-width:72rem}.sm\:max-w-7xl{max-width:80rem}.sm\:max-w-full{max-width:100%}.sm\:max-w-min-content{max-width:-webkit-min-content;max-width:-moz-min-content;max-width:min-content}.sm\:max-w-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.sm\:max-w-prose{max-width:65ch}.sm\:max-w-screen-sm{max-width:640px}.sm\:max-w-screen-md{max-width:768px}.sm\:max-w-screen-lg{max-width:1024px}.sm\:max-w-screen-xl{max-width:1280px}.sm\:min-h-0{min-height:0}.sm\:min-h-full{min-height:100%}.sm\:min-h-screen{min-height:100vh}.sm\:min-w-0{min-width:0}.sm\:min-w-full{min-width:100%}.sm\:min-w-min-content{min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.sm\:min-w-max-content{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.sm\:object-contain{-o-object-fit:contain;object-fit:contain}.sm\:object-cover{-o-object-fit:cover;object-fit:cover}.sm\:object-fill{-o-object-fit:fill;object-fit:fill}.sm\:object-none{-o-object-fit:none;object-fit:none}.sm\:object-scale-down{-o-object-fit:scale-down;object-fit:scale-down}.sm\:object-bottom{-o-object-position:bottom;object-position:bottom}.sm\:object-center{-o-object-position:center;object-position:center}.sm\:object-left{-o-object-position:left;object-position:left}.sm\:object-left-bottom{-o-object-position:left bottom;object-position:left bottom}.sm\:object-left-top{-o-object-position:left top;object-position:left top}.sm\:object-right{-o-object-position:right;object-position:right}.sm\:object-right-bottom{-o-object-position:right bottom;object-position:right bottom}.sm\:object-right-top{-o-object-position:right top;object-position:right top}.sm\:object-top{-o-object-position:top;object-position:top}.sm\:opacity-0{opacity:0}.sm\:opacity-25{opacity:.25}.sm\:opacity-50{opacity:.5}.sm\:opacity-75{opacity:.75}.sm\:opacity-100{opacity:1}.sm\:hover\:opacity-0:hover{opacity:0}.sm\:hover\:opacity-25:hover{opacity:.25}.sm\:hover\:opacity-50:hover{opacity:.5}.sm\:hover\:opacity-75:hover{opacity:.75}.sm\:hover\:opacity-100:hover{opacity:1}.sm\:focus\:opacity-0:focus{opacity:0}.sm\:focus\:opacity-25:focus{opacity:.25}.sm\:focus\:opacity-50:focus{opacity:.5}.sm\:focus\:opacity-75:focus{opacity:.75}.sm\:focus\:opacity-100:focus{opacity:1}.sm\:outline-none{outline:0}.sm\:focus\:outline-none:focus{outline:0}.sm\:overflow-auto{overflow:auto}.sm\:overflow-hidden{overflow:hidden}.sm\:overflow-visible{overflow:visible}.sm\:overflow-scroll{overflow:scroll}.sm\:overflow-x-auto{overflow-x:auto}.sm\:overflow-y-auto{overflow-y:auto}.sm\:overflow-x-hidden{overflow-x:hidden}.sm\:overflow-y-hidden{overflow-y:hidden}.sm\:overflow-x-visible{overflow-x:visible}.sm\:overflow-y-visible{overflow-y:visible}.sm\:overflow-x-scroll{overflow-x:scroll}.sm\:overflow-y-scroll{overflow-y:scroll}.sm\:scrolling-touch{-webkit-overflow-scrolling:touch}.sm\:scrolling-auto{-webkit-overflow-scrolling:auto}.sm\:p-0{padding:0}.sm\:p-1{padding:.25rem}.sm\:p-2{padding:.5rem}.sm\:p-3{padding:.75rem}.sm\:p-4{padding:1rem}.sm\:p-5{padding:1.25rem}.sm\:p-6{padding:1.5rem}.sm\:p-7{padding:1.75rem}.sm\:p-8{padding:2rem}.sm\:p-9{padding:2.25rem}.sm\:p-10{padding:2.5rem}.sm\:p-11{padding:2.75rem}.sm\:p-12{padding:3rem}.sm\:p-13{padding:3.25rem}.sm\:p-14{padding:3.5rem}.sm\:p-15{padding:3.75rem}.sm\:p-16{padding:4rem}.sm\:p-20{padding:5rem}.sm\:p-24{padding:6rem}.sm\:p-28{padding:7rem}.sm\:p-32{padding:8rem}.sm\:p-36{padding:9rem}.sm\:p-40{padding:10rem}.sm\:p-44{padding:11rem}.sm\:p-48{padding:12rem}.sm\:p-52{padding:13rem}.sm\:p-56{padding:14rem}.sm\:p-60{padding:15rem}.sm\:p-64{padding:16rem}.sm\:p-72{padding:18rem}.sm\:p-80{padding:20rem}.sm\:p-96{padding:24rem}.sm\:p-px{padding:1px}.sm\:p-0\.5{padding:.125rem}.sm\:p-1\.5{padding:.375rem}.sm\:p-2\.5{padding:.625rem}.sm\:p-3\.5{padding:.875rem}.sm\:p-1\/2{padding:50%}.sm\:p-1\/3{padding:33.333333%}.sm\:p-2\/3{padding:66.666667%}.sm\:p-1\/4{padding:25%}.sm\:p-2\/4{padding:50%}.sm\:p-3\/4{padding:75%}.sm\:p-1\/5{padding:20%}.sm\:p-2\/5{padding:40%}.sm\:p-3\/5{padding:60%}.sm\:p-4\/5{padding:80%}.sm\:p-1\/6{padding:16.666667%}.sm\:p-2\/6{padding:33.333333%}.sm\:p-3\/6{padding:50%}.sm\:p-4\/6{padding:66.666667%}.sm\:p-5\/6{padding:83.333333%}.sm\:p-1\/12{padding:8.333333%}.sm\:p-2\/12{padding:16.666667%}.sm\:p-3\/12{padding:25%}.sm\:p-4\/12{padding:33.333333%}.sm\:p-5\/12{padding:41.666667%}.sm\:p-6\/12{padding:50%}.sm\:p-7\/12{padding:58.333333%}.sm\:p-8\/12{padding:66.666667%}.sm\:p-9\/12{padding:75%}.sm\:p-10\/12{padding:83.333333%}.sm\:p-11\/12{padding:91.666667%}.sm\:p-full{padding:100%}.sm\:py-0{padding-top:0;padding-bottom:0}.sm\:px-0{padding-left:0;padding-right:0}.sm\:py-1{padding-top:.25rem;padding-bottom:.25rem}.sm\:px-1{padding-left:.25rem;padding-right:.25rem}.sm\:py-2{padding-top:.5rem;padding-bottom:.5rem}.sm\:px-2{padding-left:.5rem;padding-right:.5rem}.sm\:py-3{padding-top:.75rem;padding-bottom:.75rem}.sm\:px-3{padding-left:.75rem;padding-right:.75rem}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.sm\:px-5{padding-left:1.25rem;padding-right:1.25rem}.sm\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:py-7{padding-top:1.75rem;padding-bottom:1.75rem}.sm\:px-7{padding-left:1.75rem;padding-right:1.75rem}.sm\:py-8{padding-top:2rem;padding-bottom:2rem}.sm\:px-8{padding-left:2rem;padding-right:2rem}.sm\:py-9{padding-top:2.25rem;padding-bottom:2.25rem}.sm\:px-9{padding-left:2.25rem;padding-right:2.25rem}.sm\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.sm\:px-10{padding-left:2.5rem;padding-right:2.5rem}.sm\:py-11{padding-top:2.75rem;padding-bottom:2.75rem}.sm\:px-11{padding-left:2.75rem;padding-right:2.75rem}.sm\:py-12{padding-top:3rem;padding-bottom:3rem}.sm\:px-12{padding-left:3rem;padding-right:3rem}.sm\:py-13{padding-top:3.25rem;padding-bottom:3.25rem}.sm\:px-13{padding-left:3.25rem;padding-right:3.25rem}.sm\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}.sm\:px-14{padding-left:3.5rem;padding-right:3.5rem}.sm\:py-15{padding-top:3.75rem;padding-bottom:3.75rem}.sm\:px-15{padding-left:3.75rem;padding-right:3.75rem}.sm\:py-16{padding-top:4rem;padding-bottom:4rem}.sm\:px-16{padding-left:4rem;padding-right:4rem}.sm\:py-20{padding-top:5rem;padding-bottom:5rem}.sm\:px-20{padding-left:5rem;padding-right:5rem}.sm\:py-24{padding-top:6rem;padding-bottom:6rem}.sm\:px-24{padding-left:6rem;padding-right:6rem}.sm\:py-28{padding-top:7rem;padding-bottom:7rem}.sm\:px-28{padding-left:7rem;padding-right:7rem}.sm\:py-32{padding-top:8rem;padding-bottom:8rem}.sm\:px-32{padding-left:8rem;padding-right:8rem}.sm\:py-36{padding-top:9rem;padding-bottom:9rem}.sm\:px-36{padding-left:9rem;padding-right:9rem}.sm\:py-40{padding-top:10rem;padding-bottom:10rem}.sm\:px-40{padding-left:10rem;padding-right:10rem}.sm\:py-44{padding-top:11rem;padding-bottom:11rem}.sm\:px-44{padding-left:11rem;padding-right:11rem}.sm\:py-48{padding-top:12rem;padding-bottom:12rem}.sm\:px-48{padding-left:12rem;padding-right:12rem}.sm\:py-52{padding-top:13rem;padding-bottom:13rem}.sm\:px-52{padding-left:13rem;padding-right:13rem}.sm\:py-56{padding-top:14rem;padding-bottom:14rem}.sm\:px-56{padding-left:14rem;padding-right:14rem}.sm\:py-60{padding-top:15rem;padding-bottom:15rem}.sm\:px-60{padding-left:15rem;padding-right:15rem}.sm\:py-64{padding-top:16rem;padding-bottom:16rem}.sm\:px-64{padding-left:16rem;padding-right:16rem}.sm\:py-72{padding-top:18rem;padding-bottom:18rem}.sm\:px-72{padding-left:18rem;padding-right:18rem}.sm\:py-80{padding-top:20rem;padding-bottom:20rem}.sm\:px-80{padding-left:20rem;padding-right:20rem}.sm\:py-96{padding-top:24rem;padding-bottom:24rem}.sm\:px-96{padding-left:24rem;padding-right:24rem}.sm\:py-px{padding-top:1px;padding-bottom:1px}.sm\:px-px{padding-left:1px;padding-right:1px}.sm\:py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.sm\:px-0\.5{padding-left:.125rem;padding-right:.125rem}.sm\:py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.sm\:px-1\.5{padding-left:.375rem;padding-right:.375rem}.sm\:py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.sm\:px-2\.5{padding-left:.625rem;padding-right:.625rem}.sm\:py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.sm\:px-3\.5{padding-left:.875rem;padding-right:.875rem}.sm\:py-1\/2{padding-top:50%;padding-bottom:50%}.sm\:px-1\/2{padding-left:50%;padding-right:50%}.sm\:py-1\/3{padding-top:33.333333%;padding-bottom:33.333333%}.sm\:px-1\/3{padding-left:33.333333%;padding-right:33.333333%}.sm\:py-2\/3{padding-top:66.666667%;padding-bottom:66.666667%}.sm\:px-2\/3{padding-left:66.666667%;padding-right:66.666667%}.sm\:py-1\/4{padding-top:25%;padding-bottom:25%}.sm\:px-1\/4{padding-left:25%;padding-right:25%}.sm\:py-2\/4{padding-top:50%;padding-bottom:50%}.sm\:px-2\/4{padding-left:50%;padding-right:50%}.sm\:py-3\/4{padding-top:75%;padding-bottom:75%}.sm\:px-3\/4{padding-left:75%;padding-right:75%}.sm\:py-1\/5{padding-top:20%;padding-bottom:20%}.sm\:px-1\/5{padding-left:20%;padding-right:20%}.sm\:py-2\/5{padding-top:40%;padding-bottom:40%}.sm\:px-2\/5{padding-left:40%;padding-right:40%}.sm\:py-3\/5{padding-top:60%;padding-bottom:60%}.sm\:px-3\/5{padding-left:60%;padding-right:60%}.sm\:py-4\/5{padding-top:80%;padding-bottom:80%}.sm\:px-4\/5{padding-left:80%;padding-right:80%}.sm\:py-1\/6{padding-top:16.666667%;padding-bottom:16.666667%}.sm\:px-1\/6{padding-left:16.666667%;padding-right:16.666667%}.sm\:py-2\/6{padding-top:33.333333%;padding-bottom:33.333333%}.sm\:px-2\/6{padding-left:33.333333%;padding-right:33.333333%}.sm\:py-3\/6{padding-top:50%;padding-bottom:50%}.sm\:px-3\/6{padding-left:50%;padding-right:50%}.sm\:py-4\/6{padding-top:66.666667%;padding-bottom:66.666667%}.sm\:px-4\/6{padding-left:66.666667%;padding-right:66.666667%}.sm\:py-5\/6{padding-top:83.333333%;padding-bottom:83.333333%}.sm\:px-5\/6{padding-left:83.333333%;padding-right:83.333333%}.sm\:py-1\/12{padding-top:8.333333%;padding-bottom:8.333333%}.sm\:px-1\/12{padding-left:8.333333%;padding-right:8.333333%}.sm\:py-2\/12{padding-top:16.666667%;padding-bottom:16.666667%}.sm\:px-2\/12{padding-left:16.666667%;padding-right:16.666667%}.sm\:py-3\/12{padding-top:25%;padding-bottom:25%}.sm\:px-3\/12{padding-left:25%;padding-right:25%}.sm\:py-4\/12{padding-top:33.333333%;padding-bottom:33.333333%}.sm\:px-4\/12{padding-left:33.333333%;padding-right:33.333333%}.sm\:py-5\/12{padding-top:41.666667%;padding-bottom:41.666667%}.sm\:px-5\/12{padding-left:41.666667%;padding-right:41.666667%}.sm\:py-6\/12{padding-top:50%;padding-bottom:50%}.sm\:px-6\/12{padding-left:50%;padding-right:50%}.sm\:py-7\/12{padding-top:58.333333%;padding-bottom:58.333333%}.sm\:px-7\/12{padding-left:58.333333%;padding-right:58.333333%}.sm\:py-8\/12{padding-top:66.666667%;padding-bottom:66.666667%}.sm\:px-8\/12{padding-left:66.666667%;padding-right:66.666667%}.sm\:py-9\/12{padding-top:75%;padding-bottom:75%}.sm\:px-9\/12{padding-left:75%;padding-right:75%}.sm\:py-10\/12{padding-top:83.333333%;padding-bottom:83.333333%}.sm\:px-10\/12{padding-left:83.333333%;padding-right:83.333333%}.sm\:py-11\/12{padding-top:91.666667%;padding-bottom:91.666667%}.sm\:px-11\/12{padding-left:91.666667%;padding-right:91.666667%}.sm\:py-full{padding-top:100%;padding-bottom:100%}.sm\:px-full{padding-left:100%;padding-right:100%}.sm\:pt-0{padding-top:0}.sm\:pr-0{padding-right:0}.sm\:pb-0{padding-bottom:0}.sm\:pl-0{padding-left:0}.sm\:pt-1{padding-top:.25rem}.sm\:pr-1{padding-right:.25rem}.sm\:pb-1{padding-bottom:.25rem}.sm\:pl-1{padding-left:.25rem}.sm\:pt-2{padding-top:.5rem}.sm\:pr-2{padding-right:.5rem}.sm\:pb-2{padding-bottom:.5rem}.sm\:pl-2{padding-left:.5rem}.sm\:pt-3{padding-top:.75rem}.sm\:pr-3{padding-right:.75rem}.sm\:pb-3{padding-bottom:.75rem}.sm\:pl-3{padding-left:.75rem}.sm\:pt-4{padding-top:1rem}.sm\:pr-4{padding-right:1rem}.sm\:pb-4{padding-bottom:1rem}.sm\:pl-4{padding-left:1rem}.sm\:pt-5{padding-top:1.25rem}.sm\:pr-5{padding-right:1.25rem}.sm\:pb-5{padding-bottom:1.25rem}.sm\:pl-5{padding-left:1.25rem}.sm\:pt-6{padding-top:1.5rem}.sm\:pr-6{padding-right:1.5rem}.sm\:pb-6{padding-bottom:1.5rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pt-7{padding-top:1.75rem}.sm\:pr-7{padding-right:1.75rem}.sm\:pb-7{padding-bottom:1.75rem}.sm\:pl-7{padding-left:1.75rem}.sm\:pt-8{padding-top:2rem}.sm\:pr-8{padding-right:2rem}.sm\:pb-8{padding-bottom:2rem}.sm\:pl-8{padding-left:2rem}.sm\:pt-9{padding-top:2.25rem}.sm\:pr-9{padding-right:2.25rem}.sm\:pb-9{padding-bottom:2.25rem}.sm\:pl-9{padding-left:2.25rem}.sm\:pt-10{padding-top:2.5rem}.sm\:pr-10{padding-right:2.5rem}.sm\:pb-10{padding-bottom:2.5rem}.sm\:pl-10{padding-left:2.5rem}.sm\:pt-11{padding-top:2.75rem}.sm\:pr-11{padding-right:2.75rem}.sm\:pb-11{padding-bottom:2.75rem}.sm\:pl-11{padding-left:2.75rem}.sm\:pt-12{padding-top:3rem}.sm\:pr-12{padding-right:3rem}.sm\:pb-12{padding-bottom:3rem}.sm\:pl-12{padding-left:3rem}.sm\:pt-13{padding-top:3.25rem}.sm\:pr-13{padding-right:3.25rem}.sm\:pb-13{padding-bottom:3.25rem}.sm\:pl-13{padding-left:3.25rem}.sm\:pt-14{padding-top:3.5rem}.sm\:pr-14{padding-right:3.5rem}.sm\:pb-14{padding-bottom:3.5rem}.sm\:pl-14{padding-left:3.5rem}.sm\:pt-15{padding-top:3.75rem}.sm\:pr-15{padding-right:3.75rem}.sm\:pb-15{padding-bottom:3.75rem}.sm\:pl-15{padding-left:3.75rem}.sm\:pt-16{padding-top:4rem}.sm\:pr-16{padding-right:4rem}.sm\:pb-16{padding-bottom:4rem}.sm\:pl-16{padding-left:4rem}.sm\:pt-20{padding-top:5rem}.sm\:pr-20{padding-right:5rem}.sm\:pb-20{padding-bottom:5rem}.sm\:pl-20{padding-left:5rem}.sm\:pt-24{padding-top:6rem}.sm\:pr-24{padding-right:6rem}.sm\:pb-24{padding-bottom:6rem}.sm\:pl-24{padding-left:6rem}.sm\:pt-28{padding-top:7rem}.sm\:pr-28{padding-right:7rem}.sm\:pb-28{padding-bottom:7rem}.sm\:pl-28{padding-left:7rem}.sm\:pt-32{padding-top:8rem}.sm\:pr-32{padding-right:8rem}.sm\:pb-32{padding-bottom:8rem}.sm\:pl-32{padding-left:8rem}.sm\:pt-36{padding-top:9rem}.sm\:pr-36{padding-right:9rem}.sm\:pb-36{padding-bottom:9rem}.sm\:pl-36{padding-left:9rem}.sm\:pt-40{padding-top:10rem}.sm\:pr-40{padding-right:10rem}.sm\:pb-40{padding-bottom:10rem}.sm\:pl-40{padding-left:10rem}.sm\:pt-44{padding-top:11rem}.sm\:pr-44{padding-right:11rem}.sm\:pb-44{padding-bottom:11rem}.sm\:pl-44{padding-left:11rem}.sm\:pt-48{padding-top:12rem}.sm\:pr-48{padding-right:12rem}.sm\:pb-48{padding-bottom:12rem}.sm\:pl-48{padding-left:12rem}.sm\:pt-52{padding-top:13rem}.sm\:pr-52{padding-right:13rem}.sm\:pb-52{padding-bottom:13rem}.sm\:pl-52{padding-left:13rem}.sm\:pt-56{padding-top:14rem}.sm\:pr-56{padding-right:14rem}.sm\:pb-56{padding-bottom:14rem}.sm\:pl-56{padding-left:14rem}.sm\:pt-60{padding-top:15rem}.sm\:pr-60{padding-right:15rem}.sm\:pb-60{padding-bottom:15rem}.sm\:pl-60{padding-left:15rem}.sm\:pt-64{padding-top:16rem}.sm\:pr-64{padding-right:16rem}.sm\:pb-64{padding-bottom:16rem}.sm\:pl-64{padding-left:16rem}.sm\:pt-72{padding-top:18rem}.sm\:pr-72{padding-right:18rem}.sm\:pb-72{padding-bottom:18rem}.sm\:pl-72{padding-left:18rem}.sm\:pt-80{padding-top:20rem}.sm\:pr-80{padding-right:20rem}.sm\:pb-80{padding-bottom:20rem}.sm\:pl-80{padding-left:20rem}.sm\:pt-96{padding-top:24rem}.sm\:pr-96{padding-right:24rem}.sm\:pb-96{padding-bottom:24rem}.sm\:pl-96{padding-left:24rem}.sm\:pt-px{padding-top:1px}.sm\:pr-px{padding-right:1px}.sm\:pb-px{padding-bottom:1px}.sm\:pl-px{padding-left:1px}.sm\:pt-0\.5{padding-top:.125rem}.sm\:pr-0\.5{padding-right:.125rem}.sm\:pb-0\.5{padding-bottom:.125rem}.sm\:pl-0\.5{padding-left:.125rem}.sm\:pt-1\.5{padding-top:.375rem}.sm\:pr-1\.5{padding-right:.375rem}.sm\:pb-1\.5{padding-bottom:.375rem}.sm\:pl-1\.5{padding-left:.375rem}.sm\:pt-2\.5{padding-top:.625rem}.sm\:pr-2\.5{padding-right:.625rem}.sm\:pb-2\.5{padding-bottom:.625rem}.sm\:pl-2\.5{padding-left:.625rem}.sm\:pt-3\.5{padding-top:.875rem}.sm\:pr-3\.5{padding-right:.875rem}.sm\:pb-3\.5{padding-bottom:.875rem}.sm\:pl-3\.5{padding-left:.875rem}.sm\:pt-1\/2{padding-top:50%}.sm\:pr-1\/2{padding-right:50%}.sm\:pb-1\/2{padding-bottom:50%}.sm\:pl-1\/2{padding-left:50%}.sm\:pt-1\/3{padding-top:33.333333%}.sm\:pr-1\/3{padding-right:33.333333%}.sm\:pb-1\/3{padding-bottom:33.333333%}.sm\:pl-1\/3{padding-left:33.333333%}.sm\:pt-2\/3{padding-top:66.666667%}.sm\:pr-2\/3{padding-right:66.666667%}.sm\:pb-2\/3{padding-bottom:66.666667%}.sm\:pl-2\/3{padding-left:66.666667%}.sm\:pt-1\/4{padding-top:25%}.sm\:pr-1\/4{padding-right:25%}.sm\:pb-1\/4{padding-bottom:25%}.sm\:pl-1\/4{padding-left:25%}.sm\:pt-2\/4{padding-top:50%}.sm\:pr-2\/4{padding-right:50%}.sm\:pb-2\/4{padding-bottom:50%}.sm\:pl-2\/4{padding-left:50%}.sm\:pt-3\/4{padding-top:75%}.sm\:pr-3\/4{padding-right:75%}.sm\:pb-3\/4{padding-bottom:75%}.sm\:pl-3\/4{padding-left:75%}.sm\:pt-1\/5{padding-top:20%}.sm\:pr-1\/5{padding-right:20%}.sm\:pb-1\/5{padding-bottom:20%}.sm\:pl-1\/5{padding-left:20%}.sm\:pt-2\/5{padding-top:40%}.sm\:pr-2\/5{padding-right:40%}.sm\:pb-2\/5{padding-bottom:40%}.sm\:pl-2\/5{padding-left:40%}.sm\:pt-3\/5{padding-top:60%}.sm\:pr-3\/5{padding-right:60%}.sm\:pb-3\/5{padding-bottom:60%}.sm\:pl-3\/5{padding-left:60%}.sm\:pt-4\/5{padding-top:80%}.sm\:pr-4\/5{padding-right:80%}.sm\:pb-4\/5{padding-bottom:80%}.sm\:pl-4\/5{padding-left:80%}.sm\:pt-1\/6{padding-top:16.666667%}.sm\:pr-1\/6{padding-right:16.666667%}.sm\:pb-1\/6{padding-bottom:16.666667%}.sm\:pl-1\/6{padding-left:16.666667%}.sm\:pt-2\/6{padding-top:33.333333%}.sm\:pr-2\/6{padding-right:33.333333%}.sm\:pb-2\/6{padding-bottom:33.333333%}.sm\:pl-2\/6{padding-left:33.333333%}.sm\:pt-3\/6{padding-top:50%}.sm\:pr-3\/6{padding-right:50%}.sm\:pb-3\/6{padding-bottom:50%}.sm\:pl-3\/6{padding-left:50%}.sm\:pt-4\/6{padding-top:66.666667%}.sm\:pr-4\/6{padding-right:66.666667%}.sm\:pb-4\/6{padding-bottom:66.666667%}.sm\:pl-4\/6{padding-left:66.666667%}.sm\:pt-5\/6{padding-top:83.333333%}.sm\:pr-5\/6{padding-right:83.333333%}.sm\:pb-5\/6{padding-bottom:83.333333%}.sm\:pl-5\/6{padding-left:83.333333%}.sm\:pt-1\/12{padding-top:8.333333%}.sm\:pr-1\/12{padding-right:8.333333%}.sm\:pb-1\/12{padding-bottom:8.333333%}.sm\:pl-1\/12{padding-left:8.333333%}.sm\:pt-2\/12{padding-top:16.666667%}.sm\:pr-2\/12{padding-right:16.666667%}.sm\:pb-2\/12{padding-bottom:16.666667%}.sm\:pl-2\/12{padding-left:16.666667%}.sm\:pt-3\/12{padding-top:25%}.sm\:pr-3\/12{padding-right:25%}.sm\:pb-3\/12{padding-bottom:25%}.sm\:pl-3\/12{padding-left:25%}.sm\:pt-4\/12{padding-top:33.333333%}.sm\:pr-4\/12{padding-right:33.333333%}.sm\:pb-4\/12{padding-bottom:33.333333%}.sm\:pl-4\/12{padding-left:33.333333%}.sm\:pt-5\/12{padding-top:41.666667%}.sm\:pr-5\/12{padding-right:41.666667%}.sm\:pb-5\/12{padding-bottom:41.666667%}.sm\:pl-5\/12{padding-left:41.666667%}.sm\:pt-6\/12{padding-top:50%}.sm\:pr-6\/12{padding-right:50%}.sm\:pb-6\/12{padding-bottom:50%}.sm\:pl-6\/12{padding-left:50%}.sm\:pt-7\/12{padding-top:58.333333%}.sm\:pr-7\/12{padding-right:58.333333%}.sm\:pb-7\/12{padding-bottom:58.333333%}.sm\:pl-7\/12{padding-left:58.333333%}.sm\:pt-8\/12{padding-top:66.666667%}.sm\:pr-8\/12{padding-right:66.666667%}.sm\:pb-8\/12{padding-bottom:66.666667%}.sm\:pl-8\/12{padding-left:66.666667%}.sm\:pt-9\/12{padding-top:75%}.sm\:pr-9\/12{padding-right:75%}.sm\:pb-9\/12{padding-bottom:75%}.sm\:pl-9\/12{padding-left:75%}.sm\:pt-10\/12{padding-top:83.333333%}.sm\:pr-10\/12{padding-right:83.333333%}.sm\:pb-10\/12{padding-bottom:83.333333%}.sm\:pl-10\/12{padding-left:83.333333%}.sm\:pt-11\/12{padding-top:91.666667%}.sm\:pr-11\/12{padding-right:91.666667%}.sm\:pb-11\/12{padding-bottom:91.666667%}.sm\:pl-11\/12{padding-left:91.666667%}.sm\:pt-full{padding-top:100%}.sm\:pr-full{padding-right:100%}.sm\:pb-full{padding-bottom:100%}.sm\:pl-full{padding-left:100%}.sm\:placeholder-transparent::-moz-placeholder{color:transparent}.sm\:placeholder-transparent:-ms-input-placeholder{color:transparent}.sm\:placeholder-transparent::-ms-input-placeholder{color:transparent}.sm\:placeholder-transparent::placeholder{color:transparent}.sm\:placeholder-white::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:placeholder-white:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:placeholder-white::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:placeholder-white::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:placeholder-black::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:placeholder-black:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:placeholder-black::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:placeholder-black::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:placeholder-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:placeholder-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:placeholder-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:placeholder-gray-50::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:placeholder-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:placeholder-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:placeholder-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:placeholder-gray-100::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:placeholder-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:placeholder-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:placeholder-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:placeholder-gray-200::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:placeholder-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:placeholder-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:placeholder-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:placeholder-gray-300::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:placeholder-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:placeholder-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:placeholder-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:placeholder-gray-400::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:placeholder-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:placeholder-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:placeholder-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:placeholder-gray-500::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:placeholder-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:placeholder-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:placeholder-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:placeholder-gray-600::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:placeholder-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:placeholder-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:placeholder-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:placeholder-gray-700::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:placeholder-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:placeholder-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:placeholder-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:placeholder-gray-800::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:placeholder-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:placeholder-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:placeholder-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:placeholder-gray-900::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-50::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-100::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-200::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-300::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-400::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-500::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-600::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-700::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-800::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:placeholder-cool-gray-900::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:placeholder-red-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:placeholder-red-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:placeholder-red-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:placeholder-red-50::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:placeholder-red-100::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:placeholder-red-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:placeholder-red-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:placeholder-red-100::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:placeholder-red-200::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:placeholder-red-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:placeholder-red-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:placeholder-red-200::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:placeholder-red-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:placeholder-red-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:placeholder-red-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:placeholder-red-300::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:placeholder-red-400::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:placeholder-red-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:placeholder-red-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:placeholder-red-400::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:placeholder-red-500::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:placeholder-red-500:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:placeholder-red-500::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:placeholder-red-500::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:placeholder-red-600::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:placeholder-red-600:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:placeholder-red-600::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:placeholder-red-600::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:placeholder-red-700::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:placeholder-red-700:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:placeholder-red-700::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:placeholder-red-700::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:placeholder-red-800::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:placeholder-red-800:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:placeholder-red-800::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:placeholder-red-800::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:placeholder-red-900::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:placeholder-red-900:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:placeholder-red-900::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:placeholder-red-900::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:placeholder-orange-50::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:placeholder-orange-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:placeholder-orange-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:placeholder-orange-50::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:placeholder-orange-100::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:placeholder-orange-100:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:placeholder-orange-100::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:placeholder-orange-100::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:placeholder-orange-200::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:placeholder-orange-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:placeholder-orange-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:placeholder-orange-200::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:placeholder-orange-300::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:placeholder-orange-300:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:placeholder-orange-300::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:placeholder-orange-300::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:placeholder-orange-400::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:placeholder-orange-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:placeholder-orange-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:placeholder-orange-400::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:placeholder-orange-500::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:placeholder-orange-500:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:placeholder-orange-500::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:placeholder-orange-500::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:placeholder-orange-600::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:placeholder-orange-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:placeholder-orange-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:placeholder-orange-600::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:placeholder-orange-700::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:placeholder-orange-700:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:placeholder-orange-700::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:placeholder-orange-700::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:placeholder-orange-800::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:placeholder-orange-800:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:placeholder-orange-800::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:placeholder-orange-800::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:placeholder-orange-900::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:placeholder-orange-900:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:placeholder-orange-900::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:placeholder-orange-900::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:placeholder-yellow-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:placeholder-yellow-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:placeholder-yellow-50::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:placeholder-yellow-100::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:placeholder-yellow-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:placeholder-yellow-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:placeholder-yellow-100::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:placeholder-yellow-200::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:placeholder-yellow-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:placeholder-yellow-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:placeholder-yellow-200::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:placeholder-yellow-300::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:placeholder-yellow-300:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:placeholder-yellow-300::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:placeholder-yellow-300::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:placeholder-yellow-400:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:placeholder-yellow-400::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:placeholder-yellow-400::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:placeholder-yellow-500::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:placeholder-yellow-500:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:placeholder-yellow-500::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:placeholder-yellow-500::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:placeholder-yellow-600::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:placeholder-yellow-600:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:placeholder-yellow-600::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:placeholder-yellow-600::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:placeholder-yellow-700::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:placeholder-yellow-700:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:placeholder-yellow-700::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:placeholder-yellow-700::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:placeholder-yellow-800::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:placeholder-yellow-800:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:placeholder-yellow-800::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:placeholder-yellow-800::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:placeholder-yellow-900::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:placeholder-yellow-900:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:placeholder-yellow-900::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:placeholder-yellow-900::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:placeholder-green-50::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:placeholder-green-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:placeholder-green-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:placeholder-green-50::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:placeholder-green-100::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:placeholder-green-100:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:placeholder-green-100::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:placeholder-green-100::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:placeholder-green-200::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:placeholder-green-200:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:placeholder-green-200::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:placeholder-green-200::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:placeholder-green-300::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:placeholder-green-300:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:placeholder-green-300::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:placeholder-green-300::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:placeholder-green-400::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:placeholder-green-400:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:placeholder-green-400::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:placeholder-green-400::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:placeholder-green-500::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:placeholder-green-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:placeholder-green-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:placeholder-green-500::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:placeholder-green-600::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:placeholder-green-600:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:placeholder-green-600::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:placeholder-green-600::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:placeholder-green-700::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:placeholder-green-700:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:placeholder-green-700::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:placeholder-green-700::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:placeholder-green-800::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:placeholder-green-800:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:placeholder-green-800::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:placeholder-green-800::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:placeholder-green-900::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:placeholder-green-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:placeholder-green-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:placeholder-green-900::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:placeholder-teal-50::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:placeholder-teal-50:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:placeholder-teal-50::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:placeholder-teal-50::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:placeholder-teal-100::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:placeholder-teal-100:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:placeholder-teal-100::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:placeholder-teal-100::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:placeholder-teal-200::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:placeholder-teal-200:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:placeholder-teal-200::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:placeholder-teal-200::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:placeholder-teal-300::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:placeholder-teal-300:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:placeholder-teal-300::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:placeholder-teal-300::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:placeholder-teal-400::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:placeholder-teal-400:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:placeholder-teal-400::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:placeholder-teal-400::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:placeholder-teal-500::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:placeholder-teal-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:placeholder-teal-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:placeholder-teal-500::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:placeholder-teal-600::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:placeholder-teal-600:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:placeholder-teal-600::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:placeholder-teal-600::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:placeholder-teal-700::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:placeholder-teal-700:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:placeholder-teal-700::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:placeholder-teal-700::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:placeholder-teal-800::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:placeholder-teal-800:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:placeholder-teal-800::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:placeholder-teal-800::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:placeholder-teal-900::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:placeholder-teal-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:placeholder-teal-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:placeholder-teal-900::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:placeholder-blue-50::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:placeholder-blue-50:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:placeholder-blue-50::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:placeholder-blue-50::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:placeholder-blue-100::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:placeholder-blue-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:placeholder-blue-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:placeholder-blue-100::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:placeholder-blue-200::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:placeholder-blue-200:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:placeholder-blue-200::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:placeholder-blue-200::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:placeholder-blue-300::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:placeholder-blue-300:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:placeholder-blue-300::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:placeholder-blue-300::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:placeholder-blue-400::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:placeholder-blue-400:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:placeholder-blue-400::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:placeholder-blue-400::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:placeholder-blue-500::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:placeholder-blue-500:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:placeholder-blue-500::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:placeholder-blue-500::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:placeholder-blue-600::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:placeholder-blue-600:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:placeholder-blue-600::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:placeholder-blue-600::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:placeholder-blue-700::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:placeholder-blue-700:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:placeholder-blue-700::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:placeholder-blue-700::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:placeholder-blue-800::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:placeholder-blue-800:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:placeholder-blue-800::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:placeholder-blue-800::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:placeholder-blue-900::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:placeholder-blue-900:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:placeholder-blue-900::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:placeholder-blue-900::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:placeholder-indigo-50::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-50::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-100::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-100::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:placeholder-indigo-200::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:placeholder-indigo-200:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:placeholder-indigo-200::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:placeholder-indigo-200::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:placeholder-indigo-300::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:placeholder-indigo-300:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:placeholder-indigo-300::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:placeholder-indigo-300::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:placeholder-indigo-400::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:placeholder-indigo-400:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:placeholder-indigo-400::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:placeholder-indigo-400::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:placeholder-indigo-500::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:placeholder-indigo-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:placeholder-indigo-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:placeholder-indigo-500::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:placeholder-indigo-600::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:placeholder-indigo-600:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:placeholder-indigo-600::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:placeholder-indigo-600::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:placeholder-indigo-700::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:placeholder-indigo-700:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:placeholder-indigo-700::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:placeholder-indigo-700::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:placeholder-indigo-800::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:placeholder-indigo-800:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:placeholder-indigo-800::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:placeholder-indigo-800::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:placeholder-indigo-900::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:placeholder-indigo-900:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:placeholder-indigo-900::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:placeholder-indigo-900::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:placeholder-purple-50::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:placeholder-purple-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:placeholder-purple-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:placeholder-purple-50::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:placeholder-purple-100::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:placeholder-purple-100:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:placeholder-purple-100::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:placeholder-purple-100::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:placeholder-purple-200::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:placeholder-purple-200:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:placeholder-purple-200::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:placeholder-purple-200::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:placeholder-purple-300::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:placeholder-purple-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:placeholder-purple-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:placeholder-purple-300::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:placeholder-purple-400::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:placeholder-purple-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:placeholder-purple-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:placeholder-purple-400::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:placeholder-purple-500::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:placeholder-purple-500:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:placeholder-purple-500::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:placeholder-purple-500::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:placeholder-purple-600::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:placeholder-purple-600:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:placeholder-purple-600::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:placeholder-purple-600::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:placeholder-purple-700::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:placeholder-purple-700:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:placeholder-purple-700::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:placeholder-purple-700::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:placeholder-purple-800::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:placeholder-purple-800:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:placeholder-purple-800::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:placeholder-purple-800::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:placeholder-purple-900::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:placeholder-purple-900:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:placeholder-purple-900::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:placeholder-purple-900::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:placeholder-pink-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:placeholder-pink-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:placeholder-pink-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:placeholder-pink-50::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:placeholder-pink-100::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:placeholder-pink-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:placeholder-pink-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:placeholder-pink-100::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:placeholder-pink-200::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:placeholder-pink-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:placeholder-pink-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:placeholder-pink-200::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:placeholder-pink-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:placeholder-pink-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:placeholder-pink-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:placeholder-pink-300::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:placeholder-pink-400::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:placeholder-pink-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:placeholder-pink-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:placeholder-pink-400::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:placeholder-pink-500::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:placeholder-pink-500:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:placeholder-pink-500::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:placeholder-pink-500::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:placeholder-pink-600::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:placeholder-pink-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:placeholder-pink-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:placeholder-pink-600::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:placeholder-pink-700::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:placeholder-pink-700:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:placeholder-pink-700::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:placeholder-pink-700::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:placeholder-pink-800::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:placeholder-pink-800:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:placeholder-pink-800::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:placeholder-pink-800::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:placeholder-pink-900::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:placeholder-pink-900:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:placeholder-pink-900::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:placeholder-pink-900::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent}.sm\:focus\:placeholder-transparent:focus:-ms-input-placeholder{color:transparent}.sm\:focus\:placeholder-transparent:focus::-ms-input-placeholder{color:transparent}.sm\:focus\:placeholder-transparent:focus::placeholder{color:transparent}.sm\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-white:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-white:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:focus\:placeholder-black:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:focus\:placeholder-black:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-300:focus::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-400:focus::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-500:focus::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-600:focus::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-700:focus::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-800:focus::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-gray-900:focus::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-300:focus::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-400:focus::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-500:focus::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-600:focus::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-700:focus::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-800:focus::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-cool-gray-900:focus::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-100:focus::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-200:focus::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-400:focus::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-500:focus::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-600:focus::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-700:focus::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-800:focus::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:focus\:placeholder-red-900:focus::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-50:focus::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-100:focus::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-200:focus::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-300:focus::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-400:focus::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-500:focus::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-600:focus::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-700:focus::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-800:focus::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-orange-900:focus::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-100:focus::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-200:focus::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-300:focus::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-500:focus::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-600:focus::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-700:focus::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-800:focus::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:focus\:placeholder-yellow-900:focus::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-50:focus::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-100:focus::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-200:focus::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-300:focus::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-400:focus::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-500:focus::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-600:focus::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-700:focus::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-800:focus::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:focus\:placeholder-green-900:focus::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-50:focus::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-100:focus::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-200:focus::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-300:focus::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-400:focus::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-500:focus::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-600:focus::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-700:focus::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-800:focus::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-teal-900:focus::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-50:focus::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-100:focus::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-200:focus::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-300:focus::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-400:focus::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-500:focus::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-600:focus::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-700:focus::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-800:focus::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:focus\:placeholder-blue-900:focus::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-50:focus::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-100:focus::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-200:focus::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-300:focus::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-400:focus::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-500:focus::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-600:focus::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-700:focus::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-800:focus::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:focus\:placeholder-indigo-900:focus::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-50:focus::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-100:focus::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-200:focus::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-300:focus::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-400:focus::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-500:focus::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-600:focus::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-700:focus::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-800:focus::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:focus\:placeholder-purple-900:focus::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-100:focus::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-200:focus::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-400:focus::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-500:focus::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-600:focus::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-700:focus::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-800:focus::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:focus\:placeholder-pink-900:focus::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.sm\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0}.sm\:placeholder-opacity-0:-ms-input-placeholder{--placeholder-opacity:0}.sm\:placeholder-opacity-0::-ms-input-placeholder{--placeholder-opacity:0}.sm\:placeholder-opacity-0::placeholder{--placeholder-opacity:0}.sm\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25}.sm\:placeholder-opacity-25:-ms-input-placeholder{--placeholder-opacity:0.25}.sm\:placeholder-opacity-25::-ms-input-placeholder{--placeholder-opacity:0.25}.sm\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25}.sm\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5}.sm\:placeholder-opacity-50:-ms-input-placeholder{--placeholder-opacity:0.5}.sm\:placeholder-opacity-50::-ms-input-placeholder{--placeholder-opacity:0.5}.sm\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5}.sm\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75}.sm\:placeholder-opacity-75:-ms-input-placeholder{--placeholder-opacity:0.75}.sm\:placeholder-opacity-75::-ms-input-placeholder{--placeholder-opacity:0.75}.sm\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75}.sm\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1}.sm\:placeholder-opacity-100:-ms-input-placeholder{--placeholder-opacity:1}.sm\:placeholder-opacity-100::-ms-input-placeholder{--placeholder-opacity:1}.sm\:placeholder-opacity-100::placeholder{--placeholder-opacity:1}.sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0}.sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{--placeholder-opacity:0}.sm\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{--placeholder-opacity:0}.sm\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0}.sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25}.sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{--placeholder-opacity:0.25}.sm\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{--placeholder-opacity:0.25}.sm\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25}.sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5}.sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{--placeholder-opacity:0.5}.sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{--placeholder-opacity:0.5}.sm\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5}.sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75}.sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{--placeholder-opacity:0.75}.sm\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{--placeholder-opacity:0.75}.sm\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75}.sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1}.sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{--placeholder-opacity:1}.sm\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{--placeholder-opacity:1}.sm\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1}.sm\:pointer-events-none{pointer-events:none}.sm\:pointer-events-auto{pointer-events:auto}.sm\:static{position:static}.sm\:fixed{position:fixed}.sm\:absolute{position:absolute}.sm\:relative{position:relative}.sm\:sticky{position:-webkit-sticky;position:sticky}.sm\:inset-0{top:0;right:0;bottom:0;left:0}.sm\:inset-1{top:.25rem;right:.25rem;bottom:.25rem;left:.25rem}.sm\:inset-2{top:.5rem;right:.5rem;bottom:.5rem;left:.5rem}.sm\:inset-3{top:.75rem;right:.75rem;bottom:.75rem;left:.75rem}.sm\:inset-4{top:1rem;right:1rem;bottom:1rem;left:1rem}.sm\:inset-5{top:1.25rem;right:1.25rem;bottom:1.25rem;left:1.25rem}.sm\:inset-6{top:1.5rem;right:1.5rem;bottom:1.5rem;left:1.5rem}.sm\:inset-7{top:1.75rem;right:1.75rem;bottom:1.75rem;left:1.75rem}.sm\:inset-8{top:2rem;right:2rem;bottom:2rem;left:2rem}.sm\:inset-9{top:2.25rem;right:2.25rem;bottom:2.25rem;left:2.25rem}.sm\:inset-10{top:2.5rem;right:2.5rem;bottom:2.5rem;left:2.5rem}.sm\:inset-11{top:2.75rem;right:2.75rem;bottom:2.75rem;left:2.75rem}.sm\:inset-12{top:3rem;right:3rem;bottom:3rem;left:3rem}.sm\:inset-13{top:3.25rem;right:3.25rem;bottom:3.25rem;left:3.25rem}.sm\:inset-14{top:3.5rem;right:3.5rem;bottom:3.5rem;left:3.5rem}.sm\:inset-15{top:3.75rem;right:3.75rem;bottom:3.75rem;left:3.75rem}.sm\:inset-16{top:4rem;right:4rem;bottom:4rem;left:4rem}.sm\:inset-20{top:5rem;right:5rem;bottom:5rem;left:5rem}.sm\:inset-24{top:6rem;right:6rem;bottom:6rem;left:6rem}.sm\:inset-28{top:7rem;right:7rem;bottom:7rem;left:7rem}.sm\:inset-32{top:8rem;right:8rem;bottom:8rem;left:8rem}.sm\:inset-36{top:9rem;right:9rem;bottom:9rem;left:9rem}.sm\:inset-40{top:10rem;right:10rem;bottom:10rem;left:10rem}.sm\:inset-44{top:11rem;right:11rem;bottom:11rem;left:11rem}.sm\:inset-48{top:12rem;right:12rem;bottom:12rem;left:12rem}.sm\:inset-52{top:13rem;right:13rem;bottom:13rem;left:13rem}.sm\:inset-56{top:14rem;right:14rem;bottom:14rem;left:14rem}.sm\:inset-60{top:15rem;right:15rem;bottom:15rem;left:15rem}.sm\:inset-64{top:16rem;right:16rem;bottom:16rem;left:16rem}.sm\:inset-72{top:18rem;right:18rem;bottom:18rem;left:18rem}.sm\:inset-80{top:20rem;right:20rem;bottom:20rem;left:20rem}.sm\:inset-96{top:24rem;right:24rem;bottom:24rem;left:24rem}.sm\:inset-auto{top:auto;right:auto;bottom:auto;left:auto}.sm\:inset-px{top:1px;right:1px;bottom:1px;left:1px}.sm\:inset-0\.5{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.sm\:inset-1\.5{top:.375rem;right:.375rem;bottom:.375rem;left:.375rem}.sm\:inset-2\.5{top:.625rem;right:.625rem;bottom:.625rem;left:.625rem}.sm\:inset-3\.5{top:.875rem;right:.875rem;bottom:.875rem;left:.875rem}.sm\:inset-1\/2{top:50%;right:50%;bottom:50%;left:50%}.sm\:inset-1\/3{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.sm\:inset-2\/3{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.sm\:inset-1\/4{top:25%;right:25%;bottom:25%;left:25%}.sm\:inset-2\/4{top:50%;right:50%;bottom:50%;left:50%}.sm\:inset-3\/4{top:75%;right:75%;bottom:75%;left:75%}.sm\:inset-1\/5{top:20%;right:20%;bottom:20%;left:20%}.sm\:inset-2\/5{top:40%;right:40%;bottom:40%;left:40%}.sm\:inset-3\/5{top:60%;right:60%;bottom:60%;left:60%}.sm\:inset-4\/5{top:80%;right:80%;bottom:80%;left:80%}.sm\:inset-1\/6{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.sm\:inset-2\/6{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.sm\:inset-3\/6{top:50%;right:50%;bottom:50%;left:50%}.sm\:inset-4\/6{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.sm\:inset-5\/6{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.sm\:inset-1\/12{top:8.333333%;right:8.333333%;bottom:8.333333%;left:8.333333%}.sm\:inset-2\/12{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.sm\:inset-3\/12{top:25%;right:25%;bottom:25%;left:25%}.sm\:inset-4\/12{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.sm\:inset-5\/12{top:41.666667%;right:41.666667%;bottom:41.666667%;left:41.666667%}.sm\:inset-6\/12{top:50%;right:50%;bottom:50%;left:50%}.sm\:inset-7\/12{top:58.333333%;right:58.333333%;bottom:58.333333%;left:58.333333%}.sm\:inset-8\/12{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.sm\:inset-9\/12{top:75%;right:75%;bottom:75%;left:75%}.sm\:inset-10\/12{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.sm\:inset-11\/12{top:91.666667%;right:91.666667%;bottom:91.666667%;left:91.666667%}.sm\:inset-full{top:100%;right:100%;bottom:100%;left:100%}.sm\:inset-y-0{top:0;bottom:0}.sm\:inset-x-0{right:0;left:0}.sm\:inset-y-1{top:.25rem;bottom:.25rem}.sm\:inset-x-1{right:.25rem;left:.25rem}.sm\:inset-y-2{top:.5rem;bottom:.5rem}.sm\:inset-x-2{right:.5rem;left:.5rem}.sm\:inset-y-3{top:.75rem;bottom:.75rem}.sm\:inset-x-3{right:.75rem;left:.75rem}.sm\:inset-y-4{top:1rem;bottom:1rem}.sm\:inset-x-4{right:1rem;left:1rem}.sm\:inset-y-5{top:1.25rem;bottom:1.25rem}.sm\:inset-x-5{right:1.25rem;left:1.25rem}.sm\:inset-y-6{top:1.5rem;bottom:1.5rem}.sm\:inset-x-6{right:1.5rem;left:1.5rem}.sm\:inset-y-7{top:1.75rem;bottom:1.75rem}.sm\:inset-x-7{right:1.75rem;left:1.75rem}.sm\:inset-y-8{top:2rem;bottom:2rem}.sm\:inset-x-8{right:2rem;left:2rem}.sm\:inset-y-9{top:2.25rem;bottom:2.25rem}.sm\:inset-x-9{right:2.25rem;left:2.25rem}.sm\:inset-y-10{top:2.5rem;bottom:2.5rem}.sm\:inset-x-10{right:2.5rem;left:2.5rem}.sm\:inset-y-11{top:2.75rem;bottom:2.75rem}.sm\:inset-x-11{right:2.75rem;left:2.75rem}.sm\:inset-y-12{top:3rem;bottom:3rem}.sm\:inset-x-12{right:3rem;left:3rem}.sm\:inset-y-13{top:3.25rem;bottom:3.25rem}.sm\:inset-x-13{right:3.25rem;left:3.25rem}.sm\:inset-y-14{top:3.5rem;bottom:3.5rem}.sm\:inset-x-14{right:3.5rem;left:3.5rem}.sm\:inset-y-15{top:3.75rem;bottom:3.75rem}.sm\:inset-x-15{right:3.75rem;left:3.75rem}.sm\:inset-y-16{top:4rem;bottom:4rem}.sm\:inset-x-16{right:4rem;left:4rem}.sm\:inset-y-20{top:5rem;bottom:5rem}.sm\:inset-x-20{right:5rem;left:5rem}.sm\:inset-y-24{top:6rem;bottom:6rem}.sm\:inset-x-24{right:6rem;left:6rem}.sm\:inset-y-28{top:7rem;bottom:7rem}.sm\:inset-x-28{right:7rem;left:7rem}.sm\:inset-y-32{top:8rem;bottom:8rem}.sm\:inset-x-32{right:8rem;left:8rem}.sm\:inset-y-36{top:9rem;bottom:9rem}.sm\:inset-x-36{right:9rem;left:9rem}.sm\:inset-y-40{top:10rem;bottom:10rem}.sm\:inset-x-40{right:10rem;left:10rem}.sm\:inset-y-44{top:11rem;bottom:11rem}.sm\:inset-x-44{right:11rem;left:11rem}.sm\:inset-y-48{top:12rem;bottom:12rem}.sm\:inset-x-48{right:12rem;left:12rem}.sm\:inset-y-52{top:13rem;bottom:13rem}.sm\:inset-x-52{right:13rem;left:13rem}.sm\:inset-y-56{top:14rem;bottom:14rem}.sm\:inset-x-56{right:14rem;left:14rem}.sm\:inset-y-60{top:15rem;bottom:15rem}.sm\:inset-x-60{right:15rem;left:15rem}.sm\:inset-y-64{top:16rem;bottom:16rem}.sm\:inset-x-64{right:16rem;left:16rem}.sm\:inset-y-72{top:18rem;bottom:18rem}.sm\:inset-x-72{right:18rem;left:18rem}.sm\:inset-y-80{top:20rem;bottom:20rem}.sm\:inset-x-80{right:20rem;left:20rem}.sm\:inset-y-96{top:24rem;bottom:24rem}.sm\:inset-x-96{right:24rem;left:24rem}.sm\:inset-y-auto{top:auto;bottom:auto}.sm\:inset-x-auto{right:auto;left:auto}.sm\:inset-y-px{top:1px;bottom:1px}.sm\:inset-x-px{right:1px;left:1px}.sm\:inset-y-0\.5{top:.125rem;bottom:.125rem}.sm\:inset-x-0\.5{right:.125rem;left:.125rem}.sm\:inset-y-1\.5{top:.375rem;bottom:.375rem}.sm\:inset-x-1\.5{right:.375rem;left:.375rem}.sm\:inset-y-2\.5{top:.625rem;bottom:.625rem}.sm\:inset-x-2\.5{right:.625rem;left:.625rem}.sm\:inset-y-3\.5{top:.875rem;bottom:.875rem}.sm\:inset-x-3\.5{right:.875rem;left:.875rem}.sm\:inset-y-1\/2{top:50%;bottom:50%}.sm\:inset-x-1\/2{right:50%;left:50%}.sm\:inset-y-1\/3{top:33.333333%;bottom:33.333333%}.sm\:inset-x-1\/3{right:33.333333%;left:33.333333%}.sm\:inset-y-2\/3{top:66.666667%;bottom:66.666667%}.sm\:inset-x-2\/3{right:66.666667%;left:66.666667%}.sm\:inset-y-1\/4{top:25%;bottom:25%}.sm\:inset-x-1\/4{right:25%;left:25%}.sm\:inset-y-2\/4{top:50%;bottom:50%}.sm\:inset-x-2\/4{right:50%;left:50%}.sm\:inset-y-3\/4{top:75%;bottom:75%}.sm\:inset-x-3\/4{right:75%;left:75%}.sm\:inset-y-1\/5{top:20%;bottom:20%}.sm\:inset-x-1\/5{right:20%;left:20%}.sm\:inset-y-2\/5{top:40%;bottom:40%}.sm\:inset-x-2\/5{right:40%;left:40%}.sm\:inset-y-3\/5{top:60%;bottom:60%}.sm\:inset-x-3\/5{right:60%;left:60%}.sm\:inset-y-4\/5{top:80%;bottom:80%}.sm\:inset-x-4\/5{right:80%;left:80%}.sm\:inset-y-1\/6{top:16.666667%;bottom:16.666667%}.sm\:inset-x-1\/6{right:16.666667%;left:16.666667%}.sm\:inset-y-2\/6{top:33.333333%;bottom:33.333333%}.sm\:inset-x-2\/6{right:33.333333%;left:33.333333%}.sm\:inset-y-3\/6{top:50%;bottom:50%}.sm\:inset-x-3\/6{right:50%;left:50%}.sm\:inset-y-4\/6{top:66.666667%;bottom:66.666667%}.sm\:inset-x-4\/6{right:66.666667%;left:66.666667%}.sm\:inset-y-5\/6{top:83.333333%;bottom:83.333333%}.sm\:inset-x-5\/6{right:83.333333%;left:83.333333%}.sm\:inset-y-1\/12{top:8.333333%;bottom:8.333333%}.sm\:inset-x-1\/12{right:8.333333%;left:8.333333%}.sm\:inset-y-2\/12{top:16.666667%;bottom:16.666667%}.sm\:inset-x-2\/12{right:16.666667%;left:16.666667%}.sm\:inset-y-3\/12{top:25%;bottom:25%}.sm\:inset-x-3\/12{right:25%;left:25%}.sm\:inset-y-4\/12{top:33.333333%;bottom:33.333333%}.sm\:inset-x-4\/12{right:33.333333%;left:33.333333%}.sm\:inset-y-5\/12{top:41.666667%;bottom:41.666667%}.sm\:inset-x-5\/12{right:41.666667%;left:41.666667%}.sm\:inset-y-6\/12{top:50%;bottom:50%}.sm\:inset-x-6\/12{right:50%;left:50%}.sm\:inset-y-7\/12{top:58.333333%;bottom:58.333333%}.sm\:inset-x-7\/12{right:58.333333%;left:58.333333%}.sm\:inset-y-8\/12{top:66.666667%;bottom:66.666667%}.sm\:inset-x-8\/12{right:66.666667%;left:66.666667%}.sm\:inset-y-9\/12{top:75%;bottom:75%}.sm\:inset-x-9\/12{right:75%;left:75%}.sm\:inset-y-10\/12{top:83.333333%;bottom:83.333333%}.sm\:inset-x-10\/12{right:83.333333%;left:83.333333%}.sm\:inset-y-11\/12{top:91.666667%;bottom:91.666667%}.sm\:inset-x-11\/12{right:91.666667%;left:91.666667%}.sm\:inset-y-full{top:100%;bottom:100%}.sm\:inset-x-full{right:100%;left:100%}.sm\:top-0{top:0}.sm\:right-0{right:0}.sm\:bottom-0{bottom:0}.sm\:left-0{left:0}.sm\:top-1{top:.25rem}.sm\:right-1{right:.25rem}.sm\:bottom-1{bottom:.25rem}.sm\:left-1{left:.25rem}.sm\:top-2{top:.5rem}.sm\:right-2{right:.5rem}.sm\:bottom-2{bottom:.5rem}.sm\:left-2{left:.5rem}.sm\:top-3{top:.75rem}.sm\:right-3{right:.75rem}.sm\:bottom-3{bottom:.75rem}.sm\:left-3{left:.75rem}.sm\:top-4{top:1rem}.sm\:right-4{right:1rem}.sm\:bottom-4{bottom:1rem}.sm\:left-4{left:1rem}.sm\:top-5{top:1.25rem}.sm\:right-5{right:1.25rem}.sm\:bottom-5{bottom:1.25rem}.sm\:left-5{left:1.25rem}.sm\:top-6{top:1.5rem}.sm\:right-6{right:1.5rem}.sm\:bottom-6{bottom:1.5rem}.sm\:left-6{left:1.5rem}.sm\:top-7{top:1.75rem}.sm\:right-7{right:1.75rem}.sm\:bottom-7{bottom:1.75rem}.sm\:left-7{left:1.75rem}.sm\:top-8{top:2rem}.sm\:right-8{right:2rem}.sm\:bottom-8{bottom:2rem}.sm\:left-8{left:2rem}.sm\:top-9{top:2.25rem}.sm\:right-9{right:2.25rem}.sm\:bottom-9{bottom:2.25rem}.sm\:left-9{left:2.25rem}.sm\:top-10{top:2.5rem}.sm\:right-10{right:2.5rem}.sm\:bottom-10{bottom:2.5rem}.sm\:left-10{left:2.5rem}.sm\:top-11{top:2.75rem}.sm\:right-11{right:2.75rem}.sm\:bottom-11{bottom:2.75rem}.sm\:left-11{left:2.75rem}.sm\:top-12{top:3rem}.sm\:right-12{right:3rem}.sm\:bottom-12{bottom:3rem}.sm\:left-12{left:3rem}.sm\:top-13{top:3.25rem}.sm\:right-13{right:3.25rem}.sm\:bottom-13{bottom:3.25rem}.sm\:left-13{left:3.25rem}.sm\:top-14{top:3.5rem}.sm\:right-14{right:3.5rem}.sm\:bottom-14{bottom:3.5rem}.sm\:left-14{left:3.5rem}.sm\:top-15{top:3.75rem}.sm\:right-15{right:3.75rem}.sm\:bottom-15{bottom:3.75rem}.sm\:left-15{left:3.75rem}.sm\:top-16{top:4rem}.sm\:right-16{right:4rem}.sm\:bottom-16{bottom:4rem}.sm\:left-16{left:4rem}.sm\:top-20{top:5rem}.sm\:right-20{right:5rem}.sm\:bottom-20{bottom:5rem}.sm\:left-20{left:5rem}.sm\:top-24{top:6rem}.sm\:right-24{right:6rem}.sm\:bottom-24{bottom:6rem}.sm\:left-24{left:6rem}.sm\:top-28{top:7rem}.sm\:right-28{right:7rem}.sm\:bottom-28{bottom:7rem}.sm\:left-28{left:7rem}.sm\:top-32{top:8rem}.sm\:right-32{right:8rem}.sm\:bottom-32{bottom:8rem}.sm\:left-32{left:8rem}.sm\:top-36{top:9rem}.sm\:right-36{right:9rem}.sm\:bottom-36{bottom:9rem}.sm\:left-36{left:9rem}.sm\:top-40{top:10rem}.sm\:right-40{right:10rem}.sm\:bottom-40{bottom:10rem}.sm\:left-40{left:10rem}.sm\:top-44{top:11rem}.sm\:right-44{right:11rem}.sm\:bottom-44{bottom:11rem}.sm\:left-44{left:11rem}.sm\:top-48{top:12rem}.sm\:right-48{right:12rem}.sm\:bottom-48{bottom:12rem}.sm\:left-48{left:12rem}.sm\:top-52{top:13rem}.sm\:right-52{right:13rem}.sm\:bottom-52{bottom:13rem}.sm\:left-52{left:13rem}.sm\:top-56{top:14rem}.sm\:right-56{right:14rem}.sm\:bottom-56{bottom:14rem}.sm\:left-56{left:14rem}.sm\:top-60{top:15rem}.sm\:right-60{right:15rem}.sm\:bottom-60{bottom:15rem}.sm\:left-60{left:15rem}.sm\:top-64{top:16rem}.sm\:right-64{right:16rem}.sm\:bottom-64{bottom:16rem}.sm\:left-64{left:16rem}.sm\:top-72{top:18rem}.sm\:right-72{right:18rem}.sm\:bottom-72{bottom:18rem}.sm\:left-72{left:18rem}.sm\:top-80{top:20rem}.sm\:right-80{right:20rem}.sm\:bottom-80{bottom:20rem}.sm\:left-80{left:20rem}.sm\:top-96{top:24rem}.sm\:right-96{right:24rem}.sm\:bottom-96{bottom:24rem}.sm\:left-96{left:24rem}.sm\:top-auto{top:auto}.sm\:right-auto{right:auto}.sm\:bottom-auto{bottom:auto}.sm\:left-auto{left:auto}.sm\:top-px{top:1px}.sm\:right-px{right:1px}.sm\:bottom-px{bottom:1px}.sm\:left-px{left:1px}.sm\:top-0\.5{top:.125rem}.sm\:right-0\.5{right:.125rem}.sm\:bottom-0\.5{bottom:.125rem}.sm\:left-0\.5{left:.125rem}.sm\:top-1\.5{top:.375rem}.sm\:right-1\.5{right:.375rem}.sm\:bottom-1\.5{bottom:.375rem}.sm\:left-1\.5{left:.375rem}.sm\:top-2\.5{top:.625rem}.sm\:right-2\.5{right:.625rem}.sm\:bottom-2\.5{bottom:.625rem}.sm\:left-2\.5{left:.625rem}.sm\:top-3\.5{top:.875rem}.sm\:right-3\.5{right:.875rem}.sm\:bottom-3\.5{bottom:.875rem}.sm\:left-3\.5{left:.875rem}.sm\:top-1\/2{top:50%}.sm\:right-1\/2{right:50%}.sm\:bottom-1\/2{bottom:50%}.sm\:left-1\/2{left:50%}.sm\:top-1\/3{top:33.333333%}.sm\:right-1\/3{right:33.333333%}.sm\:bottom-1\/3{bottom:33.333333%}.sm\:left-1\/3{left:33.333333%}.sm\:top-2\/3{top:66.666667%}.sm\:right-2\/3{right:66.666667%}.sm\:bottom-2\/3{bottom:66.666667%}.sm\:left-2\/3{left:66.666667%}.sm\:top-1\/4{top:25%}.sm\:right-1\/4{right:25%}.sm\:bottom-1\/4{bottom:25%}.sm\:left-1\/4{left:25%}.sm\:top-2\/4{top:50%}.sm\:right-2\/4{right:50%}.sm\:bottom-2\/4{bottom:50%}.sm\:left-2\/4{left:50%}.sm\:top-3\/4{top:75%}.sm\:right-3\/4{right:75%}.sm\:bottom-3\/4{bottom:75%}.sm\:left-3\/4{left:75%}.sm\:top-1\/5{top:20%}.sm\:right-1\/5{right:20%}.sm\:bottom-1\/5{bottom:20%}.sm\:left-1\/5{left:20%}.sm\:top-2\/5{top:40%}.sm\:right-2\/5{right:40%}.sm\:bottom-2\/5{bottom:40%}.sm\:left-2\/5{left:40%}.sm\:top-3\/5{top:60%}.sm\:right-3\/5{right:60%}.sm\:bottom-3\/5{bottom:60%}.sm\:left-3\/5{left:60%}.sm\:top-4\/5{top:80%}.sm\:right-4\/5{right:80%}.sm\:bottom-4\/5{bottom:80%}.sm\:left-4\/5{left:80%}.sm\:top-1\/6{top:16.666667%}.sm\:right-1\/6{right:16.666667%}.sm\:bottom-1\/6{bottom:16.666667%}.sm\:left-1\/6{left:16.666667%}.sm\:top-2\/6{top:33.333333%}.sm\:right-2\/6{right:33.333333%}.sm\:bottom-2\/6{bottom:33.333333%}.sm\:left-2\/6{left:33.333333%}.sm\:top-3\/6{top:50%}.sm\:right-3\/6{right:50%}.sm\:bottom-3\/6{bottom:50%}.sm\:left-3\/6{left:50%}.sm\:top-4\/6{top:66.666667%}.sm\:right-4\/6{right:66.666667%}.sm\:bottom-4\/6{bottom:66.666667%}.sm\:left-4\/6{left:66.666667%}.sm\:top-5\/6{top:83.333333%}.sm\:right-5\/6{right:83.333333%}.sm\:bottom-5\/6{bottom:83.333333%}.sm\:left-5\/6{left:83.333333%}.sm\:top-1\/12{top:8.333333%}.sm\:right-1\/12{right:8.333333%}.sm\:bottom-1\/12{bottom:8.333333%}.sm\:left-1\/12{left:8.333333%}.sm\:top-2\/12{top:16.666667%}.sm\:right-2\/12{right:16.666667%}.sm\:bottom-2\/12{bottom:16.666667%}.sm\:left-2\/12{left:16.666667%}.sm\:top-3\/12{top:25%}.sm\:right-3\/12{right:25%}.sm\:bottom-3\/12{bottom:25%}.sm\:left-3\/12{left:25%}.sm\:top-4\/12{top:33.333333%}.sm\:right-4\/12{right:33.333333%}.sm\:bottom-4\/12{bottom:33.333333%}.sm\:left-4\/12{left:33.333333%}.sm\:top-5\/12{top:41.666667%}.sm\:right-5\/12{right:41.666667%}.sm\:bottom-5\/12{bottom:41.666667%}.sm\:left-5\/12{left:41.666667%}.sm\:top-6\/12{top:50%}.sm\:right-6\/12{right:50%}.sm\:bottom-6\/12{bottom:50%}.sm\:left-6\/12{left:50%}.sm\:top-7\/12{top:58.333333%}.sm\:right-7\/12{right:58.333333%}.sm\:bottom-7\/12{bottom:58.333333%}.sm\:left-7\/12{left:58.333333%}.sm\:top-8\/12{top:66.666667%}.sm\:right-8\/12{right:66.666667%}.sm\:bottom-8\/12{bottom:66.666667%}.sm\:left-8\/12{left:66.666667%}.sm\:top-9\/12{top:75%}.sm\:right-9\/12{right:75%}.sm\:bottom-9\/12{bottom:75%}.sm\:left-9\/12{left:75%}.sm\:top-10\/12{top:83.333333%}.sm\:right-10\/12{right:83.333333%}.sm\:bottom-10\/12{bottom:83.333333%}.sm\:left-10\/12{left:83.333333%}.sm\:top-11\/12{top:91.666667%}.sm\:right-11\/12{right:91.666667%}.sm\:bottom-11\/12{bottom:91.666667%}.sm\:left-11\/12{left:91.666667%}.sm\:top-full{top:100%}.sm\:right-full{right:100%}.sm\:bottom-full{bottom:100%}.sm\:left-full{left:100%}.sm\:resize-none{resize:none}.sm\:resize-y{resize:vertical}.sm\:resize-x{resize:horizontal}.sm\:resize{resize:both}.sm\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.sm\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.sm\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.sm\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.sm\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.sm\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.sm\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.sm\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.sm\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.sm\:shadow-none{box-shadow:none}.sm\:shadow-solid{box-shadow:0 0 0 2px currentColor}.sm\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.sm\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.sm\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.sm\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.sm\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.sm\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.sm\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.sm\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.sm\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.sm\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.group:focus .sm\:group-focus\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.group:focus .sm\:group-focus\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.group:focus .sm\:group-focus\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.group:focus .sm\:group-focus\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.group:focus .sm\:group-focus\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.group:focus .sm\:group-focus\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.group:focus .sm\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.group:focus .sm\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.group:focus .sm\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.group:focus .sm\:group-focus\:shadow-none{box-shadow:none}.group:focus .sm\:group-focus\:shadow-solid{box-shadow:0 0 0 2px currentColor}.group:focus .sm\:group-focus\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.group:focus .sm\:group-focus\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.group:focus .sm\:group-focus\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.group:focus .sm\:group-focus\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.group:focus .sm\:group-focus\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.group:focus .sm\:group-focus\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.group:focus .sm\:group-focus\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.group:focus .sm\:group-focus\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.group:focus .sm\:group-focus\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.group:focus .sm\:group-focus\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.sm\:hover\:shadow-xs:hover{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.sm\:hover\:shadow-sm:hover{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.sm\:hover\:shadow:hover{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.sm\:hover\:shadow-md:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.sm\:hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.sm\:hover\:shadow-xl:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.sm\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.sm\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.sm\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.sm\:hover\:shadow-none:hover{box-shadow:none}.sm\:hover\:shadow-solid:hover{box-shadow:0 0 0 2px currentColor}.sm\:hover\:shadow-outline-gray:hover{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.sm\:hover\:shadow-outline-blue:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.sm\:hover\:shadow-outline-teal:hover{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.sm\:hover\:shadow-outline-green:hover{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.sm\:hover\:shadow-outline-yellow:hover{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.sm\:hover\:shadow-outline-orange:hover{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.sm\:hover\:shadow-outline-red:hover{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.sm\:hover\:shadow-outline-pink:hover{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.sm\:hover\:shadow-outline-purple:hover{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.sm\:hover\:shadow-outline-indigo:hover{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.sm\:focus\:shadow-xs:focus{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.sm\:focus\:shadow-sm:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.sm\:focus\:shadow:focus{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.sm\:focus\:shadow-md:focus{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.sm\:focus\:shadow-lg:focus{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.sm\:focus\:shadow-xl:focus{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.sm\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.sm\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.sm\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.sm\:focus\:shadow-none:focus{box-shadow:none}.sm\:focus\:shadow-solid:focus{box-shadow:0 0 0 2px currentColor}.sm\:focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.sm\:focus\:shadow-outline-blue:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.sm\:focus\:shadow-outline-teal:focus{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.sm\:focus\:shadow-outline-green:focus{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.sm\:focus\:shadow-outline-yellow:focus{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.sm\:focus\:shadow-outline-orange:focus{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.sm\:focus\:shadow-outline-red:focus{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.sm\:focus\:shadow-outline-pink:focus{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.sm\:focus\:shadow-outline-purple:focus{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.sm\:focus\:shadow-outline-indigo:focus{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.sm\:fill-current{fill:currentColor}.sm\:stroke-current{stroke:currentColor}.sm\:stroke-0{stroke-width:0}.sm\:stroke-1{stroke-width:1}.sm\:stroke-2{stroke-width:2}.sm\:table-auto{table-layout:auto}.sm\:table-fixed{table-layout:fixed}.sm\:text-left{text-align:left}.sm\:text-center{text-align:center}.sm\:text-right{text-align:right}.sm\:text-justify{text-align:justify}.sm\:text-transparent{color:transparent}.sm\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.sm\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.sm\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.sm\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.sm\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.sm\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.sm\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.sm\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.sm\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.sm\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.sm\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.sm\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.sm\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.sm\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.sm\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.sm\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.sm\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.sm\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.sm\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.sm\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.sm\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.sm\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.sm\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.sm\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.sm\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.sm\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.sm\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.sm\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.sm\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.sm\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.sm\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.sm\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.sm\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.sm\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.sm\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.sm\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.sm\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.sm\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.sm\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.sm\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.sm\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.sm\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.sm\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.sm\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.sm\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.sm\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.sm\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.sm\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.sm\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.sm\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.sm\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.sm\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.sm\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.sm\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.sm\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.sm\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.sm\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.sm\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.sm\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.sm\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.sm\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.sm\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.sm\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.sm\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.sm\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.sm\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.sm\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.sm\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.sm\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.sm\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.sm\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.sm\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.sm\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.sm\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.sm\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.sm\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.sm\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.sm\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.sm\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.sm\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.sm\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.sm\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.sm\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.sm\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.sm\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.sm\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.sm\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.sm\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.sm\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.sm\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.sm\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.sm\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.sm\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.sm\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.sm\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.sm\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.sm\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.sm\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.sm\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.sm\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.sm\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.sm\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.sm\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.sm\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.sm\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.sm\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.sm\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.sm\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.sm\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.sm\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.sm\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.sm\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:hover .sm\:group-hover\:text-transparent{color:transparent}.group:hover .sm\:group-hover\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:hover .sm\:group-hover\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:hover .sm\:group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:hover .sm\:group-hover\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:hover .sm\:group-hover\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:hover .sm\:group-hover\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:hover .sm\:group-hover\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:hover .sm\:group-hover\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:hover .sm\:group-hover\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:hover .sm\:group-hover\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .sm\:group-hover\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:hover .sm\:group-hover\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:hover .sm\:group-hover\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:focus .sm\:group-focus\:text-transparent{color:transparent}.group:focus .sm\:group-focus\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:focus .sm\:group-focus\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:focus .sm\:group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:focus .sm\:group-focus\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:focus .sm\:group-focus\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:focus .sm\:group-focus\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:focus .sm\:group-focus\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:focus .sm\:group-focus\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:focus .sm\:group-focus\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:focus .sm\:group-focus\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .sm\:group-focus\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:focus .sm\:group-focus\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:focus .sm\:group-focus\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.sm\:hover\:text-transparent:hover{color:transparent}.sm\:hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.sm\:hover\:text-black:hover{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.sm\:hover\:text-gray-50:hover{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.sm\:hover\:text-gray-100:hover{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.sm\:hover\:text-gray-200:hover{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.sm\:hover\:text-gray-300:hover{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.sm\:hover\:text-gray-400:hover{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.sm\:hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.sm\:hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.sm\:hover\:text-gray-700:hover{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.sm\:hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.sm\:hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.sm\:hover\:text-cool-gray-50:hover{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.sm\:hover\:text-cool-gray-100:hover{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.sm\:hover\:text-cool-gray-200:hover{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.sm\:hover\:text-cool-gray-300:hover{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.sm\:hover\:text-cool-gray-400:hover{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.sm\:hover\:text-cool-gray-500:hover{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.sm\:hover\:text-cool-gray-600:hover{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.sm\:hover\:text-cool-gray-700:hover{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.sm\:hover\:text-cool-gray-800:hover{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.sm\:hover\:text-cool-gray-900:hover{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.sm\:hover\:text-red-50:hover{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.sm\:hover\:text-red-100:hover{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.sm\:hover\:text-red-200:hover{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.sm\:hover\:text-red-300:hover{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.sm\:hover\:text-red-400:hover{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.sm\:hover\:text-red-500:hover{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.sm\:hover\:text-red-600:hover{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.sm\:hover\:text-red-700:hover{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.sm\:hover\:text-red-800:hover{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.sm\:hover\:text-red-900:hover{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.sm\:hover\:text-orange-50:hover{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.sm\:hover\:text-orange-100:hover{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.sm\:hover\:text-orange-200:hover{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.sm\:hover\:text-orange-300:hover{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.sm\:hover\:text-orange-400:hover{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.sm\:hover\:text-orange-500:hover{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.sm\:hover\:text-orange-600:hover{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.sm\:hover\:text-orange-700:hover{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.sm\:hover\:text-orange-800:hover{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.sm\:hover\:text-orange-900:hover{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.sm\:hover\:text-yellow-50:hover{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.sm\:hover\:text-yellow-100:hover{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.sm\:hover\:text-yellow-200:hover{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.sm\:hover\:text-yellow-300:hover{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.sm\:hover\:text-yellow-400:hover{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.sm\:hover\:text-yellow-500:hover{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.sm\:hover\:text-yellow-600:hover{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.sm\:hover\:text-yellow-700:hover{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.sm\:hover\:text-yellow-800:hover{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.sm\:hover\:text-yellow-900:hover{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.sm\:hover\:text-green-50:hover{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.sm\:hover\:text-green-100:hover{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.sm\:hover\:text-green-200:hover{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.sm\:hover\:text-green-300:hover{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.sm\:hover\:text-green-400:hover{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.sm\:hover\:text-green-500:hover{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.sm\:hover\:text-green-600:hover{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.sm\:hover\:text-green-700:hover{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.sm\:hover\:text-green-800:hover{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.sm\:hover\:text-green-900:hover{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.sm\:hover\:text-teal-50:hover{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.sm\:hover\:text-teal-100:hover{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.sm\:hover\:text-teal-200:hover{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.sm\:hover\:text-teal-300:hover{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.sm\:hover\:text-teal-400:hover{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.sm\:hover\:text-teal-500:hover{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.sm\:hover\:text-teal-600:hover{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.sm\:hover\:text-teal-700:hover{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.sm\:hover\:text-teal-800:hover{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.sm\:hover\:text-teal-900:hover{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.sm\:hover\:text-blue-50:hover{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.sm\:hover\:text-blue-100:hover{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.sm\:hover\:text-blue-200:hover{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.sm\:hover\:text-blue-300:hover{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.sm\:hover\:text-blue-400:hover{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.sm\:hover\:text-blue-500:hover{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.sm\:hover\:text-blue-600:hover{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.sm\:hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.sm\:hover\:text-blue-800:hover{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.sm\:hover\:text-blue-900:hover{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.sm\:hover\:text-indigo-50:hover{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.sm\:hover\:text-indigo-100:hover{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.sm\:hover\:text-indigo-200:hover{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.sm\:hover\:text-indigo-300:hover{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.sm\:hover\:text-indigo-400:hover{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.sm\:hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.sm\:hover\:text-indigo-600:hover{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.sm\:hover\:text-indigo-700:hover{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.sm\:hover\:text-indigo-800:hover{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.sm\:hover\:text-indigo-900:hover{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.sm\:hover\:text-purple-50:hover{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.sm\:hover\:text-purple-100:hover{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.sm\:hover\:text-purple-200:hover{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.sm\:hover\:text-purple-300:hover{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.sm\:hover\:text-purple-400:hover{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.sm\:hover\:text-purple-500:hover{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.sm\:hover\:text-purple-600:hover{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.sm\:hover\:text-purple-700:hover{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.sm\:hover\:text-purple-800:hover{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.sm\:hover\:text-purple-900:hover{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.sm\:hover\:text-pink-50:hover{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.sm\:hover\:text-pink-100:hover{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.sm\:hover\:text-pink-200:hover{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.sm\:hover\:text-pink-300:hover{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.sm\:hover\:text-pink-400:hover{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.sm\:hover\:text-pink-500:hover{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.sm\:hover\:text-pink-600:hover{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.sm\:hover\:text-pink-700:hover{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.sm\:hover\:text-pink-800:hover{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.sm\:hover\:text-pink-900:hover{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.sm\:focus-within\:text-transparent:focus-within{color:transparent}.sm\:focus-within\:text-white:focus-within{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.sm\:focus-within\:text-black:focus-within{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.sm\:focus-within\:text-gray-50:focus-within{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.sm\:focus-within\:text-gray-100:focus-within{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.sm\:focus-within\:text-gray-200:focus-within{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.sm\:focus-within\:text-gray-300:focus-within{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.sm\:focus-within\:text-gray-400:focus-within{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.sm\:focus-within\:text-gray-500:focus-within{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.sm\:focus-within\:text-gray-600:focus-within{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.sm\:focus-within\:text-gray-700:focus-within{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.sm\:focus-within\:text-gray-800:focus-within{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.sm\:focus-within\:text-gray-900:focus-within{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-50:focus-within{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-100:focus-within{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-200:focus-within{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-300:focus-within{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-400:focus-within{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-500:focus-within{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-600:focus-within{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-700:focus-within{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-800:focus-within{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.sm\:focus-within\:text-cool-gray-900:focus-within{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.sm\:focus-within\:text-red-50:focus-within{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.sm\:focus-within\:text-red-100:focus-within{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.sm\:focus-within\:text-red-200:focus-within{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.sm\:focus-within\:text-red-300:focus-within{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.sm\:focus-within\:text-red-400:focus-within{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.sm\:focus-within\:text-red-500:focus-within{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.sm\:focus-within\:text-red-600:focus-within{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.sm\:focus-within\:text-red-700:focus-within{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.sm\:focus-within\:text-red-800:focus-within{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.sm\:focus-within\:text-red-900:focus-within{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.sm\:focus-within\:text-orange-50:focus-within{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.sm\:focus-within\:text-orange-100:focus-within{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.sm\:focus-within\:text-orange-200:focus-within{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.sm\:focus-within\:text-orange-300:focus-within{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.sm\:focus-within\:text-orange-400:focus-within{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.sm\:focus-within\:text-orange-500:focus-within{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.sm\:focus-within\:text-orange-600:focus-within{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.sm\:focus-within\:text-orange-700:focus-within{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.sm\:focus-within\:text-orange-800:focus-within{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.sm\:focus-within\:text-orange-900:focus-within{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.sm\:focus-within\:text-yellow-50:focus-within{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.sm\:focus-within\:text-yellow-100:focus-within{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.sm\:focus-within\:text-yellow-200:focus-within{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.sm\:focus-within\:text-yellow-300:focus-within{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.sm\:focus-within\:text-yellow-400:focus-within{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.sm\:focus-within\:text-yellow-500:focus-within{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.sm\:focus-within\:text-yellow-600:focus-within{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.sm\:focus-within\:text-yellow-700:focus-within{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.sm\:focus-within\:text-yellow-800:focus-within{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.sm\:focus-within\:text-yellow-900:focus-within{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.sm\:focus-within\:text-green-50:focus-within{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.sm\:focus-within\:text-green-100:focus-within{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.sm\:focus-within\:text-green-200:focus-within{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.sm\:focus-within\:text-green-300:focus-within{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.sm\:focus-within\:text-green-400:focus-within{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.sm\:focus-within\:text-green-500:focus-within{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.sm\:focus-within\:text-green-600:focus-within{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.sm\:focus-within\:text-green-700:focus-within{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.sm\:focus-within\:text-green-800:focus-within{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.sm\:focus-within\:text-green-900:focus-within{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.sm\:focus-within\:text-teal-50:focus-within{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.sm\:focus-within\:text-teal-100:focus-within{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.sm\:focus-within\:text-teal-200:focus-within{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.sm\:focus-within\:text-teal-300:focus-within{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.sm\:focus-within\:text-teal-400:focus-within{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.sm\:focus-within\:text-teal-500:focus-within{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.sm\:focus-within\:text-teal-600:focus-within{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.sm\:focus-within\:text-teal-700:focus-within{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.sm\:focus-within\:text-teal-800:focus-within{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.sm\:focus-within\:text-teal-900:focus-within{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.sm\:focus-within\:text-blue-50:focus-within{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.sm\:focus-within\:text-blue-100:focus-within{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.sm\:focus-within\:text-blue-200:focus-within{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.sm\:focus-within\:text-blue-300:focus-within{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.sm\:focus-within\:text-blue-400:focus-within{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.sm\:focus-within\:text-blue-500:focus-within{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.sm\:focus-within\:text-blue-600:focus-within{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.sm\:focus-within\:text-blue-700:focus-within{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.sm\:focus-within\:text-blue-800:focus-within{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.sm\:focus-within\:text-blue-900:focus-within{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.sm\:focus-within\:text-indigo-50:focus-within{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.sm\:focus-within\:text-indigo-100:focus-within{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.sm\:focus-within\:text-indigo-200:focus-within{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.sm\:focus-within\:text-indigo-300:focus-within{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.sm\:focus-within\:text-indigo-400:focus-within{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.sm\:focus-within\:text-indigo-500:focus-within{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.sm\:focus-within\:text-indigo-600:focus-within{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.sm\:focus-within\:text-indigo-700:focus-within{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.sm\:focus-within\:text-indigo-800:focus-within{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.sm\:focus-within\:text-indigo-900:focus-within{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.sm\:focus-within\:text-purple-50:focus-within{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.sm\:focus-within\:text-purple-100:focus-within{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.sm\:focus-within\:text-purple-200:focus-within{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.sm\:focus-within\:text-purple-300:focus-within{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.sm\:focus-within\:text-purple-400:focus-within{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.sm\:focus-within\:text-purple-500:focus-within{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.sm\:focus-within\:text-purple-600:focus-within{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.sm\:focus-within\:text-purple-700:focus-within{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.sm\:focus-within\:text-purple-800:focus-within{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.sm\:focus-within\:text-purple-900:focus-within{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.sm\:focus-within\:text-pink-50:focus-within{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.sm\:focus-within\:text-pink-100:focus-within{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.sm\:focus-within\:text-pink-200:focus-within{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.sm\:focus-within\:text-pink-300:focus-within{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.sm\:focus-within\:text-pink-400:focus-within{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.sm\:focus-within\:text-pink-500:focus-within{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.sm\:focus-within\:text-pink-600:focus-within{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.sm\:focus-within\:text-pink-700:focus-within{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.sm\:focus-within\:text-pink-800:focus-within{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.sm\:focus-within\:text-pink-900:focus-within{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.sm\:focus\:text-transparent:focus{color:transparent}.sm\:focus\:text-white:focus{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.sm\:focus\:text-black:focus{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.sm\:focus\:text-gray-50:focus{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.sm\:focus\:text-gray-100:focus{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.sm\:focus\:text-gray-200:focus{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.sm\:focus\:text-gray-300:focus{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.sm\:focus\:text-gray-400:focus{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.sm\:focus\:text-gray-500:focus{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.sm\:focus\:text-gray-600:focus{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.sm\:focus\:text-gray-700:focus{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.sm\:focus\:text-gray-800:focus{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.sm\:focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.sm\:focus\:text-cool-gray-50:focus{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.sm\:focus\:text-cool-gray-100:focus{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.sm\:focus\:text-cool-gray-200:focus{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.sm\:focus\:text-cool-gray-300:focus{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.sm\:focus\:text-cool-gray-400:focus{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.sm\:focus\:text-cool-gray-500:focus{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.sm\:focus\:text-cool-gray-600:focus{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.sm\:focus\:text-cool-gray-700:focus{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.sm\:focus\:text-cool-gray-800:focus{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.sm\:focus\:text-cool-gray-900:focus{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.sm\:focus\:text-red-50:focus{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.sm\:focus\:text-red-100:focus{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.sm\:focus\:text-red-200:focus{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.sm\:focus\:text-red-300:focus{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.sm\:focus\:text-red-400:focus{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.sm\:focus\:text-red-500:focus{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.sm\:focus\:text-red-600:focus{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.sm\:focus\:text-red-700:focus{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.sm\:focus\:text-red-800:focus{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.sm\:focus\:text-red-900:focus{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.sm\:focus\:text-orange-50:focus{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.sm\:focus\:text-orange-100:focus{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.sm\:focus\:text-orange-200:focus{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.sm\:focus\:text-orange-300:focus{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.sm\:focus\:text-orange-400:focus{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.sm\:focus\:text-orange-500:focus{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.sm\:focus\:text-orange-600:focus{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.sm\:focus\:text-orange-700:focus{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.sm\:focus\:text-orange-800:focus{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.sm\:focus\:text-orange-900:focus{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.sm\:focus\:text-yellow-50:focus{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.sm\:focus\:text-yellow-100:focus{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.sm\:focus\:text-yellow-200:focus{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.sm\:focus\:text-yellow-300:focus{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.sm\:focus\:text-yellow-400:focus{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.sm\:focus\:text-yellow-500:focus{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.sm\:focus\:text-yellow-600:focus{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.sm\:focus\:text-yellow-700:focus{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.sm\:focus\:text-yellow-800:focus{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.sm\:focus\:text-yellow-900:focus{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.sm\:focus\:text-green-50:focus{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.sm\:focus\:text-green-100:focus{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.sm\:focus\:text-green-200:focus{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.sm\:focus\:text-green-300:focus{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.sm\:focus\:text-green-400:focus{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.sm\:focus\:text-green-500:focus{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.sm\:focus\:text-green-600:focus{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.sm\:focus\:text-green-700:focus{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.sm\:focus\:text-green-800:focus{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.sm\:focus\:text-green-900:focus{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.sm\:focus\:text-teal-50:focus{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.sm\:focus\:text-teal-100:focus{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.sm\:focus\:text-teal-200:focus{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.sm\:focus\:text-teal-300:focus{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.sm\:focus\:text-teal-400:focus{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.sm\:focus\:text-teal-500:focus{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.sm\:focus\:text-teal-600:focus{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.sm\:focus\:text-teal-700:focus{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.sm\:focus\:text-teal-800:focus{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.sm\:focus\:text-teal-900:focus{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.sm\:focus\:text-blue-50:focus{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.sm\:focus\:text-blue-100:focus{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.sm\:focus\:text-blue-200:focus{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.sm\:focus\:text-blue-300:focus{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.sm\:focus\:text-blue-400:focus{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.sm\:focus\:text-blue-500:focus{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.sm\:focus\:text-blue-600:focus{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.sm\:focus\:text-blue-700:focus{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.sm\:focus\:text-blue-800:focus{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.sm\:focus\:text-blue-900:focus{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.sm\:focus\:text-indigo-50:focus{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.sm\:focus\:text-indigo-100:focus{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.sm\:focus\:text-indigo-200:focus{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.sm\:focus\:text-indigo-300:focus{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.sm\:focus\:text-indigo-400:focus{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.sm\:focus\:text-indigo-500:focus{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.sm\:focus\:text-indigo-600:focus{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.sm\:focus\:text-indigo-700:focus{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.sm\:focus\:text-indigo-800:focus{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.sm\:focus\:text-indigo-900:focus{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.sm\:focus\:text-purple-50:focus{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.sm\:focus\:text-purple-100:focus{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.sm\:focus\:text-purple-200:focus{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.sm\:focus\:text-purple-300:focus{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.sm\:focus\:text-purple-400:focus{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.sm\:focus\:text-purple-500:focus{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.sm\:focus\:text-purple-600:focus{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.sm\:focus\:text-purple-700:focus{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.sm\:focus\:text-purple-800:focus{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.sm\:focus\:text-purple-900:focus{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.sm\:focus\:text-pink-50:focus{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.sm\:focus\:text-pink-100:focus{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.sm\:focus\:text-pink-200:focus{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.sm\:focus\:text-pink-300:focus{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.sm\:focus\:text-pink-400:focus{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.sm\:focus\:text-pink-500:focus{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.sm\:focus\:text-pink-600:focus{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.sm\:focus\:text-pink-700:focus{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.sm\:focus\:text-pink-800:focus{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.sm\:focus\:text-pink-900:focus{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.sm\:active\:text-transparent:active{color:transparent}.sm\:active\:text-white:active{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.sm\:active\:text-black:active{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.sm\:active\:text-gray-50:active{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.sm\:active\:text-gray-100:active{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.sm\:active\:text-gray-200:active{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.sm\:active\:text-gray-300:active{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.sm\:active\:text-gray-400:active{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.sm\:active\:text-gray-500:active{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.sm\:active\:text-gray-600:active{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.sm\:active\:text-gray-700:active{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.sm\:active\:text-gray-800:active{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.sm\:active\:text-gray-900:active{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.sm\:active\:text-cool-gray-50:active{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.sm\:active\:text-cool-gray-100:active{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.sm\:active\:text-cool-gray-200:active{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.sm\:active\:text-cool-gray-300:active{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.sm\:active\:text-cool-gray-400:active{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.sm\:active\:text-cool-gray-500:active{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.sm\:active\:text-cool-gray-600:active{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.sm\:active\:text-cool-gray-700:active{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.sm\:active\:text-cool-gray-800:active{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.sm\:active\:text-cool-gray-900:active{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.sm\:active\:text-red-50:active{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.sm\:active\:text-red-100:active{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.sm\:active\:text-red-200:active{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.sm\:active\:text-red-300:active{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.sm\:active\:text-red-400:active{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.sm\:active\:text-red-500:active{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.sm\:active\:text-red-600:active{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.sm\:active\:text-red-700:active{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.sm\:active\:text-red-800:active{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.sm\:active\:text-red-900:active{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.sm\:active\:text-orange-50:active{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.sm\:active\:text-orange-100:active{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.sm\:active\:text-orange-200:active{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.sm\:active\:text-orange-300:active{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.sm\:active\:text-orange-400:active{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.sm\:active\:text-orange-500:active{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.sm\:active\:text-orange-600:active{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.sm\:active\:text-orange-700:active{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.sm\:active\:text-orange-800:active{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.sm\:active\:text-orange-900:active{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.sm\:active\:text-yellow-50:active{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.sm\:active\:text-yellow-100:active{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.sm\:active\:text-yellow-200:active{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.sm\:active\:text-yellow-300:active{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.sm\:active\:text-yellow-400:active{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.sm\:active\:text-yellow-500:active{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.sm\:active\:text-yellow-600:active{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.sm\:active\:text-yellow-700:active{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.sm\:active\:text-yellow-800:active{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.sm\:active\:text-yellow-900:active{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.sm\:active\:text-green-50:active{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.sm\:active\:text-green-100:active{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.sm\:active\:text-green-200:active{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.sm\:active\:text-green-300:active{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.sm\:active\:text-green-400:active{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.sm\:active\:text-green-500:active{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.sm\:active\:text-green-600:active{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.sm\:active\:text-green-700:active{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.sm\:active\:text-green-800:active{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.sm\:active\:text-green-900:active{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.sm\:active\:text-teal-50:active{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.sm\:active\:text-teal-100:active{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.sm\:active\:text-teal-200:active{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.sm\:active\:text-teal-300:active{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.sm\:active\:text-teal-400:active{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.sm\:active\:text-teal-500:active{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.sm\:active\:text-teal-600:active{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.sm\:active\:text-teal-700:active{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.sm\:active\:text-teal-800:active{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.sm\:active\:text-teal-900:active{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.sm\:active\:text-blue-50:active{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.sm\:active\:text-blue-100:active{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.sm\:active\:text-blue-200:active{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.sm\:active\:text-blue-300:active{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.sm\:active\:text-blue-400:active{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.sm\:active\:text-blue-500:active{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.sm\:active\:text-blue-600:active{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.sm\:active\:text-blue-700:active{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.sm\:active\:text-blue-800:active{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.sm\:active\:text-blue-900:active{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.sm\:active\:text-indigo-50:active{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.sm\:active\:text-indigo-100:active{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.sm\:active\:text-indigo-200:active{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.sm\:active\:text-indigo-300:active{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.sm\:active\:text-indigo-400:active{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.sm\:active\:text-indigo-500:active{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.sm\:active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.sm\:active\:text-indigo-700:active{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.sm\:active\:text-indigo-800:active{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.sm\:active\:text-indigo-900:active{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.sm\:active\:text-purple-50:active{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.sm\:active\:text-purple-100:active{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.sm\:active\:text-purple-200:active{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.sm\:active\:text-purple-300:active{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.sm\:active\:text-purple-400:active{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.sm\:active\:text-purple-500:active{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.sm\:active\:text-purple-600:active{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.sm\:active\:text-purple-700:active{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.sm\:active\:text-purple-800:active{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.sm\:active\:text-purple-900:active{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.sm\:active\:text-pink-50:active{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.sm\:active\:text-pink-100:active{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.sm\:active\:text-pink-200:active{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.sm\:active\:text-pink-300:active{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.sm\:active\:text-pink-400:active{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.sm\:active\:text-pink-500:active{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.sm\:active\:text-pink-600:active{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.sm\:active\:text-pink-700:active{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.sm\:active\:text-pink-800:active{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.sm\:active\:text-pink-900:active{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.sm\:text-opacity-0{--text-opacity:0}.sm\:text-opacity-25{--text-opacity:0.25}.sm\:text-opacity-50{--text-opacity:0.5}.sm\:text-opacity-75{--text-opacity:0.75}.sm\:text-opacity-100{--text-opacity:1}.sm\:hover\:text-opacity-0:hover{--text-opacity:0}.sm\:hover\:text-opacity-25:hover{--text-opacity:0.25}.sm\:hover\:text-opacity-50:hover{--text-opacity:0.5}.sm\:hover\:text-opacity-75:hover{--text-opacity:0.75}.sm\:hover\:text-opacity-100:hover{--text-opacity:1}.sm\:focus\:text-opacity-0:focus{--text-opacity:0}.sm\:focus\:text-opacity-25:focus{--text-opacity:0.25}.sm\:focus\:text-opacity-50:focus{--text-opacity:0.5}.sm\:focus\:text-opacity-75:focus{--text-opacity:0.75}.sm\:focus\:text-opacity-100:focus{--text-opacity:1}.sm\:italic{font-style:italic}.sm\:not-italic{font-style:normal}.sm\:uppercase{text-transform:uppercase}.sm\:lowercase{text-transform:lowercase}.sm\:capitalize{text-transform:capitalize}.sm\:normal-case{text-transform:none}.sm\:underline{text-decoration:underline}.sm\:line-through{text-decoration:line-through}.sm\:no-underline{text-decoration:none}.group:hover .sm\:group-hover\:underline{text-decoration:underline}.group:hover .sm\:group-hover\:line-through{text-decoration:line-through}.group:hover .sm\:group-hover\:no-underline{text-decoration:none}.group:focus .sm\:group-focus\:underline{text-decoration:underline}.group:focus .sm\:group-focus\:line-through{text-decoration:line-through}.group:focus .sm\:group-focus\:no-underline{text-decoration:none}.sm\:hover\:underline:hover{text-decoration:underline}.sm\:hover\:line-through:hover{text-decoration:line-through}.sm\:hover\:no-underline:hover{text-decoration:none}.sm\:focus\:underline:focus{text-decoration:underline}.sm\:focus\:line-through:focus{text-decoration:line-through}.sm\:focus\:no-underline:focus{text-decoration:none}.sm\:antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.sm\:subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.sm\:tracking-tighter{letter-spacing:-.05em}.sm\:tracking-tight{letter-spacing:-.025em}.sm\:tracking-normal{letter-spacing:0}.sm\:tracking-wide{letter-spacing:.025em}.sm\:tracking-wider{letter-spacing:.05em}.sm\:tracking-widest{letter-spacing:.1em}.sm\:select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sm\:select-text{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.sm\:select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.sm\:select-auto{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.sm\:align-baseline{vertical-align:baseline}.sm\:align-top{vertical-align:top}.sm\:align-middle{vertical-align:middle}.sm\:align-bottom{vertical-align:bottom}.sm\:align-text-top{vertical-align:text-top}.sm\:align-text-bottom{vertical-align:text-bottom}.sm\:visible{visibility:visible}.sm\:invisible{visibility:hidden}.sm\:whitespace-normal{white-space:normal}.sm\:whitespace-no-wrap{white-space:nowrap}.sm\:whitespace-pre{white-space:pre}.sm\:whitespace-pre-line{white-space:pre-line}.sm\:whitespace-pre-wrap{white-space:pre-wrap}.sm\:break-normal{overflow-wrap:normal;word-break:normal}.sm\:break-words{overflow-wrap:break-word}.sm\:break-all{word-break:break-all}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:w-0{width:0}.sm\:w-1{width:.25rem}.sm\:w-2{width:.5rem}.sm\:w-3{width:.75rem}.sm\:w-4{width:1rem}.sm\:w-5{width:1.25rem}.sm\:w-6{width:1.5rem}.sm\:w-7{width:1.75rem}.sm\:w-8{width:2rem}.sm\:w-9{width:2.25rem}.sm\:w-10{width:2.5rem}.sm\:w-11{width:2.75rem}.sm\:w-12{width:3rem}.sm\:w-13{width:3.25rem}.sm\:w-14{width:3.5rem}.sm\:w-15{width:3.75rem}.sm\:w-16{width:4rem}.sm\:w-20{width:5rem}.sm\:w-24{width:6rem}.sm\:w-28{width:7rem}.sm\:w-32{width:8rem}.sm\:w-36{width:9rem}.sm\:w-40{width:10rem}.sm\:w-44{width:11rem}.sm\:w-48{width:12rem}.sm\:w-52{width:13rem}.sm\:w-56{width:14rem}.sm\:w-60{width:15rem}.sm\:w-64{width:16rem}.sm\:w-72{width:18rem}.sm\:w-80{width:20rem}.sm\:w-96{width:24rem}.sm\:w-auto{width:auto}.sm\:w-px{width:1px}.sm\:w-0\.5{width:.125rem}.sm\:w-1\.5{width:.375rem}.sm\:w-2\.5{width:.625rem}.sm\:w-3\.5{width:.875rem}.sm\:w-1\/2{width:50%}.sm\:w-1\/3{width:33.333333%}.sm\:w-2\/3{width:66.666667%}.sm\:w-1\/4{width:25%}.sm\:w-2\/4{width:50%}.sm\:w-3\/4{width:75%}.sm\:w-1\/5{width:20%}.sm\:w-2\/5{width:40%}.sm\:w-3\/5{width:60%}.sm\:w-4\/5{width:80%}.sm\:w-1\/6{width:16.666667%}.sm\:w-2\/6{width:33.333333%}.sm\:w-3\/6{width:50%}.sm\:w-4\/6{width:66.666667%}.sm\:w-5\/6{width:83.333333%}.sm\:w-1\/12{width:8.333333%}.sm\:w-2\/12{width:16.666667%}.sm\:w-3\/12{width:25%}.sm\:w-4\/12{width:33.333333%}.sm\:w-5\/12{width:41.666667%}.sm\:w-6\/12{width:50%}.sm\:w-7\/12{width:58.333333%}.sm\:w-8\/12{width:66.666667%}.sm\:w-9\/12{width:75%}.sm\:w-10\/12{width:83.333333%}.sm\:w-11\/12{width:91.666667%}.sm\:w-full{width:100%}.sm\:w-screen{width:100vw}.sm\:w-min-content{width:-webkit-min-content;width:-moz-min-content;width:min-content}.sm\:w-max-content{width:-webkit-max-content;width:-moz-max-content;width:max-content}.sm\:z-0{z-index:0}.sm\:z-10{z-index:10}.sm\:z-20{z-index:20}.sm\:z-30{z-index:30}.sm\:z-40{z-index:40}.sm\:z-50{z-index:50}.sm\:z-auto{z-index:auto}.sm\:focus-within\:z-0:focus-within{z-index:0}.sm\:focus-within\:z-10:focus-within{z-index:10}.sm\:focus-within\:z-20:focus-within{z-index:20}.sm\:focus-within\:z-30:focus-within{z-index:30}.sm\:focus-within\:z-40:focus-within{z-index:40}.sm\:focus-within\:z-50:focus-within{z-index:50}.sm\:focus-within\:z-auto:focus-within{z-index:auto}.sm\:focus\:z-0:focus{z-index:0}.sm\:focus\:z-10:focus{z-index:10}.sm\:focus\:z-20:focus{z-index:20}.sm\:focus\:z-30:focus{z-index:30}.sm\:focus\:z-40:focus{z-index:40}.sm\:focus\:z-50:focus{z-index:50}.sm\:focus\:z-auto:focus{z-index:auto}.sm\:gap-0{grid-gap:0;gap:0}.sm\:gap-1{grid-gap:.25rem;gap:.25rem}.sm\:gap-2{grid-gap:.5rem;gap:.5rem}.sm\:gap-3{grid-gap:.75rem;gap:.75rem}.sm\:gap-4{grid-gap:1rem;gap:1rem}.sm\:gap-5{grid-gap:1.25rem;gap:1.25rem}.sm\:gap-6{grid-gap:1.5rem;gap:1.5rem}.sm\:gap-7{grid-gap:1.75rem;gap:1.75rem}.sm\:gap-8{grid-gap:2rem;gap:2rem}.sm\:gap-9{grid-gap:2.25rem;gap:2.25rem}.sm\:gap-10{grid-gap:2.5rem;gap:2.5rem}.sm\:gap-11{grid-gap:2.75rem;gap:2.75rem}.sm\:gap-12{grid-gap:3rem;gap:3rem}.sm\:gap-13{grid-gap:3.25rem;gap:3.25rem}.sm\:gap-14{grid-gap:3.5rem;gap:3.5rem}.sm\:gap-15{grid-gap:3.75rem;gap:3.75rem}.sm\:gap-16{grid-gap:4rem;gap:4rem}.sm\:gap-20{grid-gap:5rem;gap:5rem}.sm\:gap-24{grid-gap:6rem;gap:6rem}.sm\:gap-28{grid-gap:7rem;gap:7rem}.sm\:gap-32{grid-gap:8rem;gap:8rem}.sm\:gap-36{grid-gap:9rem;gap:9rem}.sm\:gap-40{grid-gap:10rem;gap:10rem}.sm\:gap-44{grid-gap:11rem;gap:11rem}.sm\:gap-48{grid-gap:12rem;gap:12rem}.sm\:gap-52{grid-gap:13rem;gap:13rem}.sm\:gap-56{grid-gap:14rem;gap:14rem}.sm\:gap-60{grid-gap:15rem;gap:15rem}.sm\:gap-64{grid-gap:16rem;gap:16rem}.sm\:gap-72{grid-gap:18rem;gap:18rem}.sm\:gap-80{grid-gap:20rem;gap:20rem}.sm\:gap-96{grid-gap:24rem;gap:24rem}.sm\:gap-px{grid-gap:1px;gap:1px}.sm\:gap-0\.5{grid-gap:.125rem;gap:.125rem}.sm\:gap-1\.5{grid-gap:.375rem;gap:.375rem}.sm\:gap-2\.5{grid-gap:.625rem;gap:.625rem}.sm\:gap-3\.5{grid-gap:.875rem;gap:.875rem}.sm\:gap-1\/2{grid-gap:50%;gap:50%}.sm\:gap-1\/3{grid-gap:33.333333%;gap:33.333333%}.sm\:gap-2\/3{grid-gap:66.666667%;gap:66.666667%}.sm\:gap-1\/4{grid-gap:25%;gap:25%}.sm\:gap-2\/4{grid-gap:50%;gap:50%}.sm\:gap-3\/4{grid-gap:75%;gap:75%}.sm\:gap-1\/5{grid-gap:20%;gap:20%}.sm\:gap-2\/5{grid-gap:40%;gap:40%}.sm\:gap-3\/5{grid-gap:60%;gap:60%}.sm\:gap-4\/5{grid-gap:80%;gap:80%}.sm\:gap-1\/6{grid-gap:16.666667%;gap:16.666667%}.sm\:gap-2\/6{grid-gap:33.333333%;gap:33.333333%}.sm\:gap-3\/6{grid-gap:50%;gap:50%}.sm\:gap-4\/6{grid-gap:66.666667%;gap:66.666667%}.sm\:gap-5\/6{grid-gap:83.333333%;gap:83.333333%}.sm\:gap-1\/12{grid-gap:8.333333%;gap:8.333333%}.sm\:gap-2\/12{grid-gap:16.666667%;gap:16.666667%}.sm\:gap-3\/12{grid-gap:25%;gap:25%}.sm\:gap-4\/12{grid-gap:33.333333%;gap:33.333333%}.sm\:gap-5\/12{grid-gap:41.666667%;gap:41.666667%}.sm\:gap-6\/12{grid-gap:50%;gap:50%}.sm\:gap-7\/12{grid-gap:58.333333%;gap:58.333333%}.sm\:gap-8\/12{grid-gap:66.666667%;gap:66.666667%}.sm\:gap-9\/12{grid-gap:75%;gap:75%}.sm\:gap-10\/12{grid-gap:83.333333%;gap:83.333333%}.sm\:gap-11\/12{grid-gap:91.666667%;gap:91.666667%}.sm\:gap-full{grid-gap:100%;gap:100%}.sm\:col-gap-0{grid-column-gap:0;-moz-column-gap:0;column-gap:0}.sm\:col-gap-1{grid-column-gap:.25rem;-moz-column-gap:.25rem;column-gap:.25rem}.sm\:col-gap-2{grid-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}.sm\:col-gap-3{grid-column-gap:.75rem;-moz-column-gap:.75rem;column-gap:.75rem}.sm\:col-gap-4{grid-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.sm\:col-gap-5{grid-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.sm\:col-gap-6{grid-column-gap:1.5rem;-moz-column-gap:1.5rem;column-gap:1.5rem}.sm\:col-gap-7{grid-column-gap:1.75rem;-moz-column-gap:1.75rem;column-gap:1.75rem}.sm\:col-gap-8{grid-column-gap:2rem;-moz-column-gap:2rem;column-gap:2rem}.sm\:col-gap-9{grid-column-gap:2.25rem;-moz-column-gap:2.25rem;column-gap:2.25rem}.sm\:col-gap-10{grid-column-gap:2.5rem;-moz-column-gap:2.5rem;column-gap:2.5rem}.sm\:col-gap-11{grid-column-gap:2.75rem;-moz-column-gap:2.75rem;column-gap:2.75rem}.sm\:col-gap-12{grid-column-gap:3rem;-moz-column-gap:3rem;column-gap:3rem}.sm\:col-gap-13{grid-column-gap:3.25rem;-moz-column-gap:3.25rem;column-gap:3.25rem}.sm\:col-gap-14{grid-column-gap:3.5rem;-moz-column-gap:3.5rem;column-gap:3.5rem}.sm\:col-gap-15{grid-column-gap:3.75rem;-moz-column-gap:3.75rem;column-gap:3.75rem}.sm\:col-gap-16{grid-column-gap:4rem;-moz-column-gap:4rem;column-gap:4rem}.sm\:col-gap-20{grid-column-gap:5rem;-moz-column-gap:5rem;column-gap:5rem}.sm\:col-gap-24{grid-column-gap:6rem;-moz-column-gap:6rem;column-gap:6rem}.sm\:col-gap-28{grid-column-gap:7rem;-moz-column-gap:7rem;column-gap:7rem}.sm\:col-gap-32{grid-column-gap:8rem;-moz-column-gap:8rem;column-gap:8rem}.sm\:col-gap-36{grid-column-gap:9rem;-moz-column-gap:9rem;column-gap:9rem}.sm\:col-gap-40{grid-column-gap:10rem;-moz-column-gap:10rem;column-gap:10rem}.sm\:col-gap-44{grid-column-gap:11rem;-moz-column-gap:11rem;column-gap:11rem}.sm\:col-gap-48{grid-column-gap:12rem;-moz-column-gap:12rem;column-gap:12rem}.sm\:col-gap-52{grid-column-gap:13rem;-moz-column-gap:13rem;column-gap:13rem}.sm\:col-gap-56{grid-column-gap:14rem;-moz-column-gap:14rem;column-gap:14rem}.sm\:col-gap-60{grid-column-gap:15rem;-moz-column-gap:15rem;column-gap:15rem}.sm\:col-gap-64{grid-column-gap:16rem;-moz-column-gap:16rem;column-gap:16rem}.sm\:col-gap-72{grid-column-gap:18rem;-moz-column-gap:18rem;column-gap:18rem}.sm\:col-gap-80{grid-column-gap:20rem;-moz-column-gap:20rem;column-gap:20rem}.sm\:col-gap-96{grid-column-gap:24rem;-moz-column-gap:24rem;column-gap:24rem}.sm\:col-gap-px{grid-column-gap:1px;-moz-column-gap:1px;column-gap:1px}.sm\:col-gap-0\.5{grid-column-gap:.125rem;-moz-column-gap:.125rem;column-gap:.125rem}.sm\:col-gap-1\.5{grid-column-gap:.375rem;-moz-column-gap:.375rem;column-gap:.375rem}.sm\:col-gap-2\.5{grid-column-gap:.625rem;-moz-column-gap:.625rem;column-gap:.625rem}.sm\:col-gap-3\.5{grid-column-gap:.875rem;-moz-column-gap:.875rem;column-gap:.875rem}.sm\:col-gap-1\/2{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.sm\:col-gap-1\/3{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.sm\:col-gap-2\/3{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.sm\:col-gap-1\/4{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.sm\:col-gap-2\/4{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.sm\:col-gap-3\/4{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.sm\:col-gap-1\/5{grid-column-gap:20%;-moz-column-gap:20%;column-gap:20%}.sm\:col-gap-2\/5{grid-column-gap:40%;-moz-column-gap:40%;column-gap:40%}.sm\:col-gap-3\/5{grid-column-gap:60%;-moz-column-gap:60%;column-gap:60%}.sm\:col-gap-4\/5{grid-column-gap:80%;-moz-column-gap:80%;column-gap:80%}.sm\:col-gap-1\/6{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.sm\:col-gap-2\/6{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.sm\:col-gap-3\/6{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.sm\:col-gap-4\/6{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.sm\:col-gap-5\/6{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.sm\:col-gap-1\/12{grid-column-gap:8.333333%;-moz-column-gap:8.333333%;column-gap:8.333333%}.sm\:col-gap-2\/12{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.sm\:col-gap-3\/12{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.sm\:col-gap-4\/12{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.sm\:col-gap-5\/12{grid-column-gap:41.666667%;-moz-column-gap:41.666667%;column-gap:41.666667%}.sm\:col-gap-6\/12{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.sm\:col-gap-7\/12{grid-column-gap:58.333333%;-moz-column-gap:58.333333%;column-gap:58.333333%}.sm\:col-gap-8\/12{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.sm\:col-gap-9\/12{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.sm\:col-gap-10\/12{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.sm\:col-gap-11\/12{grid-column-gap:91.666667%;-moz-column-gap:91.666667%;column-gap:91.666667%}.sm\:col-gap-full{grid-column-gap:100%;-moz-column-gap:100%;column-gap:100%}.sm\:row-gap-0{grid-row-gap:0;row-gap:0}.sm\:row-gap-1{grid-row-gap:.25rem;row-gap:.25rem}.sm\:row-gap-2{grid-row-gap:.5rem;row-gap:.5rem}.sm\:row-gap-3{grid-row-gap:.75rem;row-gap:.75rem}.sm\:row-gap-4{grid-row-gap:1rem;row-gap:1rem}.sm\:row-gap-5{grid-row-gap:1.25rem;row-gap:1.25rem}.sm\:row-gap-6{grid-row-gap:1.5rem;row-gap:1.5rem}.sm\:row-gap-7{grid-row-gap:1.75rem;row-gap:1.75rem}.sm\:row-gap-8{grid-row-gap:2rem;row-gap:2rem}.sm\:row-gap-9{grid-row-gap:2.25rem;row-gap:2.25rem}.sm\:row-gap-10{grid-row-gap:2.5rem;row-gap:2.5rem}.sm\:row-gap-11{grid-row-gap:2.75rem;row-gap:2.75rem}.sm\:row-gap-12{grid-row-gap:3rem;row-gap:3rem}.sm\:row-gap-13{grid-row-gap:3.25rem;row-gap:3.25rem}.sm\:row-gap-14{grid-row-gap:3.5rem;row-gap:3.5rem}.sm\:row-gap-15{grid-row-gap:3.75rem;row-gap:3.75rem}.sm\:row-gap-16{grid-row-gap:4rem;row-gap:4rem}.sm\:row-gap-20{grid-row-gap:5rem;row-gap:5rem}.sm\:row-gap-24{grid-row-gap:6rem;row-gap:6rem}.sm\:row-gap-28{grid-row-gap:7rem;row-gap:7rem}.sm\:row-gap-32{grid-row-gap:8rem;row-gap:8rem}.sm\:row-gap-36{grid-row-gap:9rem;row-gap:9rem}.sm\:row-gap-40{grid-row-gap:10rem;row-gap:10rem}.sm\:row-gap-44{grid-row-gap:11rem;row-gap:11rem}.sm\:row-gap-48{grid-row-gap:12rem;row-gap:12rem}.sm\:row-gap-52{grid-row-gap:13rem;row-gap:13rem}.sm\:row-gap-56{grid-row-gap:14rem;row-gap:14rem}.sm\:row-gap-60{grid-row-gap:15rem;row-gap:15rem}.sm\:row-gap-64{grid-row-gap:16rem;row-gap:16rem}.sm\:row-gap-72{grid-row-gap:18rem;row-gap:18rem}.sm\:row-gap-80{grid-row-gap:20rem;row-gap:20rem}.sm\:row-gap-96{grid-row-gap:24rem;row-gap:24rem}.sm\:row-gap-px{grid-row-gap:1px;row-gap:1px}.sm\:row-gap-0\.5{grid-row-gap:.125rem;row-gap:.125rem}.sm\:row-gap-1\.5{grid-row-gap:.375rem;row-gap:.375rem}.sm\:row-gap-2\.5{grid-row-gap:.625rem;row-gap:.625rem}.sm\:row-gap-3\.5{grid-row-gap:.875rem;row-gap:.875rem}.sm\:row-gap-1\/2{grid-row-gap:50%;row-gap:50%}.sm\:row-gap-1\/3{grid-row-gap:33.333333%;row-gap:33.333333%}.sm\:row-gap-2\/3{grid-row-gap:66.666667%;row-gap:66.666667%}.sm\:row-gap-1\/4{grid-row-gap:25%;row-gap:25%}.sm\:row-gap-2\/4{grid-row-gap:50%;row-gap:50%}.sm\:row-gap-3\/4{grid-row-gap:75%;row-gap:75%}.sm\:row-gap-1\/5{grid-row-gap:20%;row-gap:20%}.sm\:row-gap-2\/5{grid-row-gap:40%;row-gap:40%}.sm\:row-gap-3\/5{grid-row-gap:60%;row-gap:60%}.sm\:row-gap-4\/5{grid-row-gap:80%;row-gap:80%}.sm\:row-gap-1\/6{grid-row-gap:16.666667%;row-gap:16.666667%}.sm\:row-gap-2\/6{grid-row-gap:33.333333%;row-gap:33.333333%}.sm\:row-gap-3\/6{grid-row-gap:50%;row-gap:50%}.sm\:row-gap-4\/6{grid-row-gap:66.666667%;row-gap:66.666667%}.sm\:row-gap-5\/6{grid-row-gap:83.333333%;row-gap:83.333333%}.sm\:row-gap-1\/12{grid-row-gap:8.333333%;row-gap:8.333333%}.sm\:row-gap-2\/12{grid-row-gap:16.666667%;row-gap:16.666667%}.sm\:row-gap-3\/12{grid-row-gap:25%;row-gap:25%}.sm\:row-gap-4\/12{grid-row-gap:33.333333%;row-gap:33.333333%}.sm\:row-gap-5\/12{grid-row-gap:41.666667%;row-gap:41.666667%}.sm\:row-gap-6\/12{grid-row-gap:50%;row-gap:50%}.sm\:row-gap-7\/12{grid-row-gap:58.333333%;row-gap:58.333333%}.sm\:row-gap-8\/12{grid-row-gap:66.666667%;row-gap:66.666667%}.sm\:row-gap-9\/12{grid-row-gap:75%;row-gap:75%}.sm\:row-gap-10\/12{grid-row-gap:83.333333%;row-gap:83.333333%}.sm\:row-gap-11\/12{grid-row-gap:91.666667%;row-gap:91.666667%}.sm\:row-gap-full{grid-row-gap:100%;row-gap:100%}.sm\:grid-flow-row{grid-auto-flow:row}.sm\:grid-flow-col{grid-auto-flow:column}.sm\:grid-flow-row-dense{grid-auto-flow:row dense}.sm\:grid-flow-col-dense{grid-auto-flow:column dense}.sm\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.sm\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.sm\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.sm\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.sm\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.sm\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.sm\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.sm\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.sm\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.sm\:grid-cols-none{grid-template-columns:none}.sm\:col-auto{grid-column:auto}.sm\:col-span-1{grid-column:span 1/span 1}.sm\:col-span-2{grid-column:span 2/span 2}.sm\:col-span-3{grid-column:span 3/span 3}.sm\:col-span-4{grid-column:span 4/span 4}.sm\:col-span-5{grid-column:span 5/span 5}.sm\:col-span-6{grid-column:span 6/span 6}.sm\:col-span-7{grid-column:span 7/span 7}.sm\:col-span-8{grid-column:span 8/span 8}.sm\:col-span-9{grid-column:span 9/span 9}.sm\:col-span-10{grid-column:span 10/span 10}.sm\:col-span-11{grid-column:span 11/span 11}.sm\:col-span-12{grid-column:span 12/span 12}.sm\:col-start-1{grid-column-start:1}.sm\:col-start-2{grid-column-start:2}.sm\:col-start-3{grid-column-start:3}.sm\:col-start-4{grid-column-start:4}.sm\:col-start-5{grid-column-start:5}.sm\:col-start-6{grid-column-start:6}.sm\:col-start-7{grid-column-start:7}.sm\:col-start-8{grid-column-start:8}.sm\:col-start-9{grid-column-start:9}.sm\:col-start-10{grid-column-start:10}.sm\:col-start-11{grid-column-start:11}.sm\:col-start-12{grid-column-start:12}.sm\:col-start-13{grid-column-start:13}.sm\:col-start-auto{grid-column-start:auto}.sm\:col-end-1{grid-column-end:1}.sm\:col-end-2{grid-column-end:2}.sm\:col-end-3{grid-column-end:3}.sm\:col-end-4{grid-column-end:4}.sm\:col-end-5{grid-column-end:5}.sm\:col-end-6{grid-column-end:6}.sm\:col-end-7{grid-column-end:7}.sm\:col-end-8{grid-column-end:8}.sm\:col-end-9{grid-column-end:9}.sm\:col-end-10{grid-column-end:10}.sm\:col-end-11{grid-column-end:11}.sm\:col-end-12{grid-column-end:12}.sm\:col-end-13{grid-column-end:13}.sm\:col-end-auto{grid-column-end:auto}.sm\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))}.sm\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.sm\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.sm\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.sm\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))}.sm\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))}.sm\:grid-rows-none{grid-template-rows:none}.sm\:row-auto{grid-row:auto}.sm\:row-span-1{grid-row:span 1/span 1}.sm\:row-span-2{grid-row:span 2/span 2}.sm\:row-span-3{grid-row:span 3/span 3}.sm\:row-span-4{grid-row:span 4/span 4}.sm\:row-span-5{grid-row:span 5/span 5}.sm\:row-span-6{grid-row:span 6/span 6}.sm\:row-start-1{grid-row-start:1}.sm\:row-start-2{grid-row-start:2}.sm\:row-start-3{grid-row-start:3}.sm\:row-start-4{grid-row-start:4}.sm\:row-start-5{grid-row-start:5}.sm\:row-start-6{grid-row-start:6}.sm\:row-start-7{grid-row-start:7}.sm\:row-start-auto{grid-row-start:auto}.sm\:row-end-1{grid-row-end:1}.sm\:row-end-2{grid-row-end:2}.sm\:row-end-3{grid-row-end:3}.sm\:row-end-4{grid-row-end:4}.sm\:row-end-5{grid-row-end:5}.sm\:row-end-6{grid-row-end:6}.sm\:row-end-7{grid-row-end:7}.sm\:row-end-auto{grid-row-end:auto}.sm\:transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.sm\:transform-none{transform:none}.sm\:origin-center{transform-origin:center}.sm\:origin-top{transform-origin:top}.sm\:origin-top-right{transform-origin:top right}.sm\:origin-right{transform-origin:right}.sm\:origin-bottom-right{transform-origin:bottom right}.sm\:origin-bottom{transform-origin:bottom}.sm\:origin-bottom-left{transform-origin:bottom left}.sm\:origin-left{transform-origin:left}.sm\:origin-top-left{transform-origin:top left}.sm\:scale-0{--transform-scale-x:0;--transform-scale-y:0}.sm\:scale-50{--transform-scale-x:.5;--transform-scale-y:.5}.sm\:scale-75{--transform-scale-x:.75;--transform-scale-y:.75}.sm\:scale-90{--transform-scale-x:.9;--transform-scale-y:.9}.sm\:scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.sm\:scale-100{--transform-scale-x:1;--transform-scale-y:1}.sm\:scale-105{--transform-scale-x:1.05;--transform-scale-y:1.05}.sm\:scale-110{--transform-scale-x:1.1;--transform-scale-y:1.1}.sm\:scale-125{--transform-scale-x:1.25;--transform-scale-y:1.25}.sm\:scale-150{--transform-scale-x:1.5;--transform-scale-y:1.5}.sm\:scale-x-0{--transform-scale-x:0}.sm\:scale-x-50{--transform-scale-x:.5}.sm\:scale-x-75{--transform-scale-x:.75}.sm\:scale-x-90{--transform-scale-x:.9}.sm\:scale-x-95{--transform-scale-x:.95}.sm\:scale-x-100{--transform-scale-x:1}.sm\:scale-x-105{--transform-scale-x:1.05}.sm\:scale-x-110{--transform-scale-x:1.1}.sm\:scale-x-125{--transform-scale-x:1.25}.sm\:scale-x-150{--transform-scale-x:1.5}.sm\:scale-y-0{--transform-scale-y:0}.sm\:scale-y-50{--transform-scale-y:.5}.sm\:scale-y-75{--transform-scale-y:.75}.sm\:scale-y-90{--transform-scale-y:.9}.sm\:scale-y-95{--transform-scale-y:.95}.sm\:scale-y-100{--transform-scale-y:1}.sm\:scale-y-105{--transform-scale-y:1.05}.sm\:scale-y-110{--transform-scale-y:1.1}.sm\:scale-y-125{--transform-scale-y:1.25}.sm\:scale-y-150{--transform-scale-y:1.5}.sm\:hover\:scale-0:hover{--transform-scale-x:0;--transform-scale-y:0}.sm\:hover\:scale-50:hover{--transform-scale-x:.5;--transform-scale-y:.5}.sm\:hover\:scale-75:hover{--transform-scale-x:.75;--transform-scale-y:.75}.sm\:hover\:scale-90:hover{--transform-scale-x:.9;--transform-scale-y:.9}.sm\:hover\:scale-95:hover{--transform-scale-x:.95;--transform-scale-y:.95}.sm\:hover\:scale-100:hover{--transform-scale-x:1;--transform-scale-y:1}.sm\:hover\:scale-105:hover{--transform-scale-x:1.05;--transform-scale-y:1.05}.sm\:hover\:scale-110:hover{--transform-scale-x:1.1;--transform-scale-y:1.1}.sm\:hover\:scale-125:hover{--transform-scale-x:1.25;--transform-scale-y:1.25}.sm\:hover\:scale-150:hover{--transform-scale-x:1.5;--transform-scale-y:1.5}.sm\:hover\:scale-x-0:hover{--transform-scale-x:0}.sm\:hover\:scale-x-50:hover{--transform-scale-x:.5}.sm\:hover\:scale-x-75:hover{--transform-scale-x:.75}.sm\:hover\:scale-x-90:hover{--transform-scale-x:.9}.sm\:hover\:scale-x-95:hover{--transform-scale-x:.95}.sm\:hover\:scale-x-100:hover{--transform-scale-x:1}.sm\:hover\:scale-x-105:hover{--transform-scale-x:1.05}.sm\:hover\:scale-x-110:hover{--transform-scale-x:1.1}.sm\:hover\:scale-x-125:hover{--transform-scale-x:1.25}.sm\:hover\:scale-x-150:hover{--transform-scale-x:1.5}.sm\:hover\:scale-y-0:hover{--transform-scale-y:0}.sm\:hover\:scale-y-50:hover{--transform-scale-y:.5}.sm\:hover\:scale-y-75:hover{--transform-scale-y:.75}.sm\:hover\:scale-y-90:hover{--transform-scale-y:.9}.sm\:hover\:scale-y-95:hover{--transform-scale-y:.95}.sm\:hover\:scale-y-100:hover{--transform-scale-y:1}.sm\:hover\:scale-y-105:hover{--transform-scale-y:1.05}.sm\:hover\:scale-y-110:hover{--transform-scale-y:1.1}.sm\:hover\:scale-y-125:hover{--transform-scale-y:1.25}.sm\:hover\:scale-y-150:hover{--transform-scale-y:1.5}.sm\:focus\:scale-0:focus{--transform-scale-x:0;--transform-scale-y:0}.sm\:focus\:scale-50:focus{--transform-scale-x:.5;--transform-scale-y:.5}.sm\:focus\:scale-75:focus{--transform-scale-x:.75;--transform-scale-y:.75}.sm\:focus\:scale-90:focus{--transform-scale-x:.9;--transform-scale-y:.9}.sm\:focus\:scale-95:focus{--transform-scale-x:.95;--transform-scale-y:.95}.sm\:focus\:scale-100:focus{--transform-scale-x:1;--transform-scale-y:1}.sm\:focus\:scale-105:focus{--transform-scale-x:1.05;--transform-scale-y:1.05}.sm\:focus\:scale-110:focus{--transform-scale-x:1.1;--transform-scale-y:1.1}.sm\:focus\:scale-125:focus{--transform-scale-x:1.25;--transform-scale-y:1.25}.sm\:focus\:scale-150:focus{--transform-scale-x:1.5;--transform-scale-y:1.5}.sm\:focus\:scale-x-0:focus{--transform-scale-x:0}.sm\:focus\:scale-x-50:focus{--transform-scale-x:.5}.sm\:focus\:scale-x-75:focus{--transform-scale-x:.75}.sm\:focus\:scale-x-90:focus{--transform-scale-x:.9}.sm\:focus\:scale-x-95:focus{--transform-scale-x:.95}.sm\:focus\:scale-x-100:focus{--transform-scale-x:1}.sm\:focus\:scale-x-105:focus{--transform-scale-x:1.05}.sm\:focus\:scale-x-110:focus{--transform-scale-x:1.1}.sm\:focus\:scale-x-125:focus{--transform-scale-x:1.25}.sm\:focus\:scale-x-150:focus{--transform-scale-x:1.5}.sm\:focus\:scale-y-0:focus{--transform-scale-y:0}.sm\:focus\:scale-y-50:focus{--transform-scale-y:.5}.sm\:focus\:scale-y-75:focus{--transform-scale-y:.75}.sm\:focus\:scale-y-90:focus{--transform-scale-y:.9}.sm\:focus\:scale-y-95:focus{--transform-scale-y:.95}.sm\:focus\:scale-y-100:focus{--transform-scale-y:1}.sm\:focus\:scale-y-105:focus{--transform-scale-y:1.05}.sm\:focus\:scale-y-110:focus{--transform-scale-y:1.1}.sm\:focus\:scale-y-125:focus{--transform-scale-y:1.25}.sm\:focus\:scale-y-150:focus{--transform-scale-y:1.5}.sm\:rotate-0{--transform-rotate:0}.sm\:rotate-45{--transform-rotate:45deg}.sm\:rotate-90{--transform-rotate:90deg}.sm\:rotate-180{--transform-rotate:180deg}.sm\:-rotate-180{--transform-rotate:-180deg}.sm\:-rotate-90{--transform-rotate:-90deg}.sm\:-rotate-45{--transform-rotate:-45deg}.sm\:hover\:rotate-0:hover{--transform-rotate:0}.sm\:hover\:rotate-45:hover{--transform-rotate:45deg}.sm\:hover\:rotate-90:hover{--transform-rotate:90deg}.sm\:hover\:rotate-180:hover{--transform-rotate:180deg}.sm\:hover\:-rotate-180:hover{--transform-rotate:-180deg}.sm\:hover\:-rotate-90:hover{--transform-rotate:-90deg}.sm\:hover\:-rotate-45:hover{--transform-rotate:-45deg}.sm\:focus\:rotate-0:focus{--transform-rotate:0}.sm\:focus\:rotate-45:focus{--transform-rotate:45deg}.sm\:focus\:rotate-90:focus{--transform-rotate:90deg}.sm\:focus\:rotate-180:focus{--transform-rotate:180deg}.sm\:focus\:-rotate-180:focus{--transform-rotate:-180deg}.sm\:focus\:-rotate-90:focus{--transform-rotate:-90deg}.sm\:focus\:-rotate-45:focus{--transform-rotate:-45deg}.sm\:translate-x-0{--transform-translate-x:0}.sm\:translate-x-1{--transform-translate-x:0.25rem}.sm\:translate-x-2{--transform-translate-x:0.5rem}.sm\:translate-x-3{--transform-translate-x:0.75rem}.sm\:translate-x-4{--transform-translate-x:1rem}.sm\:translate-x-5{--transform-translate-x:1.25rem}.sm\:translate-x-6{--transform-translate-x:1.5rem}.sm\:translate-x-7{--transform-translate-x:1.75rem}.sm\:translate-x-8{--transform-translate-x:2rem}.sm\:translate-x-9{--transform-translate-x:2.25rem}.sm\:translate-x-10{--transform-translate-x:2.5rem}.sm\:translate-x-11{--transform-translate-x:2.75rem}.sm\:translate-x-12{--transform-translate-x:3rem}.sm\:translate-x-13{--transform-translate-x:3.25rem}.sm\:translate-x-14{--transform-translate-x:3.5rem}.sm\:translate-x-15{--transform-translate-x:3.75rem}.sm\:translate-x-16{--transform-translate-x:4rem}.sm\:translate-x-20{--transform-translate-x:5rem}.sm\:translate-x-24{--transform-translate-x:6rem}.sm\:translate-x-28{--transform-translate-x:7rem}.sm\:translate-x-32{--transform-translate-x:8rem}.sm\:translate-x-36{--transform-translate-x:9rem}.sm\:translate-x-40{--transform-translate-x:10rem}.sm\:translate-x-44{--transform-translate-x:11rem}.sm\:translate-x-48{--transform-translate-x:12rem}.sm\:translate-x-52{--transform-translate-x:13rem}.sm\:translate-x-56{--transform-translate-x:14rem}.sm\:translate-x-60{--transform-translate-x:15rem}.sm\:translate-x-64{--transform-translate-x:16rem}.sm\:translate-x-72{--transform-translate-x:18rem}.sm\:translate-x-80{--transform-translate-x:20rem}.sm\:translate-x-96{--transform-translate-x:24rem}.sm\:translate-x-px{--transform-translate-x:1px}.sm\:translate-x-0\.5{--transform-translate-x:0.125rem}.sm\:translate-x-1\.5{--transform-translate-x:0.375rem}.sm\:translate-x-2\.5{--transform-translate-x:0.625rem}.sm\:translate-x-3\.5{--transform-translate-x:0.875rem}.sm\:translate-x-1\/2{--transform-translate-x:50%}.sm\:translate-x-1\/3{--transform-translate-x:33.333333%}.sm\:translate-x-2\/3{--transform-translate-x:66.666667%}.sm\:translate-x-1\/4{--transform-translate-x:25%}.sm\:translate-x-2\/4{--transform-translate-x:50%}.sm\:translate-x-3\/4{--transform-translate-x:75%}.sm\:translate-x-1\/5{--transform-translate-x:20%}.sm\:translate-x-2\/5{--transform-translate-x:40%}.sm\:translate-x-3\/5{--transform-translate-x:60%}.sm\:translate-x-4\/5{--transform-translate-x:80%}.sm\:translate-x-1\/6{--transform-translate-x:16.666667%}.sm\:translate-x-2\/6{--transform-translate-x:33.333333%}.sm\:translate-x-3\/6{--transform-translate-x:50%}.sm\:translate-x-4\/6{--transform-translate-x:66.666667%}.sm\:translate-x-5\/6{--transform-translate-x:83.333333%}.sm\:translate-x-1\/12{--transform-translate-x:8.333333%}.sm\:translate-x-2\/12{--transform-translate-x:16.666667%}.sm\:translate-x-3\/12{--transform-translate-x:25%}.sm\:translate-x-4\/12{--transform-translate-x:33.333333%}.sm\:translate-x-5\/12{--transform-translate-x:41.666667%}.sm\:translate-x-6\/12{--transform-translate-x:50%}.sm\:translate-x-7\/12{--transform-translate-x:58.333333%}.sm\:translate-x-8\/12{--transform-translate-x:66.666667%}.sm\:translate-x-9\/12{--transform-translate-x:75%}.sm\:translate-x-10\/12{--transform-translate-x:83.333333%}.sm\:translate-x-11\/12{--transform-translate-x:91.666667%}.sm\:translate-x-full{--transform-translate-x:100%}.sm\:-translate-x-1{--transform-translate-x:-0.25rem}.sm\:-translate-x-2{--transform-translate-x:-0.5rem}.sm\:-translate-x-3{--transform-translate-x:-0.75rem}.sm\:-translate-x-4{--transform-translate-x:-1rem}.sm\:-translate-x-5{--transform-translate-x:-1.25rem}.sm\:-translate-x-6{--transform-translate-x:-1.5rem}.sm\:-translate-x-7{--transform-translate-x:-1.75rem}.sm\:-translate-x-8{--transform-translate-x:-2rem}.sm\:-translate-x-9{--transform-translate-x:-2.25rem}.sm\:-translate-x-10{--transform-translate-x:-2.5rem}.sm\:-translate-x-11{--transform-translate-x:-2.75rem}.sm\:-translate-x-12{--transform-translate-x:-3rem}.sm\:-translate-x-13{--transform-translate-x:-3.25rem}.sm\:-translate-x-14{--transform-translate-x:-3.5rem}.sm\:-translate-x-15{--transform-translate-x:-3.75rem}.sm\:-translate-x-16{--transform-translate-x:-4rem}.sm\:-translate-x-20{--transform-translate-x:-5rem}.sm\:-translate-x-24{--transform-translate-x:-6rem}.sm\:-translate-x-28{--transform-translate-x:-7rem}.sm\:-translate-x-32{--transform-translate-x:-8rem}.sm\:-translate-x-36{--transform-translate-x:-9rem}.sm\:-translate-x-40{--transform-translate-x:-10rem}.sm\:-translate-x-44{--transform-translate-x:-11rem}.sm\:-translate-x-48{--transform-translate-x:-12rem}.sm\:-translate-x-52{--transform-translate-x:-13rem}.sm\:-translate-x-56{--transform-translate-x:-14rem}.sm\:-translate-x-60{--transform-translate-x:-15rem}.sm\:-translate-x-64{--transform-translate-x:-16rem}.sm\:-translate-x-72{--transform-translate-x:-18rem}.sm\:-translate-x-80{--transform-translate-x:-20rem}.sm\:-translate-x-96{--transform-translate-x:-24rem}.sm\:-translate-x-px{--transform-translate-x:-1px}.sm\:-translate-x-0\.5{--transform-translate-x:-0.125rem}.sm\:-translate-x-1\.5{--transform-translate-x:-0.375rem}.sm\:-translate-x-2\.5{--transform-translate-x:-0.625rem}.sm\:-translate-x-3\.5{--transform-translate-x:-0.875rem}.sm\:-translate-x-1\/2{--transform-translate-x:-50%}.sm\:-translate-x-1\/3{--transform-translate-x:-33.33333%}.sm\:-translate-x-2\/3{--transform-translate-x:-66.66667%}.sm\:-translate-x-1\/4{--transform-translate-x:-25%}.sm\:-translate-x-2\/4{--transform-translate-x:-50%}.sm\:-translate-x-3\/4{--transform-translate-x:-75%}.sm\:-translate-x-1\/5{--transform-translate-x:-20%}.sm\:-translate-x-2\/5{--transform-translate-x:-40%}.sm\:-translate-x-3\/5{--transform-translate-x:-60%}.sm\:-translate-x-4\/5{--transform-translate-x:-80%}.sm\:-translate-x-1\/6{--transform-translate-x:-16.66667%}.sm\:-translate-x-2\/6{--transform-translate-x:-33.33333%}.sm\:-translate-x-3\/6{--transform-translate-x:-50%}.sm\:-translate-x-4\/6{--transform-translate-x:-66.66667%}.sm\:-translate-x-5\/6{--transform-translate-x:-83.33333%}.sm\:-translate-x-1\/12{--transform-translate-x:-8.33333%}.sm\:-translate-x-2\/12{--transform-translate-x:-16.66667%}.sm\:-translate-x-3\/12{--transform-translate-x:-25%}.sm\:-translate-x-4\/12{--transform-translate-x:-33.33333%}.sm\:-translate-x-5\/12{--transform-translate-x:-41.66667%}.sm\:-translate-x-6\/12{--transform-translate-x:-50%}.sm\:-translate-x-7\/12{--transform-translate-x:-58.33333%}.sm\:-translate-x-8\/12{--transform-translate-x:-66.66667%}.sm\:-translate-x-9\/12{--transform-translate-x:-75%}.sm\:-translate-x-10\/12{--transform-translate-x:-83.33333%}.sm\:-translate-x-11\/12{--transform-translate-x:-91.66667%}.sm\:-translate-x-full{--transform-translate-x:-100%}.sm\:translate-y-0{--transform-translate-y:0}.sm\:translate-y-1{--transform-translate-y:0.25rem}.sm\:translate-y-2{--transform-translate-y:0.5rem}.sm\:translate-y-3{--transform-translate-y:0.75rem}.sm\:translate-y-4{--transform-translate-y:1rem}.sm\:translate-y-5{--transform-translate-y:1.25rem}.sm\:translate-y-6{--transform-translate-y:1.5rem}.sm\:translate-y-7{--transform-translate-y:1.75rem}.sm\:translate-y-8{--transform-translate-y:2rem}.sm\:translate-y-9{--transform-translate-y:2.25rem}.sm\:translate-y-10{--transform-translate-y:2.5rem}.sm\:translate-y-11{--transform-translate-y:2.75rem}.sm\:translate-y-12{--transform-translate-y:3rem}.sm\:translate-y-13{--transform-translate-y:3.25rem}.sm\:translate-y-14{--transform-translate-y:3.5rem}.sm\:translate-y-15{--transform-translate-y:3.75rem}.sm\:translate-y-16{--transform-translate-y:4rem}.sm\:translate-y-20{--transform-translate-y:5rem}.sm\:translate-y-24{--transform-translate-y:6rem}.sm\:translate-y-28{--transform-translate-y:7rem}.sm\:translate-y-32{--transform-translate-y:8rem}.sm\:translate-y-36{--transform-translate-y:9rem}.sm\:translate-y-40{--transform-translate-y:10rem}.sm\:translate-y-44{--transform-translate-y:11rem}.sm\:translate-y-48{--transform-translate-y:12rem}.sm\:translate-y-52{--transform-translate-y:13rem}.sm\:translate-y-56{--transform-translate-y:14rem}.sm\:translate-y-60{--transform-translate-y:15rem}.sm\:translate-y-64{--transform-translate-y:16rem}.sm\:translate-y-72{--transform-translate-y:18rem}.sm\:translate-y-80{--transform-translate-y:20rem}.sm\:translate-y-96{--transform-translate-y:24rem}.sm\:translate-y-px{--transform-translate-y:1px}.sm\:translate-y-0\.5{--transform-translate-y:0.125rem}.sm\:translate-y-1\.5{--transform-translate-y:0.375rem}.sm\:translate-y-2\.5{--transform-translate-y:0.625rem}.sm\:translate-y-3\.5{--transform-translate-y:0.875rem}.sm\:translate-y-1\/2{--transform-translate-y:50%}.sm\:translate-y-1\/3{--transform-translate-y:33.333333%}.sm\:translate-y-2\/3{--transform-translate-y:66.666667%}.sm\:translate-y-1\/4{--transform-translate-y:25%}.sm\:translate-y-2\/4{--transform-translate-y:50%}.sm\:translate-y-3\/4{--transform-translate-y:75%}.sm\:translate-y-1\/5{--transform-translate-y:20%}.sm\:translate-y-2\/5{--transform-translate-y:40%}.sm\:translate-y-3\/5{--transform-translate-y:60%}.sm\:translate-y-4\/5{--transform-translate-y:80%}.sm\:translate-y-1\/6{--transform-translate-y:16.666667%}.sm\:translate-y-2\/6{--transform-translate-y:33.333333%}.sm\:translate-y-3\/6{--transform-translate-y:50%}.sm\:translate-y-4\/6{--transform-translate-y:66.666667%}.sm\:translate-y-5\/6{--transform-translate-y:83.333333%}.sm\:translate-y-1\/12{--transform-translate-y:8.333333%}.sm\:translate-y-2\/12{--transform-translate-y:16.666667%}.sm\:translate-y-3\/12{--transform-translate-y:25%}.sm\:translate-y-4\/12{--transform-translate-y:33.333333%}.sm\:translate-y-5\/12{--transform-translate-y:41.666667%}.sm\:translate-y-6\/12{--transform-translate-y:50%}.sm\:translate-y-7\/12{--transform-translate-y:58.333333%}.sm\:translate-y-8\/12{--transform-translate-y:66.666667%}.sm\:translate-y-9\/12{--transform-translate-y:75%}.sm\:translate-y-10\/12{--transform-translate-y:83.333333%}.sm\:translate-y-11\/12{--transform-translate-y:91.666667%}.sm\:translate-y-full{--transform-translate-y:100%}.sm\:-translate-y-1{--transform-translate-y:-0.25rem}.sm\:-translate-y-2{--transform-translate-y:-0.5rem}.sm\:-translate-y-3{--transform-translate-y:-0.75rem}.sm\:-translate-y-4{--transform-translate-y:-1rem}.sm\:-translate-y-5{--transform-translate-y:-1.25rem}.sm\:-translate-y-6{--transform-translate-y:-1.5rem}.sm\:-translate-y-7{--transform-translate-y:-1.75rem}.sm\:-translate-y-8{--transform-translate-y:-2rem}.sm\:-translate-y-9{--transform-translate-y:-2.25rem}.sm\:-translate-y-10{--transform-translate-y:-2.5rem}.sm\:-translate-y-11{--transform-translate-y:-2.75rem}.sm\:-translate-y-12{--transform-translate-y:-3rem}.sm\:-translate-y-13{--transform-translate-y:-3.25rem}.sm\:-translate-y-14{--transform-translate-y:-3.5rem}.sm\:-translate-y-15{--transform-translate-y:-3.75rem}.sm\:-translate-y-16{--transform-translate-y:-4rem}.sm\:-translate-y-20{--transform-translate-y:-5rem}.sm\:-translate-y-24{--transform-translate-y:-6rem}.sm\:-translate-y-28{--transform-translate-y:-7rem}.sm\:-translate-y-32{--transform-translate-y:-8rem}.sm\:-translate-y-36{--transform-translate-y:-9rem}.sm\:-translate-y-40{--transform-translate-y:-10rem}.sm\:-translate-y-44{--transform-translate-y:-11rem}.sm\:-translate-y-48{--transform-translate-y:-12rem}.sm\:-translate-y-52{--transform-translate-y:-13rem}.sm\:-translate-y-56{--transform-translate-y:-14rem}.sm\:-translate-y-60{--transform-translate-y:-15rem}.sm\:-translate-y-64{--transform-translate-y:-16rem}.sm\:-translate-y-72{--transform-translate-y:-18rem}.sm\:-translate-y-80{--transform-translate-y:-20rem}.sm\:-translate-y-96{--transform-translate-y:-24rem}.sm\:-translate-y-px{--transform-translate-y:-1px}.sm\:-translate-y-0\.5{--transform-translate-y:-0.125rem}.sm\:-translate-y-1\.5{--transform-translate-y:-0.375rem}.sm\:-translate-y-2\.5{--transform-translate-y:-0.625rem}.sm\:-translate-y-3\.5{--transform-translate-y:-0.875rem}.sm\:-translate-y-1\/2{--transform-translate-y:-50%}.sm\:-translate-y-1\/3{--transform-translate-y:-33.33333%}.sm\:-translate-y-2\/3{--transform-translate-y:-66.66667%}.sm\:-translate-y-1\/4{--transform-translate-y:-25%}.sm\:-translate-y-2\/4{--transform-translate-y:-50%}.sm\:-translate-y-3\/4{--transform-translate-y:-75%}.sm\:-translate-y-1\/5{--transform-translate-y:-20%}.sm\:-translate-y-2\/5{--transform-translate-y:-40%}.sm\:-translate-y-3\/5{--transform-translate-y:-60%}.sm\:-translate-y-4\/5{--transform-translate-y:-80%}.sm\:-translate-y-1\/6{--transform-translate-y:-16.66667%}.sm\:-translate-y-2\/6{--transform-translate-y:-33.33333%}.sm\:-translate-y-3\/6{--transform-translate-y:-50%}.sm\:-translate-y-4\/6{--transform-translate-y:-66.66667%}.sm\:-translate-y-5\/6{--transform-translate-y:-83.33333%}.sm\:-translate-y-1\/12{--transform-translate-y:-8.33333%}.sm\:-translate-y-2\/12{--transform-translate-y:-16.66667%}.sm\:-translate-y-3\/12{--transform-translate-y:-25%}.sm\:-translate-y-4\/12{--transform-translate-y:-33.33333%}.sm\:-translate-y-5\/12{--transform-translate-y:-41.66667%}.sm\:-translate-y-6\/12{--transform-translate-y:-50%}.sm\:-translate-y-7\/12{--transform-translate-y:-58.33333%}.sm\:-translate-y-8\/12{--transform-translate-y:-66.66667%}.sm\:-translate-y-9\/12{--transform-translate-y:-75%}.sm\:-translate-y-10\/12{--transform-translate-y:-83.33333%}.sm\:-translate-y-11\/12{--transform-translate-y:-91.66667%}.sm\:-translate-y-full{--transform-translate-y:-100%}.sm\:hover\:translate-x-0:hover{--transform-translate-x:0}.sm\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem}.sm\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem}.sm\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem}.sm\:hover\:translate-x-4:hover{--transform-translate-x:1rem}.sm\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem}.sm\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem}.sm\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem}.sm\:hover\:translate-x-8:hover{--transform-translate-x:2rem}.sm\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem}.sm\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem}.sm\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem}.sm\:hover\:translate-x-12:hover{--transform-translate-x:3rem}.sm\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem}.sm\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem}.sm\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem}.sm\:hover\:translate-x-16:hover{--transform-translate-x:4rem}.sm\:hover\:translate-x-20:hover{--transform-translate-x:5rem}.sm\:hover\:translate-x-24:hover{--transform-translate-x:6rem}.sm\:hover\:translate-x-28:hover{--transform-translate-x:7rem}.sm\:hover\:translate-x-32:hover{--transform-translate-x:8rem}.sm\:hover\:translate-x-36:hover{--transform-translate-x:9rem}.sm\:hover\:translate-x-40:hover{--transform-translate-x:10rem}.sm\:hover\:translate-x-44:hover{--transform-translate-x:11rem}.sm\:hover\:translate-x-48:hover{--transform-translate-x:12rem}.sm\:hover\:translate-x-52:hover{--transform-translate-x:13rem}.sm\:hover\:translate-x-56:hover{--transform-translate-x:14rem}.sm\:hover\:translate-x-60:hover{--transform-translate-x:15rem}.sm\:hover\:translate-x-64:hover{--transform-translate-x:16rem}.sm\:hover\:translate-x-72:hover{--transform-translate-x:18rem}.sm\:hover\:translate-x-80:hover{--transform-translate-x:20rem}.sm\:hover\:translate-x-96:hover{--transform-translate-x:24rem}.sm\:hover\:translate-x-px:hover{--transform-translate-x:1px}.sm\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem}.sm\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem}.sm\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem}.sm\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem}.sm\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%}.sm\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%}.sm\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%}.sm\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%}.sm\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%}.sm\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%}.sm\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%}.sm\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%}.sm\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%}.sm\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%}.sm\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%}.sm\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%}.sm\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%}.sm\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%}.sm\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%}.sm\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%}.sm\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%}.sm\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%}.sm\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%}.sm\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%}.sm\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%}.sm\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%}.sm\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%}.sm\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%}.sm\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%}.sm\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%}.sm\:hover\:translate-x-full:hover{--transform-translate-x:100%}.sm\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem}.sm\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem}.sm\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem}.sm\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem}.sm\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem}.sm\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem}.sm\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem}.sm\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem}.sm\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem}.sm\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem}.sm\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem}.sm\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem}.sm\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem}.sm\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem}.sm\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem}.sm\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem}.sm\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem}.sm\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem}.sm\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem}.sm\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem}.sm\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem}.sm\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem}.sm\:hover\:-translate-x-44:hover{--transform-translate-x:-11rem}.sm\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem}.sm\:hover\:-translate-x-52:hover{--transform-translate-x:-13rem}.sm\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem}.sm\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem}.sm\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem}.sm\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem}.sm\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem}.sm\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem}.sm\:hover\:-translate-x-px:hover{--transform-translate-x:-1px}.sm\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem}.sm\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem}.sm\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem}.sm\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem}.sm\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%}.sm\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%}.sm\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%}.sm\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%}.sm\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%}.sm\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%}.sm\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%}.sm\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%}.sm\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%}.sm\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%}.sm\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%}.sm\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%}.sm\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%}.sm\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%}.sm\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%}.sm\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%}.sm\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%}.sm\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%}.sm\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%}.sm\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%}.sm\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%}.sm\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%}.sm\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%}.sm\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%}.sm\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%}.sm\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%}.sm\:hover\:-translate-x-full:hover{--transform-translate-x:-100%}.sm\:hover\:translate-y-0:hover{--transform-translate-y:0}.sm\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem}.sm\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem}.sm\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem}.sm\:hover\:translate-y-4:hover{--transform-translate-y:1rem}.sm\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem}.sm\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem}.sm\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem}.sm\:hover\:translate-y-8:hover{--transform-translate-y:2rem}.sm\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem}.sm\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem}.sm\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem}.sm\:hover\:translate-y-12:hover{--transform-translate-y:3rem}.sm\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem}.sm\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem}.sm\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem}.sm\:hover\:translate-y-16:hover{--transform-translate-y:4rem}.sm\:hover\:translate-y-20:hover{--transform-translate-y:5rem}.sm\:hover\:translate-y-24:hover{--transform-translate-y:6rem}.sm\:hover\:translate-y-28:hover{--transform-translate-y:7rem}.sm\:hover\:translate-y-32:hover{--transform-translate-y:8rem}.sm\:hover\:translate-y-36:hover{--transform-translate-y:9rem}.sm\:hover\:translate-y-40:hover{--transform-translate-y:10rem}.sm\:hover\:translate-y-44:hover{--transform-translate-y:11rem}.sm\:hover\:translate-y-48:hover{--transform-translate-y:12rem}.sm\:hover\:translate-y-52:hover{--transform-translate-y:13rem}.sm\:hover\:translate-y-56:hover{--transform-translate-y:14rem}.sm\:hover\:translate-y-60:hover{--transform-translate-y:15rem}.sm\:hover\:translate-y-64:hover{--transform-translate-y:16rem}.sm\:hover\:translate-y-72:hover{--transform-translate-y:18rem}.sm\:hover\:translate-y-80:hover{--transform-translate-y:20rem}.sm\:hover\:translate-y-96:hover{--transform-translate-y:24rem}.sm\:hover\:translate-y-px:hover{--transform-translate-y:1px}.sm\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem}.sm\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem}.sm\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem}.sm\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem}.sm\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%}.sm\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%}.sm\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%}.sm\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%}.sm\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%}.sm\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%}.sm\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%}.sm\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%}.sm\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%}.sm\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%}.sm\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%}.sm\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%}.sm\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%}.sm\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%}.sm\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%}.sm\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%}.sm\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%}.sm\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%}.sm\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%}.sm\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%}.sm\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%}.sm\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%}.sm\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%}.sm\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%}.sm\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%}.sm\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%}.sm\:hover\:translate-y-full:hover{--transform-translate-y:100%}.sm\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem}.sm\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem}.sm\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem}.sm\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem}.sm\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem}.sm\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem}.sm\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem}.sm\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem}.sm\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem}.sm\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem}.sm\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem}.sm\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem}.sm\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem}.sm\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem}.sm\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem}.sm\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem}.sm\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem}.sm\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem}.sm\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem}.sm\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem}.sm\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem}.sm\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem}.sm\:hover\:-translate-y-44:hover{--transform-translate-y:-11rem}.sm\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem}.sm\:hover\:-translate-y-52:hover{--transform-translate-y:-13rem}.sm\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem}.sm\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem}.sm\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem}.sm\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem}.sm\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem}.sm\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem}.sm\:hover\:-translate-y-px:hover{--transform-translate-y:-1px}.sm\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem}.sm\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem}.sm\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem}.sm\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem}.sm\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%}.sm\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%}.sm\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%}.sm\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%}.sm\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%}.sm\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%}.sm\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%}.sm\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%}.sm\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%}.sm\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%}.sm\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%}.sm\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%}.sm\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%}.sm\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%}.sm\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%}.sm\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%}.sm\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%}.sm\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%}.sm\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%}.sm\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%}.sm\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%}.sm\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%}.sm\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%}.sm\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%}.sm\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%}.sm\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%}.sm\:hover\:-translate-y-full:hover{--transform-translate-y:-100%}.sm\:focus\:translate-x-0:focus{--transform-translate-x:0}.sm\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem}.sm\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem}.sm\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem}.sm\:focus\:translate-x-4:focus{--transform-translate-x:1rem}.sm\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem}.sm\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem}.sm\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem}.sm\:focus\:translate-x-8:focus{--transform-translate-x:2rem}.sm\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem}.sm\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem}.sm\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem}.sm\:focus\:translate-x-12:focus{--transform-translate-x:3rem}.sm\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem}.sm\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem}.sm\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem}.sm\:focus\:translate-x-16:focus{--transform-translate-x:4rem}.sm\:focus\:translate-x-20:focus{--transform-translate-x:5rem}.sm\:focus\:translate-x-24:focus{--transform-translate-x:6rem}.sm\:focus\:translate-x-28:focus{--transform-translate-x:7rem}.sm\:focus\:translate-x-32:focus{--transform-translate-x:8rem}.sm\:focus\:translate-x-36:focus{--transform-translate-x:9rem}.sm\:focus\:translate-x-40:focus{--transform-translate-x:10rem}.sm\:focus\:translate-x-44:focus{--transform-translate-x:11rem}.sm\:focus\:translate-x-48:focus{--transform-translate-x:12rem}.sm\:focus\:translate-x-52:focus{--transform-translate-x:13rem}.sm\:focus\:translate-x-56:focus{--transform-translate-x:14rem}.sm\:focus\:translate-x-60:focus{--transform-translate-x:15rem}.sm\:focus\:translate-x-64:focus{--transform-translate-x:16rem}.sm\:focus\:translate-x-72:focus{--transform-translate-x:18rem}.sm\:focus\:translate-x-80:focus{--transform-translate-x:20rem}.sm\:focus\:translate-x-96:focus{--transform-translate-x:24rem}.sm\:focus\:translate-x-px:focus{--transform-translate-x:1px}.sm\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem}.sm\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem}.sm\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem}.sm\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem}.sm\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%}.sm\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%}.sm\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%}.sm\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%}.sm\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%}.sm\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%}.sm\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%}.sm\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%}.sm\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%}.sm\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%}.sm\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%}.sm\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%}.sm\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%}.sm\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%}.sm\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%}.sm\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%}.sm\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%}.sm\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%}.sm\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%}.sm\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%}.sm\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%}.sm\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%}.sm\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%}.sm\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%}.sm\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%}.sm\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%}.sm\:focus\:translate-x-full:focus{--transform-translate-x:100%}.sm\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem}.sm\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem}.sm\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem}.sm\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem}.sm\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem}.sm\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem}.sm\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem}.sm\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem}.sm\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem}.sm\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem}.sm\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem}.sm\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem}.sm\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem}.sm\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem}.sm\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem}.sm\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem}.sm\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem}.sm\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem}.sm\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem}.sm\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem}.sm\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem}.sm\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem}.sm\:focus\:-translate-x-44:focus{--transform-translate-x:-11rem}.sm\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem}.sm\:focus\:-translate-x-52:focus{--transform-translate-x:-13rem}.sm\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem}.sm\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem}.sm\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem}.sm\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem}.sm\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem}.sm\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem}.sm\:focus\:-translate-x-px:focus{--transform-translate-x:-1px}.sm\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem}.sm\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem}.sm\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem}.sm\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem}.sm\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%}.sm\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%}.sm\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%}.sm\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%}.sm\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%}.sm\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%}.sm\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%}.sm\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%}.sm\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%}.sm\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%}.sm\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%}.sm\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%}.sm\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%}.sm\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%}.sm\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%}.sm\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%}.sm\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%}.sm\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%}.sm\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%}.sm\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%}.sm\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%}.sm\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%}.sm\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%}.sm\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%}.sm\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%}.sm\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%}.sm\:focus\:-translate-x-full:focus{--transform-translate-x:-100%}.sm\:focus\:translate-y-0:focus{--transform-translate-y:0}.sm\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem}.sm\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem}.sm\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem}.sm\:focus\:translate-y-4:focus{--transform-translate-y:1rem}.sm\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem}.sm\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem}.sm\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem}.sm\:focus\:translate-y-8:focus{--transform-translate-y:2rem}.sm\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem}.sm\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem}.sm\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem}.sm\:focus\:translate-y-12:focus{--transform-translate-y:3rem}.sm\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem}.sm\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem}.sm\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem}.sm\:focus\:translate-y-16:focus{--transform-translate-y:4rem}.sm\:focus\:translate-y-20:focus{--transform-translate-y:5rem}.sm\:focus\:translate-y-24:focus{--transform-translate-y:6rem}.sm\:focus\:translate-y-28:focus{--transform-translate-y:7rem}.sm\:focus\:translate-y-32:focus{--transform-translate-y:8rem}.sm\:focus\:translate-y-36:focus{--transform-translate-y:9rem}.sm\:focus\:translate-y-40:focus{--transform-translate-y:10rem}.sm\:focus\:translate-y-44:focus{--transform-translate-y:11rem}.sm\:focus\:translate-y-48:focus{--transform-translate-y:12rem}.sm\:focus\:translate-y-52:focus{--transform-translate-y:13rem}.sm\:focus\:translate-y-56:focus{--transform-translate-y:14rem}.sm\:focus\:translate-y-60:focus{--transform-translate-y:15rem}.sm\:focus\:translate-y-64:focus{--transform-translate-y:16rem}.sm\:focus\:translate-y-72:focus{--transform-translate-y:18rem}.sm\:focus\:translate-y-80:focus{--transform-translate-y:20rem}.sm\:focus\:translate-y-96:focus{--transform-translate-y:24rem}.sm\:focus\:translate-y-px:focus{--transform-translate-y:1px}.sm\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem}.sm\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem}.sm\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem}.sm\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem}.sm\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%}.sm\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%}.sm\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%}.sm\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%}.sm\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%}.sm\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%}.sm\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%}.sm\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%}.sm\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%}.sm\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%}.sm\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%}.sm\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%}.sm\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%}.sm\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%}.sm\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%}.sm\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%}.sm\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%}.sm\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%}.sm\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%}.sm\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%}.sm\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%}.sm\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%}.sm\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%}.sm\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%}.sm\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%}.sm\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%}.sm\:focus\:translate-y-full:focus{--transform-translate-y:100%}.sm\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem}.sm\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem}.sm\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem}.sm\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem}.sm\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem}.sm\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem}.sm\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem}.sm\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem}.sm\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem}.sm\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem}.sm\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem}.sm\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem}.sm\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem}.sm\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem}.sm\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem}.sm\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem}.sm\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem}.sm\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem}.sm\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem}.sm\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem}.sm\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem}.sm\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem}.sm\:focus\:-translate-y-44:focus{--transform-translate-y:-11rem}.sm\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem}.sm\:focus\:-translate-y-52:focus{--transform-translate-y:-13rem}.sm\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem}.sm\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem}.sm\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem}.sm\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem}.sm\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem}.sm\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem}.sm\:focus\:-translate-y-px:focus{--transform-translate-y:-1px}.sm\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem}.sm\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem}.sm\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem}.sm\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem}.sm\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%}.sm\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%}.sm\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%}.sm\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%}.sm\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%}.sm\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%}.sm\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%}.sm\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%}.sm\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%}.sm\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%}.sm\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%}.sm\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%}.sm\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%}.sm\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%}.sm\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%}.sm\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%}.sm\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%}.sm\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%}.sm\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%}.sm\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%}.sm\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%}.sm\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%}.sm\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%}.sm\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%}.sm\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%}.sm\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%}.sm\:focus\:-translate-y-full:focus{--transform-translate-y:-100%}.sm\:skew-x-0{--transform-skew-x:0}.sm\:skew-x-3{--transform-skew-x:3deg}.sm\:skew-x-6{--transform-skew-x:6deg}.sm\:skew-x-12{--transform-skew-x:12deg}.sm\:-skew-x-12{--transform-skew-x:-12deg}.sm\:-skew-x-6{--transform-skew-x:-6deg}.sm\:-skew-x-3{--transform-skew-x:-3deg}.sm\:skew-y-0{--transform-skew-y:0}.sm\:skew-y-3{--transform-skew-y:3deg}.sm\:skew-y-6{--transform-skew-y:6deg}.sm\:skew-y-12{--transform-skew-y:12deg}.sm\:-skew-y-12{--transform-skew-y:-12deg}.sm\:-skew-y-6{--transform-skew-y:-6deg}.sm\:-skew-y-3{--transform-skew-y:-3deg}.sm\:hover\:skew-x-0:hover{--transform-skew-x:0}.sm\:hover\:skew-x-3:hover{--transform-skew-x:3deg}.sm\:hover\:skew-x-6:hover{--transform-skew-x:6deg}.sm\:hover\:skew-x-12:hover{--transform-skew-x:12deg}.sm\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg}.sm\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg}.sm\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg}.sm\:hover\:skew-y-0:hover{--transform-skew-y:0}.sm\:hover\:skew-y-3:hover{--transform-skew-y:3deg}.sm\:hover\:skew-y-6:hover{--transform-skew-y:6deg}.sm\:hover\:skew-y-12:hover{--transform-skew-y:12deg}.sm\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg}.sm\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg}.sm\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg}.sm\:focus\:skew-x-0:focus{--transform-skew-x:0}.sm\:focus\:skew-x-3:focus{--transform-skew-x:3deg}.sm\:focus\:skew-x-6:focus{--transform-skew-x:6deg}.sm\:focus\:skew-x-12:focus{--transform-skew-x:12deg}.sm\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg}.sm\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg}.sm\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg}.sm\:focus\:skew-y-0:focus{--transform-skew-y:0}.sm\:focus\:skew-y-3:focus{--transform-skew-y:3deg}.sm\:focus\:skew-y-6:focus{--transform-skew-y:6deg}.sm\:focus\:skew-y-12:focus{--transform-skew-y:12deg}.sm\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg}.sm\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg}.sm\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg}.sm\:transition-none{transition-property:none}.sm\:transition-all{transition-property:all}.sm\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.sm\:transition-colors{transition-property:background-color,border-color,color,fill,stroke}.sm\:transition-opacity{transition-property:opacity}.sm\:transition-shadow{transition-property:box-shadow}.sm\:transition-transform{transition-property:transform}.sm\:ease-linear{transition-timing-function:linear}.sm\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.sm\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.sm\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.sm\:duration-75{transition-duration:75ms}.sm\:duration-100{transition-duration:.1s}.sm\:duration-150{transition-duration:150ms}.sm\:duration-200{transition-duration:.2s}.sm\:duration-300{transition-duration:.3s}.sm\:duration-500{transition-duration:.5s}.sm\:duration-700{transition-duration:.7s}.sm\:duration-1000{transition-duration:1s}.sm\:delay-75{transition-delay:75ms}.sm\:delay-100{transition-delay:.1s}.sm\:delay-150{transition-delay:150ms}.sm\:delay-200{transition-delay:.2s}.sm\:delay-300{transition-delay:.3s}.sm\:delay-500{transition-delay:.5s}.sm\:delay-700{transition-delay:.7s}.sm\:delay-1000{transition-delay:1s}}@media (min-width:768px){.md\:container{width:100%}@media (min-width:640px){.md\:container{max-width:640px}}@media (min-width:768px){.md\:container{max-width:768px}}@media (min-width:1024px){.md\:container{max-width:1024px}}@media (min-width:1280px){.md\:container{max-width:1280px}}.md\:prose{color:#374151;max-width:65ch}.md\:prose [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.md\:prose a{color:#5850ec;text-decoration:none;font-weight:600}.md\:prose strong{color:#161e2e;font-weight:600}.md\:prose ol{counter-reset:list-counter;margin-top:1.25em;margin-bottom:1.25em}.md\:prose ol>li{position:relative;counter-increment:list-counter;padding-left:1.75em}.md\:prose ol>li::before{content:counter(list-counter) ".";position:absolute;font-weight:400;color:#6b7280}.md\:prose ul>li{position:relative;padding-left:1.75em}.md\:prose ul>li::before{content:"";position:absolute;background-color:#d2d6dc;border-radius:50%;width:.375em;height:.375em;top:calc(.875em - .1875em);left:.25em}.md\:prose hr{border-color:#e5e7eb;border-top-width:1px;margin-top:3em;margin-bottom:3em}.md\:prose blockquote{font-weight:500;font-style:italic;color:#161e2e;border-left-width:.25rem;border-left-color:#e5e7eb;quotes:"\201C""\201D""\2018""\2019";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.md\:prose blockquote p:first-of-type::before{content:open-quote}.md\:prose blockquote p:last-of-type::after{content:close-quote}.md\:prose h1{color:#1a202c;font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.md\:prose h2{color:#1a202c;font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.md\:prose h3{color:#1a202c;font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.md\:prose h4{color:#1a202c;font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.md\:prose figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.md\:prose code{color:#161e2e;font-weight:600;font-size:.875em}.md\:prose code::before{content:"`"}.md\:prose code::after{content:"`"}.md\:prose pre{color:#e5e7eb;background-color:#252f3f;overflow-x:auto;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-right:1.1428571em;padding-bottom:.8571429em;padding-left:1.1428571em}.md\:prose pre code{background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:400;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.md\:prose pre code::before{content:""}.md\:prose pre code::after{content:""}.md\:prose table{width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.md\:prose thead{color:#161e2e;font-weight:600;border-bottom-width:1px;border-bottom-color:#d2d6dc}.md\:prose thead th{vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.md\:prose tbody tr{border-bottom-width:1px;border-bottom-color:#e5e7eb}.md\:prose tbody tr:last-child{border-bottom-width:0}.md\:prose tbody td{vertical-align:top;padding-top:.5714286em;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.md\:prose{font-size:1rem;line-height:1.75}.md\:prose p{margin-top:1.25em;margin-bottom:1.25em}.md\:prose img{margin-top:2em;margin-bottom:2em}.md\:prose video{margin-top:2em;margin-bottom:2em}.md\:prose figure{margin-top:2em;margin-bottom:2em}.md\:prose figure>*{margin-top:0;margin-bottom:0}.md\:prose h2 code{font-size:.875em}.md\:prose h3 code{font-size:.9em}.md\:prose ul{margin-top:1.25em;margin-bottom:1.25em}.md\:prose li{margin-top:.5em;margin-bottom:.5em}.md\:prose ol>li:before{left:0}.md\:prose>ul>li p{margin-top:.75em;margin-bottom:.75em}.md\:prose>ul>li>:first-child{margin-top:1.25em}.md\:prose>ul>li>:last-child{margin-bottom:1.25em}.md\:prose>ol>li>:first-child{margin-top:1.25em}.md\:prose>ol>li>:last-child{margin-bottom:1.25em}.md\:prose ol ol,.md\:prose ol ul,.md\:prose ul ol,.md\:prose ul ul{margin-top:.75em;margin-bottom:.75em}.md\:prose hr+*{margin-top:0}.md\:prose h2+*{margin-top:0}.md\:prose h3+*{margin-top:0}.md\:prose h4+*{margin-top:0}.md\:prose thead th:first-child{padding-left:0}.md\:prose thead th:last-child{padding-right:0}.md\:prose tbody td:first-child{padding-left:0}.md\:prose tbody td:last-child{padding-right:0}.md\:prose>:first-child{margin-top:0}.md\:prose>:last-child{margin-bottom:0}.md\:prose h1,.md\:prose h2,.md\:prose h3,.md\:prose h4{color:#161e2e}.md\:prose-sm{font-size:.875rem;line-height:1.7142857}.md\:prose-sm p{margin-top:1.1428571em;margin-bottom:1.1428571em}.md\:prose-sm [class~=lead]{font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.md\:prose-sm blockquote{margin-top:1.3333333em;margin-bottom:1.3333333em;padding-left:1.1111111em}.md\:prose-sm h1{font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.md\:prose-sm h2{font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.md\:prose-sm h3{font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.md\:prose-sm h4{margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.md\:prose-sm img{margin-top:1.7142857em;margin-bottom:1.7142857em}.md\:prose-sm video{margin-top:1.7142857em;margin-bottom:1.7142857em}.md\:prose-sm figure{margin-top:1.7142857em;margin-bottom:1.7142857em}.md\:prose-sm figure>*{margin-top:0;margin-bottom:0}.md\:prose-sm figure figcaption{font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.md\:prose-sm code{font-size:.8571429em}.md\:prose-sm h2 code{font-size:.9em}.md\:prose-sm h3 code{font-size:.8888889em}.md\:prose-sm pre{font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.md\:prose-sm ol{margin-top:1.1428571em;margin-bottom:1.1428571em}.md\:prose-sm ul{margin-top:1.1428571em;margin-bottom:1.1428571em}.md\:prose-sm li{margin-top:.2857143em;margin-bottom:.2857143em}.md\:prose-sm ol>li{padding-left:1.5714286em}.md\:prose-sm ol>li:before{left:0}.md\:prose-sm ul>li{padding-left:1.5714286em}.md\:prose-sm ul>li::before{height:.3571429em;width:.3571429em;top:calc(.8571429em - .1785714em);left:.2142857em}.md\:prose-sm>ul>li p{margin-top:.5714286em;margin-bottom:.5714286em}.md\:prose-sm>ul>li>:first-child{margin-top:1.1428571em}.md\:prose-sm>ul>li>:last-child{margin-bottom:1.1428571em}.md\:prose-sm>ol>li>:first-child{margin-top:1.1428571em}.md\:prose-sm>ol>li>:last-child{margin-bottom:1.1428571em}.md\:prose-sm ol ol,.md\:prose-sm ol ul,.md\:prose-sm ul ol,.md\:prose-sm ul ul{margin-top:.5714286em;margin-bottom:.5714286em}.md\:prose-sm hr{margin-top:2.8571429em;margin-bottom:2.8571429em}.md\:prose-sm hr+*{margin-top:0}.md\:prose-sm h2+*{margin-top:0}.md\:prose-sm h3+*{margin-top:0}.md\:prose-sm h4+*{margin-top:0}.md\:prose-sm table{font-size:.8571429em;line-height:1.5}.md\:prose-sm thead th{padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.md\:prose-sm thead th:first-child{padding-left:0}.md\:prose-sm thead th:last-child{padding-right:0}.md\:prose-sm tbody td{padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.md\:prose-sm tbody td:first-child{padding-left:0}.md\:prose-sm tbody td:last-child{padding-right:0}.md\:prose-sm>:first-child{margin-top:0}.md\:prose-sm>:last-child{margin-bottom:0}.md\:prose-lg{font-size:1.125rem;line-height:1.7777778}.md\:prose-lg p{margin-top:1.3333333em;margin-bottom:1.3333333em}.md\:prose-lg [class~=lead]{font-size:1.2222222em;line-height:1.4545455;margin-top:1.0909091em;margin-bottom:1.0909091em}.md\:prose-lg blockquote{margin-top:1.6666667em;margin-bottom:1.6666667em;padding-left:1em}.md\:prose-lg h1{font-size:2.6666667em;margin-top:0;margin-bottom:.8333333em;line-height:1}.md\:prose-lg h2{font-size:1.6666667em;margin-top:1.8666667em;margin-bottom:1.0666667em;line-height:1.3333333}.md\:prose-lg h3{font-size:1.3333333em;margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.md\:prose-lg h4{margin-top:1.7777778em;margin-bottom:.4444444em;line-height:1.5555556}.md\:prose-lg img{margin-top:1.7777778em;margin-bottom:1.7777778em}.md\:prose-lg video{margin-top:1.7777778em;margin-bottom:1.7777778em}.md\:prose-lg figure{margin-top:1.7777778em;margin-bottom:1.7777778em}.md\:prose-lg figure>*{margin-top:0;margin-bottom:0}.md\:prose-lg figure figcaption{font-size:.8888889em;line-height:1.5;margin-top:1em}.md\:prose-lg code{font-size:.8888889em}.md\:prose-lg h2 code{font-size:.8666667em}.md\:prose-lg h3 code{font-size:.875em}.md\:prose-lg pre{font-size:.8888889em;line-height:1.75;margin-top:2em;margin-bottom:2em;border-radius:.375rem;padding-top:1em;padding-right:1.5em;padding-bottom:1em;padding-left:1.5em}.md\:prose-lg ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.md\:prose-lg ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.md\:prose-lg li{margin-top:.6666667em;margin-bottom:.6666667em}.md\:prose-lg ol>li{padding-left:1.6666667em}.md\:prose-lg ol>li:before{left:0}.md\:prose-lg ul>li{padding-left:1.6666667em}.md\:prose-lg ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8888889em - .1666667em);left:.2222222em}.md\:prose-lg>ul>li p{margin-top:.8888889em;margin-bottom:.8888889em}.md\:prose-lg>ul>li>:first-child{margin-top:1.3333333em}.md\:prose-lg>ul>li>:last-child{margin-bottom:1.3333333em}.md\:prose-lg>ol>li>:first-child{margin-top:1.3333333em}.md\:prose-lg>ol>li>:last-child{margin-bottom:1.3333333em}.md\:prose-lg ol ol,.md\:prose-lg ol ul,.md\:prose-lg ul ol,.md\:prose-lg ul ul{margin-top:.8888889em;margin-bottom:.8888889em}.md\:prose-lg hr{margin-top:3.1111111em;margin-bottom:3.1111111em}.md\:prose-lg hr+*{margin-top:0}.md\:prose-lg h2+*{margin-top:0}.md\:prose-lg h3+*{margin-top:0}.md\:prose-lg h4+*{margin-top:0}.md\:prose-lg table{font-size:.8888889em;line-height:1.5}.md\:prose-lg thead th{padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.md\:prose-lg thead th:first-child{padding-left:0}.md\:prose-lg thead th:last-child{padding-right:0}.md\:prose-lg tbody td{padding-top:.75em;padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.md\:prose-lg tbody td:first-child{padding-left:0}.md\:prose-lg tbody td:last-child{padding-right:0}.md\:prose-lg>:first-child{margin-top:0}.md\:prose-lg>:last-child{margin-bottom:0}.md\:prose-xl{font-size:1.25rem;line-height:1.8}.md\:prose-xl p{margin-top:1.2em;margin-bottom:1.2em}.md\:prose-xl [class~=lead]{font-size:1.2em;line-height:1.5;margin-top:1em;margin-bottom:1em}.md\:prose-xl blockquote{margin-top:1.6em;margin-bottom:1.6em;padding-left:1.0666667em}.md\:prose-xl h1{font-size:2.8em;margin-top:0;margin-bottom:.8571429em;line-height:1}.md\:prose-xl h2{font-size:1.8em;margin-top:1.5555556em;margin-bottom:.8888889em;line-height:1.1111111}.md\:prose-xl h3{font-size:1.5em;margin-top:1.6em;margin-bottom:.6666667em;line-height:1.3333333}.md\:prose-xl h4{margin-top:1.8em;margin-bottom:.6em;line-height:1.6}.md\:prose-xl img{margin-top:2em;margin-bottom:2em}.md\:prose-xl video{margin-top:2em;margin-bottom:2em}.md\:prose-xl figure{margin-top:2em;margin-bottom:2em}.md\:prose-xl figure>*{margin-top:0;margin-bottom:0}.md\:prose-xl figure figcaption{font-size:.9em;line-height:1.5555556;margin-top:1em}.md\:prose-xl code{font-size:.9em}.md\:prose-xl h2 code{font-size:.8611111em}.md\:prose-xl h3 code{font-size:.9em}.md\:prose-xl pre{font-size:.9em;line-height:1.7777778;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.1111111em;padding-right:1.3333333em;padding-bottom:1.1111111em;padding-left:1.3333333em}.md\:prose-xl ol{margin-top:1.2em;margin-bottom:1.2em}.md\:prose-xl ul{margin-top:1.2em;margin-bottom:1.2em}.md\:prose-xl li{margin-top:.6em;margin-bottom:.6em}.md\:prose-xl ol>li{padding-left:1.8em}.md\:prose-xl ol>li:before{left:0}.md\:prose-xl ul>li{padding-left:1.8em}.md\:prose-xl ul>li::before{width:.35em;height:.35em;top:calc(.9em - .175em);left:.25em}.md\:prose-xl>ul>li p{margin-top:.8em;margin-bottom:.8em}.md\:prose-xl>ul>li>:first-child{margin-top:1.2em}.md\:prose-xl>ul>li>:last-child{margin-bottom:1.2em}.md\:prose-xl>ol>li>:first-child{margin-top:1.2em}.md\:prose-xl>ol>li>:last-child{margin-bottom:1.2em}.md\:prose-xl ol ol,.md\:prose-xl ol ul,.md\:prose-xl ul ol,.md\:prose-xl ul ul{margin-top:.8em;margin-bottom:.8em}.md\:prose-xl hr{margin-top:2.8em;margin-bottom:2.8em}.md\:prose-xl hr+*{margin-top:0}.md\:prose-xl h2+*{margin-top:0}.md\:prose-xl h3+*{margin-top:0}.md\:prose-xl h4+*{margin-top:0}.md\:prose-xl table{font-size:.9em;line-height:1.5555556}.md\:prose-xl thead th{padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.md\:prose-xl thead th:first-child{padding-left:0}.md\:prose-xl thead th:last-child{padding-right:0}.md\:prose-xl tbody td{padding-top:.8888889em;padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.md\:prose-xl tbody td:first-child{padding-left:0}.md\:prose-xl tbody td:last-child{padding-right:0}.md\:prose-xl>:first-child{margin-top:0}.md\:prose-xl>:last-child{margin-bottom:0}.md\:prose-2xl{font-size:1.5rem;line-height:1.6666667}.md\:prose-2xl p{margin-top:1.3333333em;margin-bottom:1.3333333em}.md\:prose-2xl [class~=lead]{font-size:1.25em;line-height:1.4666667;margin-top:1.0666667em;margin-bottom:1.0666667em}.md\:prose-2xl blockquote{margin-top:1.7777778em;margin-bottom:1.7777778em;padding-left:1.1111111em}.md\:prose-2xl h1{font-size:2.6666667em;margin-top:0;margin-bottom:.875em;line-height:1}.md\:prose-2xl h2{font-size:2em;margin-top:1.5em;margin-bottom:.8333333em;line-height:1.0833333}.md\:prose-2xl h3{font-size:1.5em;margin-top:1.5555556em;margin-bottom:.6666667em;line-height:1.2222222}.md\:prose-2xl h4{margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.md\:prose-2xl img{margin-top:2em;margin-bottom:2em}.md\:prose-2xl video{margin-top:2em;margin-bottom:2em}.md\:prose-2xl figure{margin-top:2em;margin-bottom:2em}.md\:prose-2xl figure>*{margin-top:0;margin-bottom:0}.md\:prose-2xl figure figcaption{font-size:.8333333em;line-height:1.6;margin-top:1em}.md\:prose-2xl code{font-size:.8333333em}.md\:prose-2xl h2 code{font-size:.875em}.md\:prose-2xl h3 code{font-size:.8888889em}.md\:prose-2xl pre{font-size:.8333333em;line-height:1.8;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.2em;padding-right:1.6em;padding-bottom:1.2em;padding-left:1.6em}.md\:prose-2xl ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.md\:prose-2xl ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.md\:prose-2xl li{margin-top:.5em;margin-bottom:.5em}.md\:prose-2xl ol>li{padding-left:1.6666667em}.md\:prose-2xl ol>li:before{left:0}.md\:prose-2xl ul>li{padding-left:1.6666667em}.md\:prose-2xl ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8333333em - .1666667em);left:.25em}.md\:prose-2xl>ul>li p{margin-top:.8333333em;margin-bottom:.8333333em}.md\:prose-2xl>ul>li>:first-child{margin-top:1.3333333em}.md\:prose-2xl>ul>li>:last-child{margin-bottom:1.3333333em}.md\:prose-2xl>ol>li>:first-child{margin-top:1.3333333em}.md\:prose-2xl>ol>li>:last-child{margin-bottom:1.3333333em}.md\:prose-2xl ol ol,.md\:prose-2xl ol ul,.md\:prose-2xl ul ol,.md\:prose-2xl ul ul{margin-top:.6666667em;margin-bottom:.6666667em}.md\:prose-2xl hr{margin-top:3em;margin-bottom:3em}.md\:prose-2xl hr+*{margin-top:0}.md\:prose-2xl h2+*{margin-top:0}.md\:prose-2xl h3+*{margin-top:0}.md\:prose-2xl h4+*{margin-top:0}.md\:prose-2xl table{font-size:.8333333em;line-height:1.4}.md\:prose-2xl thead th{padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.md\:prose-2xl thead th:first-child{padding-left:0}.md\:prose-2xl thead th:last-child{padding-right:0}.md\:prose-2xl tbody td{padding-top:.8em;padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.md\:prose-2xl tbody td:first-child{padding-left:0}.md\:prose-2xl tbody td:last-child{padding-right:0}.md\:prose-2xl>:first-child{margin-top:0}.md\:prose-2xl>:last-child{margin-bottom:0}.md\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.md\:space-x-0>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0px * var(--space-x-reverse));margin-left:calc(0px * calc(1 - var(--space-x-reverse)))}.md\:space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.25rem * var(--space-y-reverse))}.md\:space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.25rem * var(--space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.5rem * var(--space-y-reverse))}.md\:space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.75rem * var(--space-y-reverse))}.md\:space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.75rem * var(--space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1rem * var(--space-y-reverse))}.md\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem * var(--space-y-reverse))}.md\:space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.25rem * var(--space-x-reverse));margin-left:calc(1.25rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.5rem * var(--space-y-reverse))}.md\:space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem * var(--space-x-reverse));margin-left:calc(1.5rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.75rem * var(--space-y-reverse))}.md\:space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.75rem * var(--space-x-reverse));margin-left:calc(1.75rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2rem * var(--space-y-reverse))}.md\:space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.25rem * var(--space-y-reverse))}.md\:space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.25rem * var(--space-x-reverse));margin-left:calc(2.25rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.5rem * var(--space-y-reverse))}.md\:space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.5rem * var(--space-x-reverse));margin-left:calc(2.5rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.75rem * var(--space-y-reverse))}.md\:space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.75rem * var(--space-x-reverse));margin-left:calc(2.75rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3rem * var(--space-y-reverse))}.md\:space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3rem * var(--space-x-reverse));margin-left:calc(3rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.25rem * var(--space-y-reverse))}.md\:space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.25rem * var(--space-x-reverse));margin-left:calc(3.25rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.5rem * var(--space-y-reverse))}.md\:space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.5rem * var(--space-x-reverse));margin-left:calc(3.5rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.75rem * var(--space-y-reverse))}.md\:space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.75rem * var(--space-x-reverse));margin-left:calc(3.75rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(4rem * var(--space-y-reverse))}.md\:space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(5rem * var(--space-y-reverse))}.md\:space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(5rem * var(--space-x-reverse));margin-left:calc(5rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(6rem * var(--space-y-reverse))}.md\:space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(6rem * var(--space-x-reverse));margin-left:calc(6rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(7rem * var(--space-y-reverse))}.md\:space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(7rem * var(--space-x-reverse));margin-left:calc(7rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8rem * var(--space-y-reverse))}.md\:space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8rem * var(--space-x-reverse));margin-left:calc(8rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(9rem * var(--space-y-reverse))}.md\:space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(9rem * var(--space-x-reverse));margin-left:calc(9rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(10rem * var(--space-y-reverse))}.md\:space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(10rem * var(--space-x-reverse));margin-left:calc(10rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(11rem * var(--space-y-reverse))}.md\:space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(11rem * var(--space-x-reverse));margin-left:calc(11rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(12rem * var(--space-y-reverse))}.md\:space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(12rem * var(--space-x-reverse));margin-left:calc(12rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(13rem * var(--space-y-reverse))}.md\:space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(13rem * var(--space-x-reverse));margin-left:calc(13rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(14rem * var(--space-y-reverse))}.md\:space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(14rem * var(--space-x-reverse));margin-left:calc(14rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(15rem * var(--space-y-reverse))}.md\:space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(15rem * var(--space-x-reverse));margin-left:calc(15rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16rem * var(--space-y-reverse))}.md\:space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16rem * var(--space-x-reverse));margin-left:calc(16rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(18rem * var(--space-y-reverse))}.md\:space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(18rem * var(--space-x-reverse));margin-left:calc(18rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20rem * var(--space-y-reverse))}.md\:space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20rem * var(--space-x-reverse));margin-left:calc(20rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(24rem * var(--space-y-reverse))}.md\:space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(24rem * var(--space-x-reverse));margin-left:calc(24rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1px * var(--space-y-reverse))}.md\:space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1px * var(--space-x-reverse));margin-left:calc(1px * calc(1 - var(--space-x-reverse)))}.md\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.125rem * var(--space-y-reverse))}.md\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.125rem * var(--space-x-reverse));margin-left:calc(.125rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.375rem * var(--space-y-reverse))}.md\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.375rem * var(--space-x-reverse));margin-left:calc(.375rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.625rem * var(--space-y-reverse))}.md\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.625rem * var(--space-x-reverse));margin-left:calc(.625rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.875rem * var(--space-y-reverse))}.md\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.875rem * var(--space-x-reverse));margin-left:calc(.875rem * calc(1 - var(--space-x-reverse)))}.md\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.md\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.md\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.md\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.md\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.md\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.md\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.md\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.md\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.md\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.md\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.md\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.md\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20% * var(--space-y-reverse))}.md\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20% * var(--space-x-reverse));margin-left:calc(20% * calc(1 - var(--space-x-reverse)))}.md\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(40% * var(--space-y-reverse))}.md\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(40% * var(--space-x-reverse));margin-left:calc(40% * calc(1 - var(--space-x-reverse)))}.md\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(60% * var(--space-y-reverse))}.md\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(60% * var(--space-x-reverse));margin-left:calc(60% * calc(1 - var(--space-x-reverse)))}.md\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(80% * var(--space-y-reverse))}.md\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(80% * var(--space-x-reverse));margin-left:calc(80% * calc(1 - var(--space-x-reverse)))}.md\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.md\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.md\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.md\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.md\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.md\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.md\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.md\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.md\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.md\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.md\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8.333333% * var(--space-y-reverse))}.md\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8.333333% * var(--space-x-reverse));margin-left:calc(8.333333% * calc(1 - var(--space-x-reverse)))}.md\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.md\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.md\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.md\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.md\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.md\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.md\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(41.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(41.666667% * var(--space-y-reverse))}.md\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(41.666667% * var(--space-x-reverse));margin-left:calc(41.666667% * calc(1 - var(--space-x-reverse)))}.md\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.md\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.md\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(58.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(58.333333% * var(--space-y-reverse))}.md\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(58.333333% * var(--space-x-reverse));margin-left:calc(58.333333% * calc(1 - var(--space-x-reverse)))}.md\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.md\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.md\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.md\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.md\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.md\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.md\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(91.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(91.666667% * var(--space-y-reverse))}.md\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(91.666667% * var(--space-x-reverse));margin-left:calc(91.666667% * calc(1 - var(--space-x-reverse)))}.md\:space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(100% * var(--space-y-reverse))}.md\:space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(100% * var(--space-x-reverse));margin-left:calc(100% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.25rem * var(--space-y-reverse))}.md\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.25rem * var(--space-x-reverse));margin-left:calc(-.25rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.5rem * var(--space-y-reverse))}.md\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.5rem * var(--space-x-reverse));margin-left:calc(-.5rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.75rem * var(--space-y-reverse))}.md\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.75rem * var(--space-x-reverse));margin-left:calc(-.75rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1rem * var(--space-y-reverse))}.md\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1rem * var(--space-x-reverse));margin-left:calc(-1rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.25rem * var(--space-y-reverse))}.md\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.25rem * var(--space-x-reverse));margin-left:calc(-1.25rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.5rem * var(--space-y-reverse))}.md\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.5rem * var(--space-x-reverse));margin-left:calc(-1.5rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.75rem * var(--space-y-reverse))}.md\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.75rem * var(--space-x-reverse));margin-left:calc(-1.75rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2rem * var(--space-y-reverse))}.md\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2rem * var(--space-x-reverse));margin-left:calc(-2rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.25rem * var(--space-y-reverse))}.md\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.25rem * var(--space-x-reverse));margin-left:calc(-2.25rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.5rem * var(--space-y-reverse))}.md\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.5rem * var(--space-x-reverse));margin-left:calc(-2.5rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.75rem * var(--space-y-reverse))}.md\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.75rem * var(--space-x-reverse));margin-left:calc(-2.75rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3rem * var(--space-y-reverse))}.md\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3rem * var(--space-x-reverse));margin-left:calc(-3rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.25rem * var(--space-y-reverse))}.md\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.25rem * var(--space-x-reverse));margin-left:calc(-3.25rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.5rem * var(--space-y-reverse))}.md\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.5rem * var(--space-x-reverse));margin-left:calc(-3.5rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.75rem * var(--space-y-reverse))}.md\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.75rem * var(--space-x-reverse));margin-left:calc(-3.75rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-4rem * var(--space-y-reverse))}.md\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-4rem * var(--space-x-reverse));margin-left:calc(-4rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-5rem * var(--space-y-reverse))}.md\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-5rem * var(--space-x-reverse));margin-left:calc(-5rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-6rem * var(--space-y-reverse))}.md\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-6rem * var(--space-x-reverse));margin-left:calc(-6rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-7rem * var(--space-y-reverse))}.md\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-7rem * var(--space-x-reverse));margin-left:calc(-7rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8rem * var(--space-y-reverse))}.md\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8rem * var(--space-x-reverse));margin-left:calc(-8rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-9rem * var(--space-y-reverse))}.md\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-9rem * var(--space-x-reverse));margin-left:calc(-9rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-10rem * var(--space-y-reverse))}.md\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-10rem * var(--space-x-reverse));margin-left:calc(-10rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-11rem * var(--space-y-reverse))}.md\:-space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-11rem * var(--space-x-reverse));margin-left:calc(-11rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-12rem * var(--space-y-reverse))}.md\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-12rem * var(--space-x-reverse));margin-left:calc(-12rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-13rem * var(--space-y-reverse))}.md\:-space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-13rem * var(--space-x-reverse));margin-left:calc(-13rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-14rem * var(--space-y-reverse))}.md\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-14rem * var(--space-x-reverse));margin-left:calc(-14rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-15rem * var(--space-y-reverse))}.md\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-15rem * var(--space-x-reverse));margin-left:calc(-15rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16rem * var(--space-y-reverse))}.md\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16rem * var(--space-x-reverse));margin-left:calc(-16rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-18rem * var(--space-y-reverse))}.md\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-18rem * var(--space-x-reverse));margin-left:calc(-18rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20rem * var(--space-y-reverse))}.md\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20rem * var(--space-x-reverse));margin-left:calc(-20rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-24rem * var(--space-y-reverse))}.md\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-24rem * var(--space-x-reverse));margin-left:calc(-24rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1px * var(--space-y-reverse))}.md\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1px * var(--space-x-reverse));margin-left:calc(-1px * calc(1 - var(--space-x-reverse)))}.md\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.125rem * var(--space-y-reverse))}.md\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.125rem * var(--space-x-reverse));margin-left:calc(-.125rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.375rem * var(--space-y-reverse))}.md\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.375rem * var(--space-x-reverse));margin-left:calc(-.375rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.625rem * var(--space-y-reverse))}.md\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.625rem * var(--space-x-reverse));margin-left:calc(-.625rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.875rem * var(--space-y-reverse))}.md\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.875rem * var(--space-x-reverse));margin-left:calc(-.875rem * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.md\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.md\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.md\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.md\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.md\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.md\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20% * var(--space-y-reverse))}.md\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20% * var(--space-x-reverse));margin-left:calc(-20% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-40% * var(--space-y-reverse))}.md\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-40% * var(--space-x-reverse));margin-left:calc(-40% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-60% * var(--space-y-reverse))}.md\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-60% * var(--space-x-reverse));margin-left:calc(-60% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-80% * var(--space-y-reverse))}.md\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-80% * var(--space-x-reverse));margin-left:calc(-80% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.md\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.md\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.md\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.md\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.md\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8.33333% * var(--space-y-reverse))}.md\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8.33333% * var(--space-x-reverse));margin-left:calc(-8.33333% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.md\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.md\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.md\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-41.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-41.66667% * var(--space-y-reverse))}.md\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-41.66667% * var(--space-x-reverse));margin-left:calc(-41.66667% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.md\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-58.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-58.33333% * var(--space-y-reverse))}.md\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-58.33333% * var(--space-x-reverse));margin-left:calc(-58.33333% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.md\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.md\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.md\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-91.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-91.66667% * var(--space-y-reverse))}.md\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-91.66667% * var(--space-x-reverse));margin-left:calc(-91.66667% * calc(1 - var(--space-x-reverse)))}.md\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-100% * var(--space-y-reverse))}.md\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-100% * var(--space-x-reverse));margin-left:calc(-100% * calc(1 - var(--space-x-reverse)))}.md\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1}.md\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1}.md\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(0px * var(--divide-y-reverse))}.md\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(0px * var(--divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--divide-x-reverse)))}.md\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(2px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(2px * var(--divide-y-reverse))}.md\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(2px * var(--divide-x-reverse));border-left-width:calc(2px * calc(1 - var(--divide-x-reverse)))}.md\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(4px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(4px * var(--divide-y-reverse))}.md\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(4px * var(--divide-x-reverse));border-left-width:calc(4px * calc(1 - var(--divide-x-reverse)))}.md\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(8px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(8px * var(--divide-y-reverse))}.md\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(8px * var(--divide-x-reverse));border-left-width:calc(8px * calc(1 - var(--divide-x-reverse)))}.md\:divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px * var(--divide-y-reverse))}.md\:divide-x>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}.md\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1}.md\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1}.md\:divide-transparent>:not(template)~:not(template){border-color:transparent}.md\:divide-white>:not(template)~:not(template){--divide-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--divide-opacity))}.md\:divide-black>:not(template)~:not(template){--divide-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--divide-opacity))}.md\:divide-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--divide-opacity))}.md\:divide-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--divide-opacity))}.md\:divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.md\:divide-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--divide-opacity))}.md\:divide-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--divide-opacity))}.md\:divide-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--divide-opacity))}.md\:divide-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--divide-opacity))}.md\:divide-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--divide-opacity))}.md\:divide-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--divide-opacity))}.md\:divide-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--divide-opacity))}.md\:divide-cool-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--divide-opacity))}.md\:divide-cool-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--divide-opacity))}.md\:divide-cool-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--divide-opacity))}.md\:divide-cool-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--divide-opacity))}.md\:divide-cool-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--divide-opacity))}.md\:divide-cool-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--divide-opacity))}.md\:divide-cool-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--divide-opacity))}.md\:divide-cool-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--divide-opacity))}.md\:divide-cool-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--divide-opacity))}.md\:divide-cool-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--divide-opacity))}.md\:divide-red-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--divide-opacity))}.md\:divide-red-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--divide-opacity))}.md\:divide-red-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--divide-opacity))}.md\:divide-red-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--divide-opacity))}.md\:divide-red-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--divide-opacity))}.md\:divide-red-500>:not(template)~:not(template){--divide-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--divide-opacity))}.md\:divide-red-600>:not(template)~:not(template){--divide-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--divide-opacity))}.md\:divide-red-700>:not(template)~:not(template){--divide-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--divide-opacity))}.md\:divide-red-800>:not(template)~:not(template){--divide-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--divide-opacity))}.md\:divide-red-900>:not(template)~:not(template){--divide-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--divide-opacity))}.md\:divide-orange-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--divide-opacity))}.md\:divide-orange-100>:not(template)~:not(template){--divide-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--divide-opacity))}.md\:divide-orange-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--divide-opacity))}.md\:divide-orange-300>:not(template)~:not(template){--divide-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--divide-opacity))}.md\:divide-orange-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--divide-opacity))}.md\:divide-orange-500>:not(template)~:not(template){--divide-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--divide-opacity))}.md\:divide-orange-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--divide-opacity))}.md\:divide-orange-700>:not(template)~:not(template){--divide-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--divide-opacity))}.md\:divide-orange-800>:not(template)~:not(template){--divide-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--divide-opacity))}.md\:divide-orange-900>:not(template)~:not(template){--divide-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--divide-opacity))}.md\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--divide-opacity))}.md\:divide-yellow-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--divide-opacity))}.md\:divide-yellow-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--divide-opacity))}.md\:divide-yellow-300>:not(template)~:not(template){--divide-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--divide-opacity))}.md\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--divide-opacity))}.md\:divide-yellow-500>:not(template)~:not(template){--divide-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--divide-opacity))}.md\:divide-yellow-600>:not(template)~:not(template){--divide-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--divide-opacity))}.md\:divide-yellow-700>:not(template)~:not(template){--divide-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--divide-opacity))}.md\:divide-yellow-800>:not(template)~:not(template){--divide-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--divide-opacity))}.md\:divide-yellow-900>:not(template)~:not(template){--divide-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--divide-opacity))}.md\:divide-green-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--divide-opacity))}.md\:divide-green-100>:not(template)~:not(template){--divide-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--divide-opacity))}.md\:divide-green-200>:not(template)~:not(template){--divide-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--divide-opacity))}.md\:divide-green-300>:not(template)~:not(template){--divide-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--divide-opacity))}.md\:divide-green-400>:not(template)~:not(template){--divide-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--divide-opacity))}.md\:divide-green-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--divide-opacity))}.md\:divide-green-600>:not(template)~:not(template){--divide-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--divide-opacity))}.md\:divide-green-700>:not(template)~:not(template){--divide-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--divide-opacity))}.md\:divide-green-800>:not(template)~:not(template){--divide-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--divide-opacity))}.md\:divide-green-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--divide-opacity))}.md\:divide-teal-50>:not(template)~:not(template){--divide-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--divide-opacity))}.md\:divide-teal-100>:not(template)~:not(template){--divide-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--divide-opacity))}.md\:divide-teal-200>:not(template)~:not(template){--divide-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--divide-opacity))}.md\:divide-teal-300>:not(template)~:not(template){--divide-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--divide-opacity))}.md\:divide-teal-400>:not(template)~:not(template){--divide-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--divide-opacity))}.md\:divide-teal-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--divide-opacity))}.md\:divide-teal-600>:not(template)~:not(template){--divide-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--divide-opacity))}.md\:divide-teal-700>:not(template)~:not(template){--divide-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--divide-opacity))}.md\:divide-teal-800>:not(template)~:not(template){--divide-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--divide-opacity))}.md\:divide-teal-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--divide-opacity))}.md\:divide-blue-50>:not(template)~:not(template){--divide-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--divide-opacity))}.md\:divide-blue-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--divide-opacity))}.md\:divide-blue-200>:not(template)~:not(template){--divide-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--divide-opacity))}.md\:divide-blue-300>:not(template)~:not(template){--divide-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--divide-opacity))}.md\:divide-blue-400>:not(template)~:not(template){--divide-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--divide-opacity))}.md\:divide-blue-500>:not(template)~:not(template){--divide-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--divide-opacity))}.md\:divide-blue-600>:not(template)~:not(template){--divide-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--divide-opacity))}.md\:divide-blue-700>:not(template)~:not(template){--divide-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--divide-opacity))}.md\:divide-blue-800>:not(template)~:not(template){--divide-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--divide-opacity))}.md\:divide-blue-900>:not(template)~:not(template){--divide-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--divide-opacity))}.md\:divide-indigo-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--divide-opacity))}.md\:divide-indigo-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--divide-opacity))}.md\:divide-indigo-200>:not(template)~:not(template){--divide-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--divide-opacity))}.md\:divide-indigo-300>:not(template)~:not(template){--divide-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--divide-opacity))}.md\:divide-indigo-400>:not(template)~:not(template){--divide-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--divide-opacity))}.md\:divide-indigo-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--divide-opacity))}.md\:divide-indigo-600>:not(template)~:not(template){--divide-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--divide-opacity))}.md\:divide-indigo-700>:not(template)~:not(template){--divide-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--divide-opacity))}.md\:divide-indigo-800>:not(template)~:not(template){--divide-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--divide-opacity))}.md\:divide-indigo-900>:not(template)~:not(template){--divide-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--divide-opacity))}.md\:divide-purple-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--divide-opacity))}.md\:divide-purple-100>:not(template)~:not(template){--divide-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--divide-opacity))}.md\:divide-purple-200>:not(template)~:not(template){--divide-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--divide-opacity))}.md\:divide-purple-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--divide-opacity))}.md\:divide-purple-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--divide-opacity))}.md\:divide-purple-500>:not(template)~:not(template){--divide-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--divide-opacity))}.md\:divide-purple-600>:not(template)~:not(template){--divide-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--divide-opacity))}.md\:divide-purple-700>:not(template)~:not(template){--divide-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--divide-opacity))}.md\:divide-purple-800>:not(template)~:not(template){--divide-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--divide-opacity))}.md\:divide-purple-900>:not(template)~:not(template){--divide-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--divide-opacity))}.md\:divide-pink-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--divide-opacity))}.md\:divide-pink-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--divide-opacity))}.md\:divide-pink-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--divide-opacity))}.md\:divide-pink-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--divide-opacity))}.md\:divide-pink-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--divide-opacity))}.md\:divide-pink-500>:not(template)~:not(template){--divide-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--divide-opacity))}.md\:divide-pink-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--divide-opacity))}.md\:divide-pink-700>:not(template)~:not(template){--divide-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--divide-opacity))}.md\:divide-pink-800>:not(template)~:not(template){--divide-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--divide-opacity))}.md\:divide-pink-900>:not(template)~:not(template){--divide-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--divide-opacity))}.md\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0}.md\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25}.md\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5}.md\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75}.md\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1}.md\:sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.md\:not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.md\:focus\:sr-only:focus{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.md\:focus\:not-sr-only:focus{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.md\:appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.md\:bg-fixed{background-attachment:fixed}.md\:bg-local{background-attachment:local}.md\:bg-scroll{background-attachment:scroll}.md\:bg-transparent{background-color:transparent}.md\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.md\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.md\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.md\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.md\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.md\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.md\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.md\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.md\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.md\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.md\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.md\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.md\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.md\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.md\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.md\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.md\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.md\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.md\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.md\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.md\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.md\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.md\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.md\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.md\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.md\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.md\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.md\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.md\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.md\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.md\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.md\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.md\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.md\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.md\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.md\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.md\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.md\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.md\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.md\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.md\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.md\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.md\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.md\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.md\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.md\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.md\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.md\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.md\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.md\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.md\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.md\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.md\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.md\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.md\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.md\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.md\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.md\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.md\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.md\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.md\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.md\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.md\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.md\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.md\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.md\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.md\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.md\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.md\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.md\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.md\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.md\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.md\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.md\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.md\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.md\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.md\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.md\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.md\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.md\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.md\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.md\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.md\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.md\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.md\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.md\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.md\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.md\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.md\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.md\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.md\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.md\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.md\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.md\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.md\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.md\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.md\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.md\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.md\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.md\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.md\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.md\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.md\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.md\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.md\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.md\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.md\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.md\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.md\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.md\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.md\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.md\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-transparent{background-color:transparent}.group:hover .md\:group-hover\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:hover .md\:group-hover\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-transparent{background-color:transparent}.group:focus .md\:group-focus\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:focus .md\:group-focus\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.md\:hover\:bg-transparent:hover{background-color:transparent}.md\:hover\:bg-white:hover{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.md\:hover\:bg-black:hover{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.md\:hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.md\:hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.md\:hover\:bg-gray-200:hover{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.md\:hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.md\:hover\:bg-gray-400:hover{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.md\:hover\:bg-gray-500:hover{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.md\:hover\:bg-gray-600:hover{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.md\:hover\:bg-gray-700:hover{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.md\:hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.md\:hover\:bg-gray-900:hover{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.md\:hover\:bg-cool-gray-50:hover{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.md\:hover\:bg-cool-gray-100:hover{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.md\:hover\:bg-cool-gray-200:hover{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.md\:hover\:bg-cool-gray-300:hover{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.md\:hover\:bg-cool-gray-400:hover{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.md\:hover\:bg-cool-gray-500:hover{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.md\:hover\:bg-cool-gray-600:hover{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.md\:hover\:bg-cool-gray-700:hover{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.md\:hover\:bg-cool-gray-800:hover{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.md\:hover\:bg-cool-gray-900:hover{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.md\:hover\:bg-red-50:hover{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.md\:hover\:bg-red-100:hover{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.md\:hover\:bg-red-200:hover{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.md\:hover\:bg-red-300:hover{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.md\:hover\:bg-red-400:hover{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.md\:hover\:bg-red-500:hover{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.md\:hover\:bg-red-600:hover{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.md\:hover\:bg-red-700:hover{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.md\:hover\:bg-red-800:hover{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.md\:hover\:bg-red-900:hover{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.md\:hover\:bg-orange-50:hover{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.md\:hover\:bg-orange-100:hover{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.md\:hover\:bg-orange-200:hover{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.md\:hover\:bg-orange-300:hover{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.md\:hover\:bg-orange-400:hover{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.md\:hover\:bg-orange-500:hover{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.md\:hover\:bg-orange-600:hover{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.md\:hover\:bg-orange-700:hover{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.md\:hover\:bg-orange-800:hover{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.md\:hover\:bg-orange-900:hover{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.md\:hover\:bg-yellow-50:hover{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.md\:hover\:bg-yellow-100:hover{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.md\:hover\:bg-yellow-200:hover{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.md\:hover\:bg-yellow-300:hover{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.md\:hover\:bg-yellow-400:hover{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.md\:hover\:bg-yellow-500:hover{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.md\:hover\:bg-yellow-600:hover{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.md\:hover\:bg-yellow-700:hover{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.md\:hover\:bg-yellow-800:hover{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.md\:hover\:bg-yellow-900:hover{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.md\:hover\:bg-green-50:hover{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.md\:hover\:bg-green-100:hover{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.md\:hover\:bg-green-200:hover{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.md\:hover\:bg-green-300:hover{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.md\:hover\:bg-green-400:hover{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.md\:hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.md\:hover\:bg-green-600:hover{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.md\:hover\:bg-green-700:hover{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.md\:hover\:bg-green-800:hover{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.md\:hover\:bg-green-900:hover{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.md\:hover\:bg-teal-50:hover{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.md\:hover\:bg-teal-100:hover{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.md\:hover\:bg-teal-200:hover{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.md\:hover\:bg-teal-300:hover{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.md\:hover\:bg-teal-400:hover{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.md\:hover\:bg-teal-500:hover{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.md\:hover\:bg-teal-600:hover{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.md\:hover\:bg-teal-700:hover{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.md\:hover\:bg-teal-800:hover{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.md\:hover\:bg-teal-900:hover{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.md\:hover\:bg-blue-50:hover{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.md\:hover\:bg-blue-100:hover{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.md\:hover\:bg-blue-200:hover{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.md\:hover\:bg-blue-300:hover{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.md\:hover\:bg-blue-400:hover{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.md\:hover\:bg-blue-500:hover{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.md\:hover\:bg-blue-600:hover{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.md\:hover\:bg-blue-700:hover{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.md\:hover\:bg-blue-800:hover{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.md\:hover\:bg-blue-900:hover{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.md\:hover\:bg-indigo-50:hover{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.md\:hover\:bg-indigo-100:hover{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.md\:hover\:bg-indigo-200:hover{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.md\:hover\:bg-indigo-300:hover{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.md\:hover\:bg-indigo-400:hover{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.md\:hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.md\:hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.md\:hover\:bg-indigo-700:hover{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.md\:hover\:bg-indigo-800:hover{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.md\:hover\:bg-indigo-900:hover{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.md\:hover\:bg-purple-50:hover{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.md\:hover\:bg-purple-100:hover{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.md\:hover\:bg-purple-200:hover{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.md\:hover\:bg-purple-300:hover{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.md\:hover\:bg-purple-400:hover{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.md\:hover\:bg-purple-500:hover{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.md\:hover\:bg-purple-600:hover{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.md\:hover\:bg-purple-700:hover{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.md\:hover\:bg-purple-800:hover{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.md\:hover\:bg-purple-900:hover{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.md\:hover\:bg-pink-50:hover{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.md\:hover\:bg-pink-100:hover{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.md\:hover\:bg-pink-200:hover{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.md\:hover\:bg-pink-300:hover{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.md\:hover\:bg-pink-400:hover{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.md\:hover\:bg-pink-500:hover{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.md\:hover\:bg-pink-600:hover{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.md\:hover\:bg-pink-700:hover{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.md\:hover\:bg-pink-800:hover{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.md\:hover\:bg-pink-900:hover{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.md\:focus\:bg-transparent:focus{background-color:transparent}.md\:focus\:bg-white:focus{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.md\:focus\:bg-black:focus{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.md\:focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.md\:focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.md\:focus\:bg-gray-200:focus{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.md\:focus\:bg-gray-300:focus{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.md\:focus\:bg-gray-400:focus{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.md\:focus\:bg-gray-500:focus{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.md\:focus\:bg-gray-600:focus{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.md\:focus\:bg-gray-700:focus{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.md\:focus\:bg-gray-800:focus{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.md\:focus\:bg-gray-900:focus{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.md\:focus\:bg-cool-gray-50:focus{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.md\:focus\:bg-cool-gray-100:focus{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.md\:focus\:bg-cool-gray-200:focus{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.md\:focus\:bg-cool-gray-300:focus{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.md\:focus\:bg-cool-gray-400:focus{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.md\:focus\:bg-cool-gray-500:focus{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.md\:focus\:bg-cool-gray-600:focus{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.md\:focus\:bg-cool-gray-700:focus{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.md\:focus\:bg-cool-gray-800:focus{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.md\:focus\:bg-cool-gray-900:focus{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.md\:focus\:bg-red-50:focus{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.md\:focus\:bg-red-100:focus{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.md\:focus\:bg-red-200:focus{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.md\:focus\:bg-red-300:focus{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.md\:focus\:bg-red-400:focus{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.md\:focus\:bg-red-500:focus{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.md\:focus\:bg-red-600:focus{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.md\:focus\:bg-red-700:focus{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.md\:focus\:bg-red-800:focus{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.md\:focus\:bg-red-900:focus{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.md\:focus\:bg-orange-50:focus{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.md\:focus\:bg-orange-100:focus{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.md\:focus\:bg-orange-200:focus{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.md\:focus\:bg-orange-300:focus{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.md\:focus\:bg-orange-400:focus{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.md\:focus\:bg-orange-500:focus{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.md\:focus\:bg-orange-600:focus{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.md\:focus\:bg-orange-700:focus{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.md\:focus\:bg-orange-800:focus{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.md\:focus\:bg-orange-900:focus{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.md\:focus\:bg-yellow-50:focus{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.md\:focus\:bg-yellow-100:focus{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.md\:focus\:bg-yellow-200:focus{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.md\:focus\:bg-yellow-300:focus{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.md\:focus\:bg-yellow-400:focus{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.md\:focus\:bg-yellow-500:focus{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.md\:focus\:bg-yellow-600:focus{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.md\:focus\:bg-yellow-700:focus{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.md\:focus\:bg-yellow-800:focus{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.md\:focus\:bg-yellow-900:focus{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.md\:focus\:bg-green-50:focus{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.md\:focus\:bg-green-100:focus{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.md\:focus\:bg-green-200:focus{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.md\:focus\:bg-green-300:focus{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.md\:focus\:bg-green-400:focus{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.md\:focus\:bg-green-500:focus{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.md\:focus\:bg-green-600:focus{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.md\:focus\:bg-green-700:focus{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.md\:focus\:bg-green-800:focus{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.md\:focus\:bg-green-900:focus{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.md\:focus\:bg-teal-50:focus{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.md\:focus\:bg-teal-100:focus{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.md\:focus\:bg-teal-200:focus{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.md\:focus\:bg-teal-300:focus{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.md\:focus\:bg-teal-400:focus{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.md\:focus\:bg-teal-500:focus{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.md\:focus\:bg-teal-600:focus{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.md\:focus\:bg-teal-700:focus{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.md\:focus\:bg-teal-800:focus{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.md\:focus\:bg-teal-900:focus{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.md\:focus\:bg-blue-50:focus{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.md\:focus\:bg-blue-100:focus{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.md\:focus\:bg-blue-200:focus{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.md\:focus\:bg-blue-300:focus{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.md\:focus\:bg-blue-400:focus{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.md\:focus\:bg-blue-500:focus{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.md\:focus\:bg-blue-600:focus{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.md\:focus\:bg-blue-700:focus{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.md\:focus\:bg-blue-800:focus{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.md\:focus\:bg-blue-900:focus{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.md\:focus\:bg-indigo-50:focus{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.md\:focus\:bg-indigo-100:focus{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.md\:focus\:bg-indigo-200:focus{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.md\:focus\:bg-indigo-300:focus{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.md\:focus\:bg-indigo-400:focus{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.md\:focus\:bg-indigo-500:focus{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.md\:focus\:bg-indigo-600:focus{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.md\:focus\:bg-indigo-700:focus{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.md\:focus\:bg-indigo-800:focus{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.md\:focus\:bg-indigo-900:focus{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.md\:focus\:bg-purple-50:focus{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.md\:focus\:bg-purple-100:focus{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.md\:focus\:bg-purple-200:focus{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.md\:focus\:bg-purple-300:focus{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.md\:focus\:bg-purple-400:focus{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.md\:focus\:bg-purple-500:focus{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.md\:focus\:bg-purple-600:focus{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.md\:focus\:bg-purple-700:focus{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.md\:focus\:bg-purple-800:focus{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.md\:focus\:bg-purple-900:focus{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.md\:focus\:bg-pink-50:focus{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.md\:focus\:bg-pink-100:focus{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.md\:focus\:bg-pink-200:focus{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.md\:focus\:bg-pink-300:focus{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.md\:focus\:bg-pink-400:focus{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.md\:focus\:bg-pink-500:focus{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.md\:focus\:bg-pink-600:focus{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.md\:focus\:bg-pink-700:focus{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.md\:focus\:bg-pink-800:focus{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.md\:focus\:bg-pink-900:focus{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.md\:active\:bg-transparent:active{background-color:transparent}.md\:active\:bg-white:active{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.md\:active\:bg-black:active{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.md\:active\:bg-gray-50:active{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.md\:active\:bg-gray-100:active{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.md\:active\:bg-gray-200:active{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.md\:active\:bg-gray-300:active{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.md\:active\:bg-gray-400:active{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.md\:active\:bg-gray-500:active{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.md\:active\:bg-gray-600:active{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.md\:active\:bg-gray-700:active{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.md\:active\:bg-gray-800:active{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.md\:active\:bg-gray-900:active{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.md\:active\:bg-cool-gray-50:active{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.md\:active\:bg-cool-gray-100:active{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.md\:active\:bg-cool-gray-200:active{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.md\:active\:bg-cool-gray-300:active{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.md\:active\:bg-cool-gray-400:active{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.md\:active\:bg-cool-gray-500:active{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.md\:active\:bg-cool-gray-600:active{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.md\:active\:bg-cool-gray-700:active{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.md\:active\:bg-cool-gray-800:active{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.md\:active\:bg-cool-gray-900:active{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.md\:active\:bg-red-50:active{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.md\:active\:bg-red-100:active{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.md\:active\:bg-red-200:active{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.md\:active\:bg-red-300:active{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.md\:active\:bg-red-400:active{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.md\:active\:bg-red-500:active{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.md\:active\:bg-red-600:active{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.md\:active\:bg-red-700:active{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.md\:active\:bg-red-800:active{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.md\:active\:bg-red-900:active{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.md\:active\:bg-orange-50:active{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.md\:active\:bg-orange-100:active{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.md\:active\:bg-orange-200:active{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.md\:active\:bg-orange-300:active{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.md\:active\:bg-orange-400:active{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.md\:active\:bg-orange-500:active{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.md\:active\:bg-orange-600:active{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.md\:active\:bg-orange-700:active{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.md\:active\:bg-orange-800:active{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.md\:active\:bg-orange-900:active{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.md\:active\:bg-yellow-50:active{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.md\:active\:bg-yellow-100:active{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.md\:active\:bg-yellow-200:active{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.md\:active\:bg-yellow-300:active{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.md\:active\:bg-yellow-400:active{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.md\:active\:bg-yellow-500:active{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.md\:active\:bg-yellow-600:active{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.md\:active\:bg-yellow-700:active{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.md\:active\:bg-yellow-800:active{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.md\:active\:bg-yellow-900:active{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.md\:active\:bg-green-50:active{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.md\:active\:bg-green-100:active{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.md\:active\:bg-green-200:active{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.md\:active\:bg-green-300:active{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.md\:active\:bg-green-400:active{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.md\:active\:bg-green-500:active{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.md\:active\:bg-green-600:active{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.md\:active\:bg-green-700:active{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.md\:active\:bg-green-800:active{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.md\:active\:bg-green-900:active{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.md\:active\:bg-teal-50:active{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.md\:active\:bg-teal-100:active{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.md\:active\:bg-teal-200:active{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.md\:active\:bg-teal-300:active{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.md\:active\:bg-teal-400:active{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.md\:active\:bg-teal-500:active{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.md\:active\:bg-teal-600:active{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.md\:active\:bg-teal-700:active{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.md\:active\:bg-teal-800:active{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.md\:active\:bg-teal-900:active{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.md\:active\:bg-blue-50:active{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.md\:active\:bg-blue-100:active{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.md\:active\:bg-blue-200:active{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.md\:active\:bg-blue-300:active{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.md\:active\:bg-blue-400:active{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.md\:active\:bg-blue-500:active{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.md\:active\:bg-blue-600:active{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.md\:active\:bg-blue-700:active{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.md\:active\:bg-blue-800:active{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.md\:active\:bg-blue-900:active{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.md\:active\:bg-indigo-50:active{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.md\:active\:bg-indigo-100:active{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.md\:active\:bg-indigo-200:active{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.md\:active\:bg-indigo-300:active{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.md\:active\:bg-indigo-400:active{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.md\:active\:bg-indigo-500:active{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.md\:active\:bg-indigo-600:active{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.md\:active\:bg-indigo-700:active{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.md\:active\:bg-indigo-800:active{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.md\:active\:bg-indigo-900:active{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.md\:active\:bg-purple-50:active{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.md\:active\:bg-purple-100:active{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.md\:active\:bg-purple-200:active{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.md\:active\:bg-purple-300:active{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.md\:active\:bg-purple-400:active{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.md\:active\:bg-purple-500:active{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.md\:active\:bg-purple-600:active{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.md\:active\:bg-purple-700:active{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.md\:active\:bg-purple-800:active{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.md\:active\:bg-purple-900:active{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.md\:active\:bg-pink-50:active{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.md\:active\:bg-pink-100:active{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.md\:active\:bg-pink-200:active{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.md\:active\:bg-pink-300:active{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.md\:active\:bg-pink-400:active{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.md\:active\:bg-pink-500:active{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.md\:active\:bg-pink-600:active{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.md\:active\:bg-pink-700:active{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.md\:active\:bg-pink-800:active{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.md\:active\:bg-pink-900:active{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.md\:bg-opacity-0{--bg-opacity:0}.md\:bg-opacity-25{--bg-opacity:0.25}.md\:bg-opacity-50{--bg-opacity:0.5}.md\:bg-opacity-75{--bg-opacity:0.75}.md\:bg-opacity-100{--bg-opacity:1}.md\:hover\:bg-opacity-0:hover{--bg-opacity:0}.md\:hover\:bg-opacity-25:hover{--bg-opacity:0.25}.md\:hover\:bg-opacity-50:hover{--bg-opacity:0.5}.md\:hover\:bg-opacity-75:hover{--bg-opacity:0.75}.md\:hover\:bg-opacity-100:hover{--bg-opacity:1}.md\:focus\:bg-opacity-0:focus{--bg-opacity:0}.md\:focus\:bg-opacity-25:focus{--bg-opacity:0.25}.md\:focus\:bg-opacity-50:focus{--bg-opacity:0.5}.md\:focus\:bg-opacity-75:focus{--bg-opacity:0.75}.md\:focus\:bg-opacity-100:focus{--bg-opacity:1}.md\:bg-bottom{background-position:bottom}.md\:bg-center{background-position:center}.md\:bg-left{background-position:left}.md\:bg-left-bottom{background-position:left bottom}.md\:bg-left-top{background-position:left top}.md\:bg-right{background-position:right}.md\:bg-right-bottom{background-position:right bottom}.md\:bg-right-top{background-position:right top}.md\:bg-top{background-position:top}.md\:bg-repeat{background-repeat:repeat}.md\:bg-no-repeat{background-repeat:no-repeat}.md\:bg-repeat-x{background-repeat:repeat-x}.md\:bg-repeat-y{background-repeat:repeat-y}.md\:bg-repeat-round{background-repeat:round}.md\:bg-repeat-space{background-repeat:space}.md\:bg-auto{background-size:auto}.md\:bg-cover{background-size:cover}.md\:bg-contain{background-size:contain}.md\:border-collapse{border-collapse:collapse}.md\:border-separate{border-collapse:separate}.md\:border-transparent{border-color:transparent}.md\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.md\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.md\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.md\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.md\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.md\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.md\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.md\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.md\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.md\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.md\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.md\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.md\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.md\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.md\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.md\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.md\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.md\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.md\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.md\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.md\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.md\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.md\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.md\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.md\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.md\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.md\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.md\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.md\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.md\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.md\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.md\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.md\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.md\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.md\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.md\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.md\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.md\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.md\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.md\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.md\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.md\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.md\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.md\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.md\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.md\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.md\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.md\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.md\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.md\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.md\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.md\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.md\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.md\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.md\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.md\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.md\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.md\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.md\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.md\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.md\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.md\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.md\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.md\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.md\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.md\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.md\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.md\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.md\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.md\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.md\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.md\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.md\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.md\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.md\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.md\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.md\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.md\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.md\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.md\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.md\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.md\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.md\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.md\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.md\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.md\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.md\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.md\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.md\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.md\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.md\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.md\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.md\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.md\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.md\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.md\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.md\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.md\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.md\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.md\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.md\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.md\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.md\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.md\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.md\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.md\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.md\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.md\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.md\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.md\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.md\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.md\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:hover .md\:group-hover\:border-transparent{border-color:transparent}.group:hover .md\:group-hover\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:hover .md\:group-hover\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:hover .md\:group-hover\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:hover .md\:group-hover\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:hover .md\:group-hover\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:hover .md\:group-hover\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:hover .md\:group-hover\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:hover .md\:group-hover\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:hover .md\:group-hover\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:hover .md\:group-hover\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:hover .md\:group-hover\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:hover .md\:group-hover\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:hover .md\:group-hover\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:focus .md\:group-focus\:border-transparent{border-color:transparent}.group:focus .md\:group-focus\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:focus .md\:group-focus\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:focus .md\:group-focus\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:focus .md\:group-focus\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:focus .md\:group-focus\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:focus .md\:group-focus\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:focus .md\:group-focus\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:focus .md\:group-focus\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:focus .md\:group-focus\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:focus .md\:group-focus\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:focus .md\:group-focus\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:focus .md\:group-focus\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:focus .md\:group-focus\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.md\:hover\:border-transparent:hover{border-color:transparent}.md\:hover\:border-white:hover{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.md\:hover\:border-black:hover{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.md\:hover\:border-gray-50:hover{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.md\:hover\:border-gray-100:hover{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.md\:hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.md\:hover\:border-gray-300:hover{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.md\:hover\:border-gray-400:hover{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.md\:hover\:border-gray-500:hover{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.md\:hover\:border-gray-600:hover{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.md\:hover\:border-gray-700:hover{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.md\:hover\:border-gray-800:hover{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.md\:hover\:border-gray-900:hover{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.md\:hover\:border-cool-gray-50:hover{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.md\:hover\:border-cool-gray-100:hover{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.md\:hover\:border-cool-gray-200:hover{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.md\:hover\:border-cool-gray-300:hover{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.md\:hover\:border-cool-gray-400:hover{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.md\:hover\:border-cool-gray-500:hover{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.md\:hover\:border-cool-gray-600:hover{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.md\:hover\:border-cool-gray-700:hover{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.md\:hover\:border-cool-gray-800:hover{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.md\:hover\:border-cool-gray-900:hover{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.md\:hover\:border-red-50:hover{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.md\:hover\:border-red-100:hover{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.md\:hover\:border-red-200:hover{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.md\:hover\:border-red-300:hover{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.md\:hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.md\:hover\:border-red-500:hover{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.md\:hover\:border-red-600:hover{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.md\:hover\:border-red-700:hover{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.md\:hover\:border-red-800:hover{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.md\:hover\:border-red-900:hover{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.md\:hover\:border-orange-50:hover{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.md\:hover\:border-orange-100:hover{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.md\:hover\:border-orange-200:hover{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.md\:hover\:border-orange-300:hover{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.md\:hover\:border-orange-400:hover{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.md\:hover\:border-orange-500:hover{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.md\:hover\:border-orange-600:hover{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.md\:hover\:border-orange-700:hover{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.md\:hover\:border-orange-800:hover{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.md\:hover\:border-orange-900:hover{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.md\:hover\:border-yellow-50:hover{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.md\:hover\:border-yellow-100:hover{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.md\:hover\:border-yellow-200:hover{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.md\:hover\:border-yellow-300:hover{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.md\:hover\:border-yellow-400:hover{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.md\:hover\:border-yellow-500:hover{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.md\:hover\:border-yellow-600:hover{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.md\:hover\:border-yellow-700:hover{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.md\:hover\:border-yellow-800:hover{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.md\:hover\:border-yellow-900:hover{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.md\:hover\:border-green-50:hover{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.md\:hover\:border-green-100:hover{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.md\:hover\:border-green-200:hover{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.md\:hover\:border-green-300:hover{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.md\:hover\:border-green-400:hover{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.md\:hover\:border-green-500:hover{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.md\:hover\:border-green-600:hover{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.md\:hover\:border-green-700:hover{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.md\:hover\:border-green-800:hover{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.md\:hover\:border-green-900:hover{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.md\:hover\:border-teal-50:hover{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.md\:hover\:border-teal-100:hover{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.md\:hover\:border-teal-200:hover{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.md\:hover\:border-teal-300:hover{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.md\:hover\:border-teal-400:hover{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.md\:hover\:border-teal-500:hover{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.md\:hover\:border-teal-600:hover{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.md\:hover\:border-teal-700:hover{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.md\:hover\:border-teal-800:hover{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.md\:hover\:border-teal-900:hover{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.md\:hover\:border-blue-50:hover{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.md\:hover\:border-blue-100:hover{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.md\:hover\:border-blue-200:hover{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.md\:hover\:border-blue-300:hover{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.md\:hover\:border-blue-400:hover{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.md\:hover\:border-blue-500:hover{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.md\:hover\:border-blue-600:hover{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.md\:hover\:border-blue-700:hover{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.md\:hover\:border-blue-800:hover{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.md\:hover\:border-blue-900:hover{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.md\:hover\:border-indigo-50:hover{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.md\:hover\:border-indigo-100:hover{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.md\:hover\:border-indigo-200:hover{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.md\:hover\:border-indigo-300:hover{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.md\:hover\:border-indigo-400:hover{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.md\:hover\:border-indigo-500:hover{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.md\:hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.md\:hover\:border-indigo-700:hover{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.md\:hover\:border-indigo-800:hover{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.md\:hover\:border-indigo-900:hover{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.md\:hover\:border-purple-50:hover{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.md\:hover\:border-purple-100:hover{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.md\:hover\:border-purple-200:hover{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.md\:hover\:border-purple-300:hover{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.md\:hover\:border-purple-400:hover{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.md\:hover\:border-purple-500:hover{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.md\:hover\:border-purple-600:hover{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.md\:hover\:border-purple-700:hover{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.md\:hover\:border-purple-800:hover{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.md\:hover\:border-purple-900:hover{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.md\:hover\:border-pink-50:hover{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.md\:hover\:border-pink-100:hover{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.md\:hover\:border-pink-200:hover{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.md\:hover\:border-pink-300:hover{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.md\:hover\:border-pink-400:hover{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.md\:hover\:border-pink-500:hover{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.md\:hover\:border-pink-600:hover{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.md\:hover\:border-pink-700:hover{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.md\:hover\:border-pink-800:hover{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.md\:hover\:border-pink-900:hover{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.md\:focus\:border-transparent:focus{border-color:transparent}.md\:focus\:border-white:focus{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.md\:focus\:border-black:focus{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.md\:focus\:border-gray-50:focus{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.md\:focus\:border-gray-100:focus{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.md\:focus\:border-gray-200:focus{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.md\:focus\:border-gray-300:focus{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.md\:focus\:border-gray-400:focus{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.md\:focus\:border-gray-500:focus{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.md\:focus\:border-gray-600:focus{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.md\:focus\:border-gray-700:focus{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.md\:focus\:border-gray-800:focus{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.md\:focus\:border-gray-900:focus{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.md\:focus\:border-cool-gray-50:focus{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.md\:focus\:border-cool-gray-100:focus{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.md\:focus\:border-cool-gray-200:focus{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.md\:focus\:border-cool-gray-300:focus{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.md\:focus\:border-cool-gray-400:focus{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.md\:focus\:border-cool-gray-500:focus{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.md\:focus\:border-cool-gray-600:focus{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.md\:focus\:border-cool-gray-700:focus{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.md\:focus\:border-cool-gray-800:focus{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.md\:focus\:border-cool-gray-900:focus{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.md\:focus\:border-red-50:focus{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.md\:focus\:border-red-100:focus{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.md\:focus\:border-red-200:focus{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.md\:focus\:border-red-300:focus{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.md\:focus\:border-red-400:focus{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.md\:focus\:border-red-500:focus{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.md\:focus\:border-red-600:focus{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.md\:focus\:border-red-700:focus{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.md\:focus\:border-red-800:focus{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.md\:focus\:border-red-900:focus{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.md\:focus\:border-orange-50:focus{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.md\:focus\:border-orange-100:focus{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.md\:focus\:border-orange-200:focus{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.md\:focus\:border-orange-300:focus{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.md\:focus\:border-orange-400:focus{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.md\:focus\:border-orange-500:focus{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.md\:focus\:border-orange-600:focus{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.md\:focus\:border-orange-700:focus{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.md\:focus\:border-orange-800:focus{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.md\:focus\:border-orange-900:focus{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.md\:focus\:border-yellow-50:focus{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.md\:focus\:border-yellow-100:focus{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.md\:focus\:border-yellow-200:focus{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.md\:focus\:border-yellow-300:focus{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.md\:focus\:border-yellow-400:focus{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.md\:focus\:border-yellow-500:focus{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.md\:focus\:border-yellow-600:focus{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.md\:focus\:border-yellow-700:focus{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.md\:focus\:border-yellow-800:focus{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.md\:focus\:border-yellow-900:focus{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.md\:focus\:border-green-50:focus{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.md\:focus\:border-green-100:focus{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.md\:focus\:border-green-200:focus{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.md\:focus\:border-green-300:focus{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.md\:focus\:border-green-400:focus{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.md\:focus\:border-green-500:focus{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.md\:focus\:border-green-600:focus{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.md\:focus\:border-green-700:focus{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.md\:focus\:border-green-800:focus{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.md\:focus\:border-green-900:focus{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.md\:focus\:border-teal-50:focus{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.md\:focus\:border-teal-100:focus{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.md\:focus\:border-teal-200:focus{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.md\:focus\:border-teal-300:focus{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.md\:focus\:border-teal-400:focus{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.md\:focus\:border-teal-500:focus{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.md\:focus\:border-teal-600:focus{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.md\:focus\:border-teal-700:focus{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.md\:focus\:border-teal-800:focus{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.md\:focus\:border-teal-900:focus{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.md\:focus\:border-blue-50:focus{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.md\:focus\:border-blue-100:focus{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.md\:focus\:border-blue-200:focus{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.md\:focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.md\:focus\:border-blue-400:focus{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.md\:focus\:border-blue-500:focus{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.md\:focus\:border-blue-600:focus{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.md\:focus\:border-blue-700:focus{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.md\:focus\:border-blue-800:focus{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.md\:focus\:border-blue-900:focus{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.md\:focus\:border-indigo-50:focus{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.md\:focus\:border-indigo-100:focus{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.md\:focus\:border-indigo-200:focus{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.md\:focus\:border-indigo-300:focus{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.md\:focus\:border-indigo-400:focus{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.md\:focus\:border-indigo-500:focus{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.md\:focus\:border-indigo-600:focus{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.md\:focus\:border-indigo-700:focus{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.md\:focus\:border-indigo-800:focus{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.md\:focus\:border-indigo-900:focus{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.md\:focus\:border-purple-50:focus{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.md\:focus\:border-purple-100:focus{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.md\:focus\:border-purple-200:focus{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.md\:focus\:border-purple-300:focus{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.md\:focus\:border-purple-400:focus{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.md\:focus\:border-purple-500:focus{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.md\:focus\:border-purple-600:focus{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.md\:focus\:border-purple-700:focus{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.md\:focus\:border-purple-800:focus{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.md\:focus\:border-purple-900:focus{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.md\:focus\:border-pink-50:focus{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.md\:focus\:border-pink-100:focus{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.md\:focus\:border-pink-200:focus{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.md\:focus\:border-pink-300:focus{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.md\:focus\:border-pink-400:focus{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.md\:focus\:border-pink-500:focus{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.md\:focus\:border-pink-600:focus{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.md\:focus\:border-pink-700:focus{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.md\:focus\:border-pink-800:focus{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.md\:focus\:border-pink-900:focus{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.md\:border-opacity-0{--border-opacity:0}.md\:border-opacity-25{--border-opacity:0.25}.md\:border-opacity-50{--border-opacity:0.5}.md\:border-opacity-75{--border-opacity:0.75}.md\:border-opacity-100{--border-opacity:1}.md\:hover\:border-opacity-0:hover{--border-opacity:0}.md\:hover\:border-opacity-25:hover{--border-opacity:0.25}.md\:hover\:border-opacity-50:hover{--border-opacity:0.5}.md\:hover\:border-opacity-75:hover{--border-opacity:0.75}.md\:hover\:border-opacity-100:hover{--border-opacity:1}.md\:focus\:border-opacity-0:focus{--border-opacity:0}.md\:focus\:border-opacity-25:focus{--border-opacity:0.25}.md\:focus\:border-opacity-50:focus{--border-opacity:0.5}.md\:focus\:border-opacity-75:focus{--border-opacity:0.75}.md\:focus\:border-opacity-100:focus{--border-opacity:1}.md\:rounded-none{border-radius:0}.md\:rounded-sm{border-radius:.125rem}.md\:rounded{border-radius:.25rem}.md\:rounded-md{border-radius:.375rem}.md\:rounded-lg{border-radius:.5rem}.md\:rounded-full{border-radius:9999px}.md\:rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.md\:rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.md\:rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.md\:rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.md\:rounded-t-sm{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.md\:rounded-r-sm{border-top-right-radius:.125rem;border-bottom-right-radius:.125rem}.md\:rounded-b-sm{border-bottom-right-radius:.125rem;border-bottom-left-radius:.125rem}.md\:rounded-l-sm{border-top-left-radius:.125rem;border-bottom-left-radius:.125rem}.md\:rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.md\:rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.md\:rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.md\:rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.md\:rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.md\:rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.md\:rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.md\:rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.md\:rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.md\:rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.md\:rounded-b-lg{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.md\:rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.md\:rounded-t-full{border-top-left-radius:9999px;border-top-right-radius:9999px}.md\:rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.md\:rounded-b-full{border-bottom-right-radius:9999px;border-bottom-left-radius:9999px}.md\:rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.md\:rounded-tl-none{border-top-left-radius:0}.md\:rounded-tr-none{border-top-right-radius:0}.md\:rounded-br-none{border-bottom-right-radius:0}.md\:rounded-bl-none{border-bottom-left-radius:0}.md\:rounded-tl-sm{border-top-left-radius:.125rem}.md\:rounded-tr-sm{border-top-right-radius:.125rem}.md\:rounded-br-sm{border-bottom-right-radius:.125rem}.md\:rounded-bl-sm{border-bottom-left-radius:.125rem}.md\:rounded-tl{border-top-left-radius:.25rem}.md\:rounded-tr{border-top-right-radius:.25rem}.md\:rounded-br{border-bottom-right-radius:.25rem}.md\:rounded-bl{border-bottom-left-radius:.25rem}.md\:rounded-tl-md{border-top-left-radius:.375rem}.md\:rounded-tr-md{border-top-right-radius:.375rem}.md\:rounded-br-md{border-bottom-right-radius:.375rem}.md\:rounded-bl-md{border-bottom-left-radius:.375rem}.md\:rounded-tl-lg{border-top-left-radius:.5rem}.md\:rounded-tr-lg{border-top-right-radius:.5rem}.md\:rounded-br-lg{border-bottom-right-radius:.5rem}.md\:rounded-bl-lg{border-bottom-left-radius:.5rem}.md\:rounded-tl-full{border-top-left-radius:9999px}.md\:rounded-tr-full{border-top-right-radius:9999px}.md\:rounded-br-full{border-bottom-right-radius:9999px}.md\:rounded-bl-full{border-bottom-left-radius:9999px}.md\:border-solid{border-style:solid}.md\:border-dashed{border-style:dashed}.md\:border-dotted{border-style:dotted}.md\:border-double{border-style:double}.md\:border-none{border-style:none}.md\:border-0{border-width:0}.md\:border-2{border-width:2px}.md\:border-4{border-width:4px}.md\:border-8{border-width:8px}.md\:border{border-width:1px}.md\:border-t-0{border-top-width:0}.md\:border-r-0{border-right-width:0}.md\:border-b-0{border-bottom-width:0}.md\:border-l-0{border-left-width:0}.md\:border-t-2{border-top-width:2px}.md\:border-r-2{border-right-width:2px}.md\:border-b-2{border-bottom-width:2px}.md\:border-l-2{border-left-width:2px}.md\:border-t-4{border-top-width:4px}.md\:border-r-4{border-right-width:4px}.md\:border-b-4{border-bottom-width:4px}.md\:border-l-4{border-left-width:4px}.md\:border-t-8{border-top-width:8px}.md\:border-r-8{border-right-width:8px}.md\:border-b-8{border-bottom-width:8px}.md\:border-l-8{border-left-width:8px}.md\:border-t{border-top-width:1px}.md\:border-r{border-right-width:1px}.md\:border-b{border-bottom-width:1px}.md\:border-l{border-left-width:1px}.md\:box-border{box-sizing:border-box}.md\:box-content{box-sizing:content-box}.md\:cursor-auto{cursor:auto}.md\:cursor-default{cursor:default}.md\:cursor-pointer{cursor:pointer}.md\:cursor-wait{cursor:wait}.md\:cursor-text{cursor:text}.md\:cursor-move{cursor:move}.md\:cursor-not-allowed{cursor:not-allowed}.md\:block{display:block}.md\:inline-block{display:inline-block}.md\:inline{display:inline}.md\:flex{display:flex}.md\:inline-flex{display:inline-flex}.md\:table{display:table}.md\:table-caption{display:table-caption}.md\:table-cell{display:table-cell}.md\:table-column{display:table-column}.md\:table-column-group{display:table-column-group}.md\:table-footer-group{display:table-footer-group}.md\:table-header-group{display:table-header-group}.md\:table-row-group{display:table-row-group}.md\:table-row{display:table-row}.md\:flow-root{display:flow-root}.md\:grid{display:grid}.md\:inline-grid{display:inline-grid}.md\:hidden{display:none}.md\:flex-row{flex-direction:row}.md\:flex-row-reverse{flex-direction:row-reverse}.md\:flex-col{flex-direction:column}.md\:flex-col-reverse{flex-direction:column-reverse}.md\:flex-wrap{flex-wrap:wrap}.md\:flex-wrap-reverse{flex-wrap:wrap-reverse}.md\:flex-no-wrap{flex-wrap:nowrap}.md\:items-start{align-items:flex-start}.md\:items-end{align-items:flex-end}.md\:items-center{align-items:center}.md\:items-baseline{align-items:baseline}.md\:items-stretch{align-items:stretch}.md\:self-auto{align-self:auto}.md\:self-start{align-self:flex-start}.md\:self-end{align-self:flex-end}.md\:self-center{align-self:center}.md\:self-stretch{align-self:stretch}.md\:justify-start{justify-content:flex-start}.md\:justify-end{justify-content:flex-end}.md\:justify-center{justify-content:center}.md\:justify-between{justify-content:space-between}.md\:justify-around{justify-content:space-around}.md\:justify-evenly{justify-content:space-evenly}.md\:content-center{align-content:center}.md\:content-start{align-content:flex-start}.md\:content-end{align-content:flex-end}.md\:content-between{align-content:space-between}.md\:content-around{align-content:space-around}.md\:flex-1{flex:1 1 0%}.md\:flex-auto{flex:1 1 auto}.md\:flex-initial{flex:0 1 auto}.md\:flex-none{flex:none}.md\:flex-grow-0{flex-grow:0}.md\:flex-grow{flex-grow:1}.md\:flex-shrink-0{flex-shrink:0}.md\:flex-shrink{flex-shrink:1}.md\:order-1{order:1}.md\:order-2{order:2}.md\:order-3{order:3}.md\:order-4{order:4}.md\:order-5{order:5}.md\:order-6{order:6}.md\:order-7{order:7}.md\:order-8{order:8}.md\:order-9{order:9}.md\:order-10{order:10}.md\:order-11{order:11}.md\:order-12{order:12}.md\:order-first{order:-9999}.md\:order-last{order:9999}.md\:order-none{order:0}.md\:float-right{float:right}.md\:float-left{float:left}.md\:float-none{float:none}.md\:clearfix:after{content:"";display:table;clear:both}.md\:clear-left{clear:left}.md\:clear-right{clear:right}.md\:clear-both{clear:both}.md\:clear-none{clear:none}.md\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.md\:font-serif{font-family:Georgia,Cambria,"Times New Roman",Times,serif}.md\:font-mono{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.md\:font-hairline{font-weight:100}.md\:font-thin{font-weight:200}.md\:font-light{font-weight:300}.md\:font-normal{font-weight:400}.md\:font-medium{font-weight:500}.md\:font-semibold{font-weight:600}.md\:font-bold{font-weight:700}.md\:font-extrabold{font-weight:800}.md\:font-black{font-weight:900}.md\:hover\:font-hairline:hover{font-weight:100}.md\:hover\:font-thin:hover{font-weight:200}.md\:hover\:font-light:hover{font-weight:300}.md\:hover\:font-normal:hover{font-weight:400}.md\:hover\:font-medium:hover{font-weight:500}.md\:hover\:font-semibold:hover{font-weight:600}.md\:hover\:font-bold:hover{font-weight:700}.md\:hover\:font-extrabold:hover{font-weight:800}.md\:hover\:font-black:hover{font-weight:900}.md\:focus\:font-hairline:focus{font-weight:100}.md\:focus\:font-thin:focus{font-weight:200}.md\:focus\:font-light:focus{font-weight:300}.md\:focus\:font-normal:focus{font-weight:400}.md\:focus\:font-medium:focus{font-weight:500}.md\:focus\:font-semibold:focus{font-weight:600}.md\:focus\:font-bold:focus{font-weight:700}.md\:focus\:font-extrabold:focus{font-weight:800}.md\:focus\:font-black:focus{font-weight:900}.md\:h-0{height:0}.md\:h-1{height:.25rem}.md\:h-2{height:.5rem}.md\:h-3{height:.75rem}.md\:h-4{height:1rem}.md\:h-5{height:1.25rem}.md\:h-6{height:1.5rem}.md\:h-7{height:1.75rem}.md\:h-8{height:2rem}.md\:h-9{height:2.25rem}.md\:h-10{height:2.5rem}.md\:h-11{height:2.75rem}.md\:h-12{height:3rem}.md\:h-13{height:3.25rem}.md\:h-14{height:3.5rem}.md\:h-15{height:3.75rem}.md\:h-16{height:4rem}.md\:h-20{height:5rem}.md\:h-24{height:6rem}.md\:h-28{height:7rem}.md\:h-32{height:8rem}.md\:h-36{height:9rem}.md\:h-40{height:10rem}.md\:h-44{height:11rem}.md\:h-48{height:12rem}.md\:h-52{height:13rem}.md\:h-56{height:14rem}.md\:h-60{height:15rem}.md\:h-64{height:16rem}.md\:h-72{height:18rem}.md\:h-80{height:20rem}.md\:h-96{height:24rem}.md\:h-auto{height:auto}.md\:h-px{height:1px}.md\:h-0\.5{height:.125rem}.md\:h-1\.5{height:.375rem}.md\:h-2\.5{height:.625rem}.md\:h-3\.5{height:.875rem}.md\:h-1\/2{height:50%}.md\:h-1\/3{height:33.333333%}.md\:h-2\/3{height:66.666667%}.md\:h-1\/4{height:25%}.md\:h-2\/4{height:50%}.md\:h-3\/4{height:75%}.md\:h-1\/5{height:20%}.md\:h-2\/5{height:40%}.md\:h-3\/5{height:60%}.md\:h-4\/5{height:80%}.md\:h-1\/6{height:16.666667%}.md\:h-2\/6{height:33.333333%}.md\:h-3\/6{height:50%}.md\:h-4\/6{height:66.666667%}.md\:h-5\/6{height:83.333333%}.md\:h-1\/12{height:8.333333%}.md\:h-2\/12{height:16.666667%}.md\:h-3\/12{height:25%}.md\:h-4\/12{height:33.333333%}.md\:h-5\/12{height:41.666667%}.md\:h-6\/12{height:50%}.md\:h-7\/12{height:58.333333%}.md\:h-8\/12{height:66.666667%}.md\:h-9\/12{height:75%}.md\:h-10\/12{height:83.333333%}.md\:h-11\/12{height:91.666667%}.md\:h-full{height:100%}.md\:h-screen{height:100vh}.md\:text-xs{font-size:.75rem}.md\:text-sm{font-size:.875rem}.md\:text-base{font-size:1rem}.md\:text-lg{font-size:1.125rem}.md\:text-xl{font-size:1.25rem}.md\:text-2xl{font-size:1.5rem}.md\:text-3xl{font-size:1.875rem}.md\:text-4xl{font-size:2.25rem}.md\:text-5xl{font-size:3rem}.md\:text-6xl{font-size:4rem}.md\:leading-3{line-height:.75rem}.md\:leading-4{line-height:1rem}.md\:leading-5{line-height:1.25rem}.md\:leading-6{line-height:1.5rem}.md\:leading-7{line-height:1.75rem}.md\:leading-8{line-height:2rem}.md\:leading-9{line-height:2.25rem}.md\:leading-10{line-height:2.5rem}.md\:leading-none{line-height:1}.md\:leading-tight{line-height:1.25}.md\:leading-snug{line-height:1.375}.md\:leading-normal{line-height:1.5}.md\:leading-relaxed{line-height:1.625}.md\:leading-loose{line-height:2}.md\:list-inside{list-style-position:inside}.md\:list-outside{list-style-position:outside}.md\:list-none{list-style-type:none}.md\:list-disc{list-style-type:disc}.md\:list-decimal{list-style-type:decimal}.md\:m-0{margin:0}.md\:m-1{margin:.25rem}.md\:m-2{margin:.5rem}.md\:m-3{margin:.75rem}.md\:m-4{margin:1rem}.md\:m-5{margin:1.25rem}.md\:m-6{margin:1.5rem}.md\:m-7{margin:1.75rem}.md\:m-8{margin:2rem}.md\:m-9{margin:2.25rem}.md\:m-10{margin:2.5rem}.md\:m-11{margin:2.75rem}.md\:m-12{margin:3rem}.md\:m-13{margin:3.25rem}.md\:m-14{margin:3.5rem}.md\:m-15{margin:3.75rem}.md\:m-16{margin:4rem}.md\:m-20{margin:5rem}.md\:m-24{margin:6rem}.md\:m-28{margin:7rem}.md\:m-32{margin:8rem}.md\:m-36{margin:9rem}.md\:m-40{margin:10rem}.md\:m-44{margin:11rem}.md\:m-48{margin:12rem}.md\:m-52{margin:13rem}.md\:m-56{margin:14rem}.md\:m-60{margin:15rem}.md\:m-64{margin:16rem}.md\:m-72{margin:18rem}.md\:m-80{margin:20rem}.md\:m-96{margin:24rem}.md\:m-auto{margin:auto}.md\:m-px{margin:1px}.md\:m-0\.5{margin:.125rem}.md\:m-1\.5{margin:.375rem}.md\:m-2\.5{margin:.625rem}.md\:m-3\.5{margin:.875rem}.md\:m-1\/2{margin:50%}.md\:m-1\/3{margin:33.333333%}.md\:m-2\/3{margin:66.666667%}.md\:m-1\/4{margin:25%}.md\:m-2\/4{margin:50%}.md\:m-3\/4{margin:75%}.md\:m-1\/5{margin:20%}.md\:m-2\/5{margin:40%}.md\:m-3\/5{margin:60%}.md\:m-4\/5{margin:80%}.md\:m-1\/6{margin:16.666667%}.md\:m-2\/6{margin:33.333333%}.md\:m-3\/6{margin:50%}.md\:m-4\/6{margin:66.666667%}.md\:m-5\/6{margin:83.333333%}.md\:m-1\/12{margin:8.333333%}.md\:m-2\/12{margin:16.666667%}.md\:m-3\/12{margin:25%}.md\:m-4\/12{margin:33.333333%}.md\:m-5\/12{margin:41.666667%}.md\:m-6\/12{margin:50%}.md\:m-7\/12{margin:58.333333%}.md\:m-8\/12{margin:66.666667%}.md\:m-9\/12{margin:75%}.md\:m-10\/12{margin:83.333333%}.md\:m-11\/12{margin:91.666667%}.md\:m-full{margin:100%}.md\:-m-1{margin:-.25rem}.md\:-m-2{margin:-.5rem}.md\:-m-3{margin:-.75rem}.md\:-m-4{margin:-1rem}.md\:-m-5{margin:-1.25rem}.md\:-m-6{margin:-1.5rem}.md\:-m-7{margin:-1.75rem}.md\:-m-8{margin:-2rem}.md\:-m-9{margin:-2.25rem}.md\:-m-10{margin:-2.5rem}.md\:-m-11{margin:-2.75rem}.md\:-m-12{margin:-3rem}.md\:-m-13{margin:-3.25rem}.md\:-m-14{margin:-3.5rem}.md\:-m-15{margin:-3.75rem}.md\:-m-16{margin:-4rem}.md\:-m-20{margin:-5rem}.md\:-m-24{margin:-6rem}.md\:-m-28{margin:-7rem}.md\:-m-32{margin:-8rem}.md\:-m-36{margin:-9rem}.md\:-m-40{margin:-10rem}.md\:-m-44{margin:-11rem}.md\:-m-48{margin:-12rem}.md\:-m-52{margin:-13rem}.md\:-m-56{margin:-14rem}.md\:-m-60{margin:-15rem}.md\:-m-64{margin:-16rem}.md\:-m-72{margin:-18rem}.md\:-m-80{margin:-20rem}.md\:-m-96{margin:-24rem}.md\:-m-px{margin:-1px}.md\:-m-0\.5{margin:-.125rem}.md\:-m-1\.5{margin:-.375rem}.md\:-m-2\.5{margin:-.625rem}.md\:-m-3\.5{margin:-.875rem}.md\:-m-1\/2{margin:-50%}.md\:-m-1\/3{margin:-33.33333%}.md\:-m-2\/3{margin:-66.66667%}.md\:-m-1\/4{margin:-25%}.md\:-m-2\/4{margin:-50%}.md\:-m-3\/4{margin:-75%}.md\:-m-1\/5{margin:-20%}.md\:-m-2\/5{margin:-40%}.md\:-m-3\/5{margin:-60%}.md\:-m-4\/5{margin:-80%}.md\:-m-1\/6{margin:-16.66667%}.md\:-m-2\/6{margin:-33.33333%}.md\:-m-3\/6{margin:-50%}.md\:-m-4\/6{margin:-66.66667%}.md\:-m-5\/6{margin:-83.33333%}.md\:-m-1\/12{margin:-8.33333%}.md\:-m-2\/12{margin:-16.66667%}.md\:-m-3\/12{margin:-25%}.md\:-m-4\/12{margin:-33.33333%}.md\:-m-5\/12{margin:-41.66667%}.md\:-m-6\/12{margin:-50%}.md\:-m-7\/12{margin:-58.33333%}.md\:-m-8\/12{margin:-66.66667%}.md\:-m-9\/12{margin:-75%}.md\:-m-10\/12{margin:-83.33333%}.md\:-m-11\/12{margin:-91.66667%}.md\:-m-full{margin:-100%}.md\:my-0{margin-top:0;margin-bottom:0}.md\:mx-0{margin-left:0;margin-right:0}.md\:my-1{margin-top:.25rem;margin-bottom:.25rem}.md\:mx-1{margin-left:.25rem;margin-right:.25rem}.md\:my-2{margin-top:.5rem;margin-bottom:.5rem}.md\:mx-2{margin-left:.5rem;margin-right:.5rem}.md\:my-3{margin-top:.75rem;margin-bottom:.75rem}.md\:mx-3{margin-left:.75rem;margin-right:.75rem}.md\:my-4{margin-top:1rem;margin-bottom:1rem}.md\:mx-4{margin-left:1rem;margin-right:1rem}.md\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.md\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.md\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.md\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.md\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.md\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.md\:my-8{margin-top:2rem;margin-bottom:2rem}.md\:mx-8{margin-left:2rem;margin-right:2rem}.md\:my-9{margin-top:2.25rem;margin-bottom:2.25rem}.md\:mx-9{margin-left:2.25rem;margin-right:2.25rem}.md\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.md\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.md\:my-11{margin-top:2.75rem;margin-bottom:2.75rem}.md\:mx-11{margin-left:2.75rem;margin-right:2.75rem}.md\:my-12{margin-top:3rem;margin-bottom:3rem}.md\:mx-12{margin-left:3rem;margin-right:3rem}.md\:my-13{margin-top:3.25rem;margin-bottom:3.25rem}.md\:mx-13{margin-left:3.25rem;margin-right:3.25rem}.md\:my-14{margin-top:3.5rem;margin-bottom:3.5rem}.md\:mx-14{margin-left:3.5rem;margin-right:3.5rem}.md\:my-15{margin-top:3.75rem;margin-bottom:3.75rem}.md\:mx-15{margin-left:3.75rem;margin-right:3.75rem}.md\:my-16{margin-top:4rem;margin-bottom:4rem}.md\:mx-16{margin-left:4rem;margin-right:4rem}.md\:my-20{margin-top:5rem;margin-bottom:5rem}.md\:mx-20{margin-left:5rem;margin-right:5rem}.md\:my-24{margin-top:6rem;margin-bottom:6rem}.md\:mx-24{margin-left:6rem;margin-right:6rem}.md\:my-28{margin-top:7rem;margin-bottom:7rem}.md\:mx-28{margin-left:7rem;margin-right:7rem}.md\:my-32{margin-top:8rem;margin-bottom:8rem}.md\:mx-32{margin-left:8rem;margin-right:8rem}.md\:my-36{margin-top:9rem;margin-bottom:9rem}.md\:mx-36{margin-left:9rem;margin-right:9rem}.md\:my-40{margin-top:10rem;margin-bottom:10rem}.md\:mx-40{margin-left:10rem;margin-right:10rem}.md\:my-44{margin-top:11rem;margin-bottom:11rem}.md\:mx-44{margin-left:11rem;margin-right:11rem}.md\:my-48{margin-top:12rem;margin-bottom:12rem}.md\:mx-48{margin-left:12rem;margin-right:12rem}.md\:my-52{margin-top:13rem;margin-bottom:13rem}.md\:mx-52{margin-left:13rem;margin-right:13rem}.md\:my-56{margin-top:14rem;margin-bottom:14rem}.md\:mx-56{margin-left:14rem;margin-right:14rem}.md\:my-60{margin-top:15rem;margin-bottom:15rem}.md\:mx-60{margin-left:15rem;margin-right:15rem}.md\:my-64{margin-top:16rem;margin-bottom:16rem}.md\:mx-64{margin-left:16rem;margin-right:16rem}.md\:my-72{margin-top:18rem;margin-bottom:18rem}.md\:mx-72{margin-left:18rem;margin-right:18rem}.md\:my-80{margin-top:20rem;margin-bottom:20rem}.md\:mx-80{margin-left:20rem;margin-right:20rem}.md\:my-96{margin-top:24rem;margin-bottom:24rem}.md\:mx-96{margin-left:24rem;margin-right:24rem}.md\:my-auto{margin-top:auto;margin-bottom:auto}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:my-px{margin-top:1px;margin-bottom:1px}.md\:mx-px{margin-left:1px;margin-right:1px}.md\:my-0\.5{margin-top:.125rem;margin-bottom:.125rem}.md\:mx-0\.5{margin-left:.125rem;margin-right:.125rem}.md\:my-1\.5{margin-top:.375rem;margin-bottom:.375rem}.md\:mx-1\.5{margin-left:.375rem;margin-right:.375rem}.md\:my-2\.5{margin-top:.625rem;margin-bottom:.625rem}.md\:mx-2\.5{margin-left:.625rem;margin-right:.625rem}.md\:my-3\.5{margin-top:.875rem;margin-bottom:.875rem}.md\:mx-3\.5{margin-left:.875rem;margin-right:.875rem}.md\:my-1\/2{margin-top:50%;margin-bottom:50%}.md\:mx-1\/2{margin-left:50%;margin-right:50%}.md\:my-1\/3{margin-top:33.333333%;margin-bottom:33.333333%}.md\:mx-1\/3{margin-left:33.333333%;margin-right:33.333333%}.md\:my-2\/3{margin-top:66.666667%;margin-bottom:66.666667%}.md\:mx-2\/3{margin-left:66.666667%;margin-right:66.666667%}.md\:my-1\/4{margin-top:25%;margin-bottom:25%}.md\:mx-1\/4{margin-left:25%;margin-right:25%}.md\:my-2\/4{margin-top:50%;margin-bottom:50%}.md\:mx-2\/4{margin-left:50%;margin-right:50%}.md\:my-3\/4{margin-top:75%;margin-bottom:75%}.md\:mx-3\/4{margin-left:75%;margin-right:75%}.md\:my-1\/5{margin-top:20%;margin-bottom:20%}.md\:mx-1\/5{margin-left:20%;margin-right:20%}.md\:my-2\/5{margin-top:40%;margin-bottom:40%}.md\:mx-2\/5{margin-left:40%;margin-right:40%}.md\:my-3\/5{margin-top:60%;margin-bottom:60%}.md\:mx-3\/5{margin-left:60%;margin-right:60%}.md\:my-4\/5{margin-top:80%;margin-bottom:80%}.md\:mx-4\/5{margin-left:80%;margin-right:80%}.md\:my-1\/6{margin-top:16.666667%;margin-bottom:16.666667%}.md\:mx-1\/6{margin-left:16.666667%;margin-right:16.666667%}.md\:my-2\/6{margin-top:33.333333%;margin-bottom:33.333333%}.md\:mx-2\/6{margin-left:33.333333%;margin-right:33.333333%}.md\:my-3\/6{margin-top:50%;margin-bottom:50%}.md\:mx-3\/6{margin-left:50%;margin-right:50%}.md\:my-4\/6{margin-top:66.666667%;margin-bottom:66.666667%}.md\:mx-4\/6{margin-left:66.666667%;margin-right:66.666667%}.md\:my-5\/6{margin-top:83.333333%;margin-bottom:83.333333%}.md\:mx-5\/6{margin-left:83.333333%;margin-right:83.333333%}.md\:my-1\/12{margin-top:8.333333%;margin-bottom:8.333333%}.md\:mx-1\/12{margin-left:8.333333%;margin-right:8.333333%}.md\:my-2\/12{margin-top:16.666667%;margin-bottom:16.666667%}.md\:mx-2\/12{margin-left:16.666667%;margin-right:16.666667%}.md\:my-3\/12{margin-top:25%;margin-bottom:25%}.md\:mx-3\/12{margin-left:25%;margin-right:25%}.md\:my-4\/12{margin-top:33.333333%;margin-bottom:33.333333%}.md\:mx-4\/12{margin-left:33.333333%;margin-right:33.333333%}.md\:my-5\/12{margin-top:41.666667%;margin-bottom:41.666667%}.md\:mx-5\/12{margin-left:41.666667%;margin-right:41.666667%}.md\:my-6\/12{margin-top:50%;margin-bottom:50%}.md\:mx-6\/12{margin-left:50%;margin-right:50%}.md\:my-7\/12{margin-top:58.333333%;margin-bottom:58.333333%}.md\:mx-7\/12{margin-left:58.333333%;margin-right:58.333333%}.md\:my-8\/12{margin-top:66.666667%;margin-bottom:66.666667%}.md\:mx-8\/12{margin-left:66.666667%;margin-right:66.666667%}.md\:my-9\/12{margin-top:75%;margin-bottom:75%}.md\:mx-9\/12{margin-left:75%;margin-right:75%}.md\:my-10\/12{margin-top:83.333333%;margin-bottom:83.333333%}.md\:mx-10\/12{margin-left:83.333333%;margin-right:83.333333%}.md\:my-11\/12{margin-top:91.666667%;margin-bottom:91.666667%}.md\:mx-11\/12{margin-left:91.666667%;margin-right:91.666667%}.md\:my-full{margin-top:100%;margin-bottom:100%}.md\:mx-full{margin-left:100%;margin-right:100%}.md\:-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.md\:-mx-1{margin-left:-.25rem;margin-right:-.25rem}.md\:-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.md\:-mx-2{margin-left:-.5rem;margin-right:-.5rem}.md\:-my-3{margin-top:-.75rem;margin-bottom:-.75rem}.md\:-mx-3{margin-left:-.75rem;margin-right:-.75rem}.md\:-my-4{margin-top:-1rem;margin-bottom:-1rem}.md\:-mx-4{margin-left:-1rem;margin-right:-1rem}.md\:-my-5{margin-top:-1.25rem;margin-bottom:-1.25rem}.md\:-mx-5{margin-left:-1.25rem;margin-right:-1.25rem}.md\:-my-6{margin-top:-1.5rem;margin-bottom:-1.5rem}.md\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.md\:-my-7{margin-top:-1.75rem;margin-bottom:-1.75rem}.md\:-mx-7{margin-left:-1.75rem;margin-right:-1.75rem}.md\:-my-8{margin-top:-2rem;margin-bottom:-2rem}.md\:-mx-8{margin-left:-2rem;margin-right:-2rem}.md\:-my-9{margin-top:-2.25rem;margin-bottom:-2.25rem}.md\:-mx-9{margin-left:-2.25rem;margin-right:-2.25rem}.md\:-my-10{margin-top:-2.5rem;margin-bottom:-2.5rem}.md\:-mx-10{margin-left:-2.5rem;margin-right:-2.5rem}.md\:-my-11{margin-top:-2.75rem;margin-bottom:-2.75rem}.md\:-mx-11{margin-left:-2.75rem;margin-right:-2.75rem}.md\:-my-12{margin-top:-3rem;margin-bottom:-3rem}.md\:-mx-12{margin-left:-3rem;margin-right:-3rem}.md\:-my-13{margin-top:-3.25rem;margin-bottom:-3.25rem}.md\:-mx-13{margin-left:-3.25rem;margin-right:-3.25rem}.md\:-my-14{margin-top:-3.5rem;margin-bottom:-3.5rem}.md\:-mx-14{margin-left:-3.5rem;margin-right:-3.5rem}.md\:-my-15{margin-top:-3.75rem;margin-bottom:-3.75rem}.md\:-mx-15{margin-left:-3.75rem;margin-right:-3.75rem}.md\:-my-16{margin-top:-4rem;margin-bottom:-4rem}.md\:-mx-16{margin-left:-4rem;margin-right:-4rem}.md\:-my-20{margin-top:-5rem;margin-bottom:-5rem}.md\:-mx-20{margin-left:-5rem;margin-right:-5rem}.md\:-my-24{margin-top:-6rem;margin-bottom:-6rem}.md\:-mx-24{margin-left:-6rem;margin-right:-6rem}.md\:-my-28{margin-top:-7rem;margin-bottom:-7rem}.md\:-mx-28{margin-left:-7rem;margin-right:-7rem}.md\:-my-32{margin-top:-8rem;margin-bottom:-8rem}.md\:-mx-32{margin-left:-8rem;margin-right:-8rem}.md\:-my-36{margin-top:-9rem;margin-bottom:-9rem}.md\:-mx-36{margin-left:-9rem;margin-right:-9rem}.md\:-my-40{margin-top:-10rem;margin-bottom:-10rem}.md\:-mx-40{margin-left:-10rem;margin-right:-10rem}.md\:-my-44{margin-top:-11rem;margin-bottom:-11rem}.md\:-mx-44{margin-left:-11rem;margin-right:-11rem}.md\:-my-48{margin-top:-12rem;margin-bottom:-12rem}.md\:-mx-48{margin-left:-12rem;margin-right:-12rem}.md\:-my-52{margin-top:-13rem;margin-bottom:-13rem}.md\:-mx-52{margin-left:-13rem;margin-right:-13rem}.md\:-my-56{margin-top:-14rem;margin-bottom:-14rem}.md\:-mx-56{margin-left:-14rem;margin-right:-14rem}.md\:-my-60{margin-top:-15rem;margin-bottom:-15rem}.md\:-mx-60{margin-left:-15rem;margin-right:-15rem}.md\:-my-64{margin-top:-16rem;margin-bottom:-16rem}.md\:-mx-64{margin-left:-16rem;margin-right:-16rem}.md\:-my-72{margin-top:-18rem;margin-bottom:-18rem}.md\:-mx-72{margin-left:-18rem;margin-right:-18rem}.md\:-my-80{margin-top:-20rem;margin-bottom:-20rem}.md\:-mx-80{margin-left:-20rem;margin-right:-20rem}.md\:-my-96{margin-top:-24rem;margin-bottom:-24rem}.md\:-mx-96{margin-left:-24rem;margin-right:-24rem}.md\:-my-px{margin-top:-1px;margin-bottom:-1px}.md\:-mx-px{margin-left:-1px;margin-right:-1px}.md\:-my-0\.5{margin-top:-.125rem;margin-bottom:-.125rem}.md\:-mx-0\.5{margin-left:-.125rem;margin-right:-.125rem}.md\:-my-1\.5{margin-top:-.375rem;margin-bottom:-.375rem}.md\:-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.md\:-my-2\.5{margin-top:-.625rem;margin-bottom:-.625rem}.md\:-mx-2\.5{margin-left:-.625rem;margin-right:-.625rem}.md\:-my-3\.5{margin-top:-.875rem;margin-bottom:-.875rem}.md\:-mx-3\.5{margin-left:-.875rem;margin-right:-.875rem}.md\:-my-1\/2{margin-top:-50%;margin-bottom:-50%}.md\:-mx-1\/2{margin-left:-50%;margin-right:-50%}.md\:-my-1\/3{margin-top:-33.33333%;margin-bottom:-33.33333%}.md\:-mx-1\/3{margin-left:-33.33333%;margin-right:-33.33333%}.md\:-my-2\/3{margin-top:-66.66667%;margin-bottom:-66.66667%}.md\:-mx-2\/3{margin-left:-66.66667%;margin-right:-66.66667%}.md\:-my-1\/4{margin-top:-25%;margin-bottom:-25%}.md\:-mx-1\/4{margin-left:-25%;margin-right:-25%}.md\:-my-2\/4{margin-top:-50%;margin-bottom:-50%}.md\:-mx-2\/4{margin-left:-50%;margin-right:-50%}.md\:-my-3\/4{margin-top:-75%;margin-bottom:-75%}.md\:-mx-3\/4{margin-left:-75%;margin-right:-75%}.md\:-my-1\/5{margin-top:-20%;margin-bottom:-20%}.md\:-mx-1\/5{margin-left:-20%;margin-right:-20%}.md\:-my-2\/5{margin-top:-40%;margin-bottom:-40%}.md\:-mx-2\/5{margin-left:-40%;margin-right:-40%}.md\:-my-3\/5{margin-top:-60%;margin-bottom:-60%}.md\:-mx-3\/5{margin-left:-60%;margin-right:-60%}.md\:-my-4\/5{margin-top:-80%;margin-bottom:-80%}.md\:-mx-4\/5{margin-left:-80%;margin-right:-80%}.md\:-my-1\/6{margin-top:-16.66667%;margin-bottom:-16.66667%}.md\:-mx-1\/6{margin-left:-16.66667%;margin-right:-16.66667%}.md\:-my-2\/6{margin-top:-33.33333%;margin-bottom:-33.33333%}.md\:-mx-2\/6{margin-left:-33.33333%;margin-right:-33.33333%}.md\:-my-3\/6{margin-top:-50%;margin-bottom:-50%}.md\:-mx-3\/6{margin-left:-50%;margin-right:-50%}.md\:-my-4\/6{margin-top:-66.66667%;margin-bottom:-66.66667%}.md\:-mx-4\/6{margin-left:-66.66667%;margin-right:-66.66667%}.md\:-my-5\/6{margin-top:-83.33333%;margin-bottom:-83.33333%}.md\:-mx-5\/6{margin-left:-83.33333%;margin-right:-83.33333%}.md\:-my-1\/12{margin-top:-8.33333%;margin-bottom:-8.33333%}.md\:-mx-1\/12{margin-left:-8.33333%;margin-right:-8.33333%}.md\:-my-2\/12{margin-top:-16.66667%;margin-bottom:-16.66667%}.md\:-mx-2\/12{margin-left:-16.66667%;margin-right:-16.66667%}.md\:-my-3\/12{margin-top:-25%;margin-bottom:-25%}.md\:-mx-3\/12{margin-left:-25%;margin-right:-25%}.md\:-my-4\/12{margin-top:-33.33333%;margin-bottom:-33.33333%}.md\:-mx-4\/12{margin-left:-33.33333%;margin-right:-33.33333%}.md\:-my-5\/12{margin-top:-41.66667%;margin-bottom:-41.66667%}.md\:-mx-5\/12{margin-left:-41.66667%;margin-right:-41.66667%}.md\:-my-6\/12{margin-top:-50%;margin-bottom:-50%}.md\:-mx-6\/12{margin-left:-50%;margin-right:-50%}.md\:-my-7\/12{margin-top:-58.33333%;margin-bottom:-58.33333%}.md\:-mx-7\/12{margin-left:-58.33333%;margin-right:-58.33333%}.md\:-my-8\/12{margin-top:-66.66667%;margin-bottom:-66.66667%}.md\:-mx-8\/12{margin-left:-66.66667%;margin-right:-66.66667%}.md\:-my-9\/12{margin-top:-75%;margin-bottom:-75%}.md\:-mx-9\/12{margin-left:-75%;margin-right:-75%}.md\:-my-10\/12{margin-top:-83.33333%;margin-bottom:-83.33333%}.md\:-mx-10\/12{margin-left:-83.33333%;margin-right:-83.33333%}.md\:-my-11\/12{margin-top:-91.66667%;margin-bottom:-91.66667%}.md\:-mx-11\/12{margin-left:-91.66667%;margin-right:-91.66667%}.md\:-my-full{margin-top:-100%;margin-bottom:-100%}.md\:-mx-full{margin-left:-100%;margin-right:-100%}.md\:mt-0{margin-top:0}.md\:mr-0{margin-right:0}.md\:mb-0{margin-bottom:0}.md\:ml-0{margin-left:0}.md\:mt-1{margin-top:.25rem}.md\:mr-1{margin-right:.25rem}.md\:mb-1{margin-bottom:.25rem}.md\:ml-1{margin-left:.25rem}.md\:mt-2{margin-top:.5rem}.md\:mr-2{margin-right:.5rem}.md\:mb-2{margin-bottom:.5rem}.md\:ml-2{margin-left:.5rem}.md\:mt-3{margin-top:.75rem}.md\:mr-3{margin-right:.75rem}.md\:mb-3{margin-bottom:.75rem}.md\:ml-3{margin-left:.75rem}.md\:mt-4{margin-top:1rem}.md\:mr-4{margin-right:1rem}.md\:mb-4{margin-bottom:1rem}.md\:ml-4{margin-left:1rem}.md\:mt-5{margin-top:1.25rem}.md\:mr-5{margin-right:1.25rem}.md\:mb-5{margin-bottom:1.25rem}.md\:ml-5{margin-left:1.25rem}.md\:mt-6{margin-top:1.5rem}.md\:mr-6{margin-right:1.5rem}.md\:mb-6{margin-bottom:1.5rem}.md\:ml-6{margin-left:1.5rem}.md\:mt-7{margin-top:1.75rem}.md\:mr-7{margin-right:1.75rem}.md\:mb-7{margin-bottom:1.75rem}.md\:ml-7{margin-left:1.75rem}.md\:mt-8{margin-top:2rem}.md\:mr-8{margin-right:2rem}.md\:mb-8{margin-bottom:2rem}.md\:ml-8{margin-left:2rem}.md\:mt-9{margin-top:2.25rem}.md\:mr-9{margin-right:2.25rem}.md\:mb-9{margin-bottom:2.25rem}.md\:ml-9{margin-left:2.25rem}.md\:mt-10{margin-top:2.5rem}.md\:mr-10{margin-right:2.5rem}.md\:mb-10{margin-bottom:2.5rem}.md\:ml-10{margin-left:2.5rem}.md\:mt-11{margin-top:2.75rem}.md\:mr-11{margin-right:2.75rem}.md\:mb-11{margin-bottom:2.75rem}.md\:ml-11{margin-left:2.75rem}.md\:mt-12{margin-top:3rem}.md\:mr-12{margin-right:3rem}.md\:mb-12{margin-bottom:3rem}.md\:ml-12{margin-left:3rem}.md\:mt-13{margin-top:3.25rem}.md\:mr-13{margin-right:3.25rem}.md\:mb-13{margin-bottom:3.25rem}.md\:ml-13{margin-left:3.25rem}.md\:mt-14{margin-top:3.5rem}.md\:mr-14{margin-right:3.5rem}.md\:mb-14{margin-bottom:3.5rem}.md\:ml-14{margin-left:3.5rem}.md\:mt-15{margin-top:3.75rem}.md\:mr-15{margin-right:3.75rem}.md\:mb-15{margin-bottom:3.75rem}.md\:ml-15{margin-left:3.75rem}.md\:mt-16{margin-top:4rem}.md\:mr-16{margin-right:4rem}.md\:mb-16{margin-bottom:4rem}.md\:ml-16{margin-left:4rem}.md\:mt-20{margin-top:5rem}.md\:mr-20{margin-right:5rem}.md\:mb-20{margin-bottom:5rem}.md\:ml-20{margin-left:5rem}.md\:mt-24{margin-top:6rem}.md\:mr-24{margin-right:6rem}.md\:mb-24{margin-bottom:6rem}.md\:ml-24{margin-left:6rem}.md\:mt-28{margin-top:7rem}.md\:mr-28{margin-right:7rem}.md\:mb-28{margin-bottom:7rem}.md\:ml-28{margin-left:7rem}.md\:mt-32{margin-top:8rem}.md\:mr-32{margin-right:8rem}.md\:mb-32{margin-bottom:8rem}.md\:ml-32{margin-left:8rem}.md\:mt-36{margin-top:9rem}.md\:mr-36{margin-right:9rem}.md\:mb-36{margin-bottom:9rem}.md\:ml-36{margin-left:9rem}.md\:mt-40{margin-top:10rem}.md\:mr-40{margin-right:10rem}.md\:mb-40{margin-bottom:10rem}.md\:ml-40{margin-left:10rem}.md\:mt-44{margin-top:11rem}.md\:mr-44{margin-right:11rem}.md\:mb-44{margin-bottom:11rem}.md\:ml-44{margin-left:11rem}.md\:mt-48{margin-top:12rem}.md\:mr-48{margin-right:12rem}.md\:mb-48{margin-bottom:12rem}.md\:ml-48{margin-left:12rem}.md\:mt-52{margin-top:13rem}.md\:mr-52{margin-right:13rem}.md\:mb-52{margin-bottom:13rem}.md\:ml-52{margin-left:13rem}.md\:mt-56{margin-top:14rem}.md\:mr-56{margin-right:14rem}.md\:mb-56{margin-bottom:14rem}.md\:ml-56{margin-left:14rem}.md\:mt-60{margin-top:15rem}.md\:mr-60{margin-right:15rem}.md\:mb-60{margin-bottom:15rem}.md\:ml-60{margin-left:15rem}.md\:mt-64{margin-top:16rem}.md\:mr-64{margin-right:16rem}.md\:mb-64{margin-bottom:16rem}.md\:ml-64{margin-left:16rem}.md\:mt-72{margin-top:18rem}.md\:mr-72{margin-right:18rem}.md\:mb-72{margin-bottom:18rem}.md\:ml-72{margin-left:18rem}.md\:mt-80{margin-top:20rem}.md\:mr-80{margin-right:20rem}.md\:mb-80{margin-bottom:20rem}.md\:ml-80{margin-left:20rem}.md\:mt-96{margin-top:24rem}.md\:mr-96{margin-right:24rem}.md\:mb-96{margin-bottom:24rem}.md\:ml-96{margin-left:24rem}.md\:mt-auto{margin-top:auto}.md\:mr-auto{margin-right:auto}.md\:mb-auto{margin-bottom:auto}.md\:ml-auto{margin-left:auto}.md\:mt-px{margin-top:1px}.md\:mr-px{margin-right:1px}.md\:mb-px{margin-bottom:1px}.md\:ml-px{margin-left:1px}.md\:mt-0\.5{margin-top:.125rem}.md\:mr-0\.5{margin-right:.125rem}.md\:mb-0\.5{margin-bottom:.125rem}.md\:ml-0\.5{margin-left:.125rem}.md\:mt-1\.5{margin-top:.375rem}.md\:mr-1\.5{margin-right:.375rem}.md\:mb-1\.5{margin-bottom:.375rem}.md\:ml-1\.5{margin-left:.375rem}.md\:mt-2\.5{margin-top:.625rem}.md\:mr-2\.5{margin-right:.625rem}.md\:mb-2\.5{margin-bottom:.625rem}.md\:ml-2\.5{margin-left:.625rem}.md\:mt-3\.5{margin-top:.875rem}.md\:mr-3\.5{margin-right:.875rem}.md\:mb-3\.5{margin-bottom:.875rem}.md\:ml-3\.5{margin-left:.875rem}.md\:mt-1\/2{margin-top:50%}.md\:mr-1\/2{margin-right:50%}.md\:mb-1\/2{margin-bottom:50%}.md\:ml-1\/2{margin-left:50%}.md\:mt-1\/3{margin-top:33.333333%}.md\:mr-1\/3{margin-right:33.333333%}.md\:mb-1\/3{margin-bottom:33.333333%}.md\:ml-1\/3{margin-left:33.333333%}.md\:mt-2\/3{margin-top:66.666667%}.md\:mr-2\/3{margin-right:66.666667%}.md\:mb-2\/3{margin-bottom:66.666667%}.md\:ml-2\/3{margin-left:66.666667%}.md\:mt-1\/4{margin-top:25%}.md\:mr-1\/4{margin-right:25%}.md\:mb-1\/4{margin-bottom:25%}.md\:ml-1\/4{margin-left:25%}.md\:mt-2\/4{margin-top:50%}.md\:mr-2\/4{margin-right:50%}.md\:mb-2\/4{margin-bottom:50%}.md\:ml-2\/4{margin-left:50%}.md\:mt-3\/4{margin-top:75%}.md\:mr-3\/4{margin-right:75%}.md\:mb-3\/4{margin-bottom:75%}.md\:ml-3\/4{margin-left:75%}.md\:mt-1\/5{margin-top:20%}.md\:mr-1\/5{margin-right:20%}.md\:mb-1\/5{margin-bottom:20%}.md\:ml-1\/5{margin-left:20%}.md\:mt-2\/5{margin-top:40%}.md\:mr-2\/5{margin-right:40%}.md\:mb-2\/5{margin-bottom:40%}.md\:ml-2\/5{margin-left:40%}.md\:mt-3\/5{margin-top:60%}.md\:mr-3\/5{margin-right:60%}.md\:mb-3\/5{margin-bottom:60%}.md\:ml-3\/5{margin-left:60%}.md\:mt-4\/5{margin-top:80%}.md\:mr-4\/5{margin-right:80%}.md\:mb-4\/5{margin-bottom:80%}.md\:ml-4\/5{margin-left:80%}.md\:mt-1\/6{margin-top:16.666667%}.md\:mr-1\/6{margin-right:16.666667%}.md\:mb-1\/6{margin-bottom:16.666667%}.md\:ml-1\/6{margin-left:16.666667%}.md\:mt-2\/6{margin-top:33.333333%}.md\:mr-2\/6{margin-right:33.333333%}.md\:mb-2\/6{margin-bottom:33.333333%}.md\:ml-2\/6{margin-left:33.333333%}.md\:mt-3\/6{margin-top:50%}.md\:mr-3\/6{margin-right:50%}.md\:mb-3\/6{margin-bottom:50%}.md\:ml-3\/6{margin-left:50%}.md\:mt-4\/6{margin-top:66.666667%}.md\:mr-4\/6{margin-right:66.666667%}.md\:mb-4\/6{margin-bottom:66.666667%}.md\:ml-4\/6{margin-left:66.666667%}.md\:mt-5\/6{margin-top:83.333333%}.md\:mr-5\/6{margin-right:83.333333%}.md\:mb-5\/6{margin-bottom:83.333333%}.md\:ml-5\/6{margin-left:83.333333%}.md\:mt-1\/12{margin-top:8.333333%}.md\:mr-1\/12{margin-right:8.333333%}.md\:mb-1\/12{margin-bottom:8.333333%}.md\:ml-1\/12{margin-left:8.333333%}.md\:mt-2\/12{margin-top:16.666667%}.md\:mr-2\/12{margin-right:16.666667%}.md\:mb-2\/12{margin-bottom:16.666667%}.md\:ml-2\/12{margin-left:16.666667%}.md\:mt-3\/12{margin-top:25%}.md\:mr-3\/12{margin-right:25%}.md\:mb-3\/12{margin-bottom:25%}.md\:ml-3\/12{margin-left:25%}.md\:mt-4\/12{margin-top:33.333333%}.md\:mr-4\/12{margin-right:33.333333%}.md\:mb-4\/12{margin-bottom:33.333333%}.md\:ml-4\/12{margin-left:33.333333%}.md\:mt-5\/12{margin-top:41.666667%}.md\:mr-5\/12{margin-right:41.666667%}.md\:mb-5\/12{margin-bottom:41.666667%}.md\:ml-5\/12{margin-left:41.666667%}.md\:mt-6\/12{margin-top:50%}.md\:mr-6\/12{margin-right:50%}.md\:mb-6\/12{margin-bottom:50%}.md\:ml-6\/12{margin-left:50%}.md\:mt-7\/12{margin-top:58.333333%}.md\:mr-7\/12{margin-right:58.333333%}.md\:mb-7\/12{margin-bottom:58.333333%}.md\:ml-7\/12{margin-left:58.333333%}.md\:mt-8\/12{margin-top:66.666667%}.md\:mr-8\/12{margin-right:66.666667%}.md\:mb-8\/12{margin-bottom:66.666667%}.md\:ml-8\/12{margin-left:66.666667%}.md\:mt-9\/12{margin-top:75%}.md\:mr-9\/12{margin-right:75%}.md\:mb-9\/12{margin-bottom:75%}.md\:ml-9\/12{margin-left:75%}.md\:mt-10\/12{margin-top:83.333333%}.md\:mr-10\/12{margin-right:83.333333%}.md\:mb-10\/12{margin-bottom:83.333333%}.md\:ml-10\/12{margin-left:83.333333%}.md\:mt-11\/12{margin-top:91.666667%}.md\:mr-11\/12{margin-right:91.666667%}.md\:mb-11\/12{margin-bottom:91.666667%}.md\:ml-11\/12{margin-left:91.666667%}.md\:mt-full{margin-top:100%}.md\:mr-full{margin-right:100%}.md\:mb-full{margin-bottom:100%}.md\:ml-full{margin-left:100%}.md\:-mt-1{margin-top:-.25rem}.md\:-mr-1{margin-right:-.25rem}.md\:-mb-1{margin-bottom:-.25rem}.md\:-ml-1{margin-left:-.25rem}.md\:-mt-2{margin-top:-.5rem}.md\:-mr-2{margin-right:-.5rem}.md\:-mb-2{margin-bottom:-.5rem}.md\:-ml-2{margin-left:-.5rem}.md\:-mt-3{margin-top:-.75rem}.md\:-mr-3{margin-right:-.75rem}.md\:-mb-3{margin-bottom:-.75rem}.md\:-ml-3{margin-left:-.75rem}.md\:-mt-4{margin-top:-1rem}.md\:-mr-4{margin-right:-1rem}.md\:-mb-4{margin-bottom:-1rem}.md\:-ml-4{margin-left:-1rem}.md\:-mt-5{margin-top:-1.25rem}.md\:-mr-5{margin-right:-1.25rem}.md\:-mb-5{margin-bottom:-1.25rem}.md\:-ml-5{margin-left:-1.25rem}.md\:-mt-6{margin-top:-1.5rem}.md\:-mr-6{margin-right:-1.5rem}.md\:-mb-6{margin-bottom:-1.5rem}.md\:-ml-6{margin-left:-1.5rem}.md\:-mt-7{margin-top:-1.75rem}.md\:-mr-7{margin-right:-1.75rem}.md\:-mb-7{margin-bottom:-1.75rem}.md\:-ml-7{margin-left:-1.75rem}.md\:-mt-8{margin-top:-2rem}.md\:-mr-8{margin-right:-2rem}.md\:-mb-8{margin-bottom:-2rem}.md\:-ml-8{margin-left:-2rem}.md\:-mt-9{margin-top:-2.25rem}.md\:-mr-9{margin-right:-2.25rem}.md\:-mb-9{margin-bottom:-2.25rem}.md\:-ml-9{margin-left:-2.25rem}.md\:-mt-10{margin-top:-2.5rem}.md\:-mr-10{margin-right:-2.5rem}.md\:-mb-10{margin-bottom:-2.5rem}.md\:-ml-10{margin-left:-2.5rem}.md\:-mt-11{margin-top:-2.75rem}.md\:-mr-11{margin-right:-2.75rem}.md\:-mb-11{margin-bottom:-2.75rem}.md\:-ml-11{margin-left:-2.75rem}.md\:-mt-12{margin-top:-3rem}.md\:-mr-12{margin-right:-3rem}.md\:-mb-12{margin-bottom:-3rem}.md\:-ml-12{margin-left:-3rem}.md\:-mt-13{margin-top:-3.25rem}.md\:-mr-13{margin-right:-3.25rem}.md\:-mb-13{margin-bottom:-3.25rem}.md\:-ml-13{margin-left:-3.25rem}.md\:-mt-14{margin-top:-3.5rem}.md\:-mr-14{margin-right:-3.5rem}.md\:-mb-14{margin-bottom:-3.5rem}.md\:-ml-14{margin-left:-3.5rem}.md\:-mt-15{margin-top:-3.75rem}.md\:-mr-15{margin-right:-3.75rem}.md\:-mb-15{margin-bottom:-3.75rem}.md\:-ml-15{margin-left:-3.75rem}.md\:-mt-16{margin-top:-4rem}.md\:-mr-16{margin-right:-4rem}.md\:-mb-16{margin-bottom:-4rem}.md\:-ml-16{margin-left:-4rem}.md\:-mt-20{margin-top:-5rem}.md\:-mr-20{margin-right:-5rem}.md\:-mb-20{margin-bottom:-5rem}.md\:-ml-20{margin-left:-5rem}.md\:-mt-24{margin-top:-6rem}.md\:-mr-24{margin-right:-6rem}.md\:-mb-24{margin-bottom:-6rem}.md\:-ml-24{margin-left:-6rem}.md\:-mt-28{margin-top:-7rem}.md\:-mr-28{margin-right:-7rem}.md\:-mb-28{margin-bottom:-7rem}.md\:-ml-28{margin-left:-7rem}.md\:-mt-32{margin-top:-8rem}.md\:-mr-32{margin-right:-8rem}.md\:-mb-32{margin-bottom:-8rem}.md\:-ml-32{margin-left:-8rem}.md\:-mt-36{margin-top:-9rem}.md\:-mr-36{margin-right:-9rem}.md\:-mb-36{margin-bottom:-9rem}.md\:-ml-36{margin-left:-9rem}.md\:-mt-40{margin-top:-10rem}.md\:-mr-40{margin-right:-10rem}.md\:-mb-40{margin-bottom:-10rem}.md\:-ml-40{margin-left:-10rem}.md\:-mt-44{margin-top:-11rem}.md\:-mr-44{margin-right:-11rem}.md\:-mb-44{margin-bottom:-11rem}.md\:-ml-44{margin-left:-11rem}.md\:-mt-48{margin-top:-12rem}.md\:-mr-48{margin-right:-12rem}.md\:-mb-48{margin-bottom:-12rem}.md\:-ml-48{margin-left:-12rem}.md\:-mt-52{margin-top:-13rem}.md\:-mr-52{margin-right:-13rem}.md\:-mb-52{margin-bottom:-13rem}.md\:-ml-52{margin-left:-13rem}.md\:-mt-56{margin-top:-14rem}.md\:-mr-56{margin-right:-14rem}.md\:-mb-56{margin-bottom:-14rem}.md\:-ml-56{margin-left:-14rem}.md\:-mt-60{margin-top:-15rem}.md\:-mr-60{margin-right:-15rem}.md\:-mb-60{margin-bottom:-15rem}.md\:-ml-60{margin-left:-15rem}.md\:-mt-64{margin-top:-16rem}.md\:-mr-64{margin-right:-16rem}.md\:-mb-64{margin-bottom:-16rem}.md\:-ml-64{margin-left:-16rem}.md\:-mt-72{margin-top:-18rem}.md\:-mr-72{margin-right:-18rem}.md\:-mb-72{margin-bottom:-18rem}.md\:-ml-72{margin-left:-18rem}.md\:-mt-80{margin-top:-20rem}.md\:-mr-80{margin-right:-20rem}.md\:-mb-80{margin-bottom:-20rem}.md\:-ml-80{margin-left:-20rem}.md\:-mt-96{margin-top:-24rem}.md\:-mr-96{margin-right:-24rem}.md\:-mb-96{margin-bottom:-24rem}.md\:-ml-96{margin-left:-24rem}.md\:-mt-px{margin-top:-1px}.md\:-mr-px{margin-right:-1px}.md\:-mb-px{margin-bottom:-1px}.md\:-ml-px{margin-left:-1px}.md\:-mt-0\.5{margin-top:-.125rem}.md\:-mr-0\.5{margin-right:-.125rem}.md\:-mb-0\.5{margin-bottom:-.125rem}.md\:-ml-0\.5{margin-left:-.125rem}.md\:-mt-1\.5{margin-top:-.375rem}.md\:-mr-1\.5{margin-right:-.375rem}.md\:-mb-1\.5{margin-bottom:-.375rem}.md\:-ml-1\.5{margin-left:-.375rem}.md\:-mt-2\.5{margin-top:-.625rem}.md\:-mr-2\.5{margin-right:-.625rem}.md\:-mb-2\.5{margin-bottom:-.625rem}.md\:-ml-2\.5{margin-left:-.625rem}.md\:-mt-3\.5{margin-top:-.875rem}.md\:-mr-3\.5{margin-right:-.875rem}.md\:-mb-3\.5{margin-bottom:-.875rem}.md\:-ml-3\.5{margin-left:-.875rem}.md\:-mt-1\/2{margin-top:-50%}.md\:-mr-1\/2{margin-right:-50%}.md\:-mb-1\/2{margin-bottom:-50%}.md\:-ml-1\/2{margin-left:-50%}.md\:-mt-1\/3{margin-top:-33.33333%}.md\:-mr-1\/3{margin-right:-33.33333%}.md\:-mb-1\/3{margin-bottom:-33.33333%}.md\:-ml-1\/3{margin-left:-33.33333%}.md\:-mt-2\/3{margin-top:-66.66667%}.md\:-mr-2\/3{margin-right:-66.66667%}.md\:-mb-2\/3{margin-bottom:-66.66667%}.md\:-ml-2\/3{margin-left:-66.66667%}.md\:-mt-1\/4{margin-top:-25%}.md\:-mr-1\/4{margin-right:-25%}.md\:-mb-1\/4{margin-bottom:-25%}.md\:-ml-1\/4{margin-left:-25%}.md\:-mt-2\/4{margin-top:-50%}.md\:-mr-2\/4{margin-right:-50%}.md\:-mb-2\/4{margin-bottom:-50%}.md\:-ml-2\/4{margin-left:-50%}.md\:-mt-3\/4{margin-top:-75%}.md\:-mr-3\/4{margin-right:-75%}.md\:-mb-3\/4{margin-bottom:-75%}.md\:-ml-3\/4{margin-left:-75%}.md\:-mt-1\/5{margin-top:-20%}.md\:-mr-1\/5{margin-right:-20%}.md\:-mb-1\/5{margin-bottom:-20%}.md\:-ml-1\/5{margin-left:-20%}.md\:-mt-2\/5{margin-top:-40%}.md\:-mr-2\/5{margin-right:-40%}.md\:-mb-2\/5{margin-bottom:-40%}.md\:-ml-2\/5{margin-left:-40%}.md\:-mt-3\/5{margin-top:-60%}.md\:-mr-3\/5{margin-right:-60%}.md\:-mb-3\/5{margin-bottom:-60%}.md\:-ml-3\/5{margin-left:-60%}.md\:-mt-4\/5{margin-top:-80%}.md\:-mr-4\/5{margin-right:-80%}.md\:-mb-4\/5{margin-bottom:-80%}.md\:-ml-4\/5{margin-left:-80%}.md\:-mt-1\/6{margin-top:-16.66667%}.md\:-mr-1\/6{margin-right:-16.66667%}.md\:-mb-1\/6{margin-bottom:-16.66667%}.md\:-ml-1\/6{margin-left:-16.66667%}.md\:-mt-2\/6{margin-top:-33.33333%}.md\:-mr-2\/6{margin-right:-33.33333%}.md\:-mb-2\/6{margin-bottom:-33.33333%}.md\:-ml-2\/6{margin-left:-33.33333%}.md\:-mt-3\/6{margin-top:-50%}.md\:-mr-3\/6{margin-right:-50%}.md\:-mb-3\/6{margin-bottom:-50%}.md\:-ml-3\/6{margin-left:-50%}.md\:-mt-4\/6{margin-top:-66.66667%}.md\:-mr-4\/6{margin-right:-66.66667%}.md\:-mb-4\/6{margin-bottom:-66.66667%}.md\:-ml-4\/6{margin-left:-66.66667%}.md\:-mt-5\/6{margin-top:-83.33333%}.md\:-mr-5\/6{margin-right:-83.33333%}.md\:-mb-5\/6{margin-bottom:-83.33333%}.md\:-ml-5\/6{margin-left:-83.33333%}.md\:-mt-1\/12{margin-top:-8.33333%}.md\:-mr-1\/12{margin-right:-8.33333%}.md\:-mb-1\/12{margin-bottom:-8.33333%}.md\:-ml-1\/12{margin-left:-8.33333%}.md\:-mt-2\/12{margin-top:-16.66667%}.md\:-mr-2\/12{margin-right:-16.66667%}.md\:-mb-2\/12{margin-bottom:-16.66667%}.md\:-ml-2\/12{margin-left:-16.66667%}.md\:-mt-3\/12{margin-top:-25%}.md\:-mr-3\/12{margin-right:-25%}.md\:-mb-3\/12{margin-bottom:-25%}.md\:-ml-3\/12{margin-left:-25%}.md\:-mt-4\/12{margin-top:-33.33333%}.md\:-mr-4\/12{margin-right:-33.33333%}.md\:-mb-4\/12{margin-bottom:-33.33333%}.md\:-ml-4\/12{margin-left:-33.33333%}.md\:-mt-5\/12{margin-top:-41.66667%}.md\:-mr-5\/12{margin-right:-41.66667%}.md\:-mb-5\/12{margin-bottom:-41.66667%}.md\:-ml-5\/12{margin-left:-41.66667%}.md\:-mt-6\/12{margin-top:-50%}.md\:-mr-6\/12{margin-right:-50%}.md\:-mb-6\/12{margin-bottom:-50%}.md\:-ml-6\/12{margin-left:-50%}.md\:-mt-7\/12{margin-top:-58.33333%}.md\:-mr-7\/12{margin-right:-58.33333%}.md\:-mb-7\/12{margin-bottom:-58.33333%}.md\:-ml-7\/12{margin-left:-58.33333%}.md\:-mt-8\/12{margin-top:-66.66667%}.md\:-mr-8\/12{margin-right:-66.66667%}.md\:-mb-8\/12{margin-bottom:-66.66667%}.md\:-ml-8\/12{margin-left:-66.66667%}.md\:-mt-9\/12{margin-top:-75%}.md\:-mr-9\/12{margin-right:-75%}.md\:-mb-9\/12{margin-bottom:-75%}.md\:-ml-9\/12{margin-left:-75%}.md\:-mt-10\/12{margin-top:-83.33333%}.md\:-mr-10\/12{margin-right:-83.33333%}.md\:-mb-10\/12{margin-bottom:-83.33333%}.md\:-ml-10\/12{margin-left:-83.33333%}.md\:-mt-11\/12{margin-top:-91.66667%}.md\:-mr-11\/12{margin-right:-91.66667%}.md\:-mb-11\/12{margin-bottom:-91.66667%}.md\:-ml-11\/12{margin-left:-91.66667%}.md\:-mt-full{margin-top:-100%}.md\:-mr-full{margin-right:-100%}.md\:-mb-full{margin-bottom:-100%}.md\:-ml-full{margin-left:-100%}.md\:max-h-0{max-height:0}.md\:max-h-1{max-height:.25rem}.md\:max-h-2{max-height:.5rem}.md\:max-h-3{max-height:.75rem}.md\:max-h-4{max-height:1rem}.md\:max-h-5{max-height:1.25rem}.md\:max-h-6{max-height:1.5rem}.md\:max-h-7{max-height:1.75rem}.md\:max-h-8{max-height:2rem}.md\:max-h-9{max-height:2.25rem}.md\:max-h-10{max-height:2.5rem}.md\:max-h-11{max-height:2.75rem}.md\:max-h-12{max-height:3rem}.md\:max-h-13{max-height:3.25rem}.md\:max-h-14{max-height:3.5rem}.md\:max-h-15{max-height:3.75rem}.md\:max-h-16{max-height:4rem}.md\:max-h-20{max-height:5rem}.md\:max-h-24{max-height:6rem}.md\:max-h-28{max-height:7rem}.md\:max-h-32{max-height:8rem}.md\:max-h-36{max-height:9rem}.md\:max-h-40{max-height:10rem}.md\:max-h-44{max-height:11rem}.md\:max-h-48{max-height:12rem}.md\:max-h-52{max-height:13rem}.md\:max-h-56{max-height:14rem}.md\:max-h-60{max-height:15rem}.md\:max-h-64{max-height:16rem}.md\:max-h-72{max-height:18rem}.md\:max-h-80{max-height:20rem}.md\:max-h-96{max-height:24rem}.md\:max-h-screen{max-height:100vh}.md\:max-h-px{max-height:1px}.md\:max-h-0\.5{max-height:.125rem}.md\:max-h-1\.5{max-height:.375rem}.md\:max-h-2\.5{max-height:.625rem}.md\:max-h-3\.5{max-height:.875rem}.md\:max-h-1\/2{max-height:50%}.md\:max-h-1\/3{max-height:33.333333%}.md\:max-h-2\/3{max-height:66.666667%}.md\:max-h-1\/4{max-height:25%}.md\:max-h-2\/4{max-height:50%}.md\:max-h-3\/4{max-height:75%}.md\:max-h-1\/5{max-height:20%}.md\:max-h-2\/5{max-height:40%}.md\:max-h-3\/5{max-height:60%}.md\:max-h-4\/5{max-height:80%}.md\:max-h-1\/6{max-height:16.666667%}.md\:max-h-2\/6{max-height:33.333333%}.md\:max-h-3\/6{max-height:50%}.md\:max-h-4\/6{max-height:66.666667%}.md\:max-h-5\/6{max-height:83.333333%}.md\:max-h-1\/12{max-height:8.333333%}.md\:max-h-2\/12{max-height:16.666667%}.md\:max-h-3\/12{max-height:25%}.md\:max-h-4\/12{max-height:33.333333%}.md\:max-h-5\/12{max-height:41.666667%}.md\:max-h-6\/12{max-height:50%}.md\:max-h-7\/12{max-height:58.333333%}.md\:max-h-8\/12{max-height:66.666667%}.md\:max-h-9\/12{max-height:75%}.md\:max-h-10\/12{max-height:83.333333%}.md\:max-h-11\/12{max-height:91.666667%}.md\:max-h-full{max-height:100%}.md\:max-w-0{max-width:0}.md\:max-w-none{max-width:none}.md\:max-w-xs{max-width:20rem}.md\:max-w-sm{max-width:24rem}.md\:max-w-md{max-width:28rem}.md\:max-w-lg{max-width:32rem}.md\:max-w-xl{max-width:36rem}.md\:max-w-2xl{max-width:42rem}.md\:max-w-3xl{max-width:48rem}.md\:max-w-4xl{max-width:56rem}.md\:max-w-5xl{max-width:64rem}.md\:max-w-6xl{max-width:72rem}.md\:max-w-7xl{max-width:80rem}.md\:max-w-full{max-width:100%}.md\:max-w-min-content{max-width:-webkit-min-content;max-width:-moz-min-content;max-width:min-content}.md\:max-w-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.md\:max-w-prose{max-width:65ch}.md\:max-w-screen-sm{max-width:640px}.md\:max-w-screen-md{max-width:768px}.md\:max-w-screen-lg{max-width:1024px}.md\:max-w-screen-xl{max-width:1280px}.md\:min-h-0{min-height:0}.md\:min-h-full{min-height:100%}.md\:min-h-screen{min-height:100vh}.md\:min-w-0{min-width:0}.md\:min-w-full{min-width:100%}.md\:min-w-min-content{min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.md\:min-w-max-content{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.md\:object-contain{-o-object-fit:contain;object-fit:contain}.md\:object-cover{-o-object-fit:cover;object-fit:cover}.md\:object-fill{-o-object-fit:fill;object-fit:fill}.md\:object-none{-o-object-fit:none;object-fit:none}.md\:object-scale-down{-o-object-fit:scale-down;object-fit:scale-down}.md\:object-bottom{-o-object-position:bottom;object-position:bottom}.md\:object-center{-o-object-position:center;object-position:center}.md\:object-left{-o-object-position:left;object-position:left}.md\:object-left-bottom{-o-object-position:left bottom;object-position:left bottom}.md\:object-left-top{-o-object-position:left top;object-position:left top}.md\:object-right{-o-object-position:right;object-position:right}.md\:object-right-bottom{-o-object-position:right bottom;object-position:right bottom}.md\:object-right-top{-o-object-position:right top;object-position:right top}.md\:object-top{-o-object-position:top;object-position:top}.md\:opacity-0{opacity:0}.md\:opacity-25{opacity:.25}.md\:opacity-50{opacity:.5}.md\:opacity-75{opacity:.75}.md\:opacity-100{opacity:1}.md\:hover\:opacity-0:hover{opacity:0}.md\:hover\:opacity-25:hover{opacity:.25}.md\:hover\:opacity-50:hover{opacity:.5}.md\:hover\:opacity-75:hover{opacity:.75}.md\:hover\:opacity-100:hover{opacity:1}.md\:focus\:opacity-0:focus{opacity:0}.md\:focus\:opacity-25:focus{opacity:.25}.md\:focus\:opacity-50:focus{opacity:.5}.md\:focus\:opacity-75:focus{opacity:.75}.md\:focus\:opacity-100:focus{opacity:1}.md\:outline-none{outline:0}.md\:focus\:outline-none:focus{outline:0}.md\:overflow-auto{overflow:auto}.md\:overflow-hidden{overflow:hidden}.md\:overflow-visible{overflow:visible}.md\:overflow-scroll{overflow:scroll}.md\:overflow-x-auto{overflow-x:auto}.md\:overflow-y-auto{overflow-y:auto}.md\:overflow-x-hidden{overflow-x:hidden}.md\:overflow-y-hidden{overflow-y:hidden}.md\:overflow-x-visible{overflow-x:visible}.md\:overflow-y-visible{overflow-y:visible}.md\:overflow-x-scroll{overflow-x:scroll}.md\:overflow-y-scroll{overflow-y:scroll}.md\:scrolling-touch{-webkit-overflow-scrolling:touch}.md\:scrolling-auto{-webkit-overflow-scrolling:auto}.md\:p-0{padding:0}.md\:p-1{padding:.25rem}.md\:p-2{padding:.5rem}.md\:p-3{padding:.75rem}.md\:p-4{padding:1rem}.md\:p-5{padding:1.25rem}.md\:p-6{padding:1.5rem}.md\:p-7{padding:1.75rem}.md\:p-8{padding:2rem}.md\:p-9{padding:2.25rem}.md\:p-10{padding:2.5rem}.md\:p-11{padding:2.75rem}.md\:p-12{padding:3rem}.md\:p-13{padding:3.25rem}.md\:p-14{padding:3.5rem}.md\:p-15{padding:3.75rem}.md\:p-16{padding:4rem}.md\:p-20{padding:5rem}.md\:p-24{padding:6rem}.md\:p-28{padding:7rem}.md\:p-32{padding:8rem}.md\:p-36{padding:9rem}.md\:p-40{padding:10rem}.md\:p-44{padding:11rem}.md\:p-48{padding:12rem}.md\:p-52{padding:13rem}.md\:p-56{padding:14rem}.md\:p-60{padding:15rem}.md\:p-64{padding:16rem}.md\:p-72{padding:18rem}.md\:p-80{padding:20rem}.md\:p-96{padding:24rem}.md\:p-px{padding:1px}.md\:p-0\.5{padding:.125rem}.md\:p-1\.5{padding:.375rem}.md\:p-2\.5{padding:.625rem}.md\:p-3\.5{padding:.875rem}.md\:p-1\/2{padding:50%}.md\:p-1\/3{padding:33.333333%}.md\:p-2\/3{padding:66.666667%}.md\:p-1\/4{padding:25%}.md\:p-2\/4{padding:50%}.md\:p-3\/4{padding:75%}.md\:p-1\/5{padding:20%}.md\:p-2\/5{padding:40%}.md\:p-3\/5{padding:60%}.md\:p-4\/5{padding:80%}.md\:p-1\/6{padding:16.666667%}.md\:p-2\/6{padding:33.333333%}.md\:p-3\/6{padding:50%}.md\:p-4\/6{padding:66.666667%}.md\:p-5\/6{padding:83.333333%}.md\:p-1\/12{padding:8.333333%}.md\:p-2\/12{padding:16.666667%}.md\:p-3\/12{padding:25%}.md\:p-4\/12{padding:33.333333%}.md\:p-5\/12{padding:41.666667%}.md\:p-6\/12{padding:50%}.md\:p-7\/12{padding:58.333333%}.md\:p-8\/12{padding:66.666667%}.md\:p-9\/12{padding:75%}.md\:p-10\/12{padding:83.333333%}.md\:p-11\/12{padding:91.666667%}.md\:p-full{padding:100%}.md\:py-0{padding-top:0;padding-bottom:0}.md\:px-0{padding-left:0;padding-right:0}.md\:py-1{padding-top:.25rem;padding-bottom:.25rem}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:py-2{padding-top:.5rem;padding-bottom:.5rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:py-3{padding-top:.75rem;padding-bottom:.75rem}.md\:px-3{padding-left:.75rem;padding-right:.75rem}.md\:py-4{padding-top:1rem;padding-bottom:1rem}.md\:px-4{padding-left:1rem;padding-right:1rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.md\:px-5{padding-left:1.25rem;padding-right:1.25rem}.md\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.md\:px-6{padding-left:1.5rem;padding-right:1.5rem}.md\:py-7{padding-top:1.75rem;padding-bottom:1.75rem}.md\:px-7{padding-left:1.75rem;padding-right:1.75rem}.md\:py-8{padding-top:2rem;padding-bottom:2rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:py-9{padding-top:2.25rem;padding-bottom:2.25rem}.md\:px-9{padding-left:2.25rem;padding-right:2.25rem}.md\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.md\:px-10{padding-left:2.5rem;padding-right:2.5rem}.md\:py-11{padding-top:2.75rem;padding-bottom:2.75rem}.md\:px-11{padding-left:2.75rem;padding-right:2.75rem}.md\:py-12{padding-top:3rem;padding-bottom:3rem}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:py-13{padding-top:3.25rem;padding-bottom:3.25rem}.md\:px-13{padding-left:3.25rem;padding-right:3.25rem}.md\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}.md\:px-14{padding-left:3.5rem;padding-right:3.5rem}.md\:py-15{padding-top:3.75rem;padding-bottom:3.75rem}.md\:px-15{padding-left:3.75rem;padding-right:3.75rem}.md\:py-16{padding-top:4rem;padding-bottom:4rem}.md\:px-16{padding-left:4rem;padding-right:4rem}.md\:py-20{padding-top:5rem;padding-bottom:5rem}.md\:px-20{padding-left:5rem;padding-right:5rem}.md\:py-24{padding-top:6rem;padding-bottom:6rem}.md\:px-24{padding-left:6rem;padding-right:6rem}.md\:py-28{padding-top:7rem;padding-bottom:7rem}.md\:px-28{padding-left:7rem;padding-right:7rem}.md\:py-32{padding-top:8rem;padding-bottom:8rem}.md\:px-32{padding-left:8rem;padding-right:8rem}.md\:py-36{padding-top:9rem;padding-bottom:9rem}.md\:px-36{padding-left:9rem;padding-right:9rem}.md\:py-40{padding-top:10rem;padding-bottom:10rem}.md\:px-40{padding-left:10rem;padding-right:10rem}.md\:py-44{padding-top:11rem;padding-bottom:11rem}.md\:px-44{padding-left:11rem;padding-right:11rem}.md\:py-48{padding-top:12rem;padding-bottom:12rem}.md\:px-48{padding-left:12rem;padding-right:12rem}.md\:py-52{padding-top:13rem;padding-bottom:13rem}.md\:px-52{padding-left:13rem;padding-right:13rem}.md\:py-56{padding-top:14rem;padding-bottom:14rem}.md\:px-56{padding-left:14rem;padding-right:14rem}.md\:py-60{padding-top:15rem;padding-bottom:15rem}.md\:px-60{padding-left:15rem;padding-right:15rem}.md\:py-64{padding-top:16rem;padding-bottom:16rem}.md\:px-64{padding-left:16rem;padding-right:16rem}.md\:py-72{padding-top:18rem;padding-bottom:18rem}.md\:px-72{padding-left:18rem;padding-right:18rem}.md\:py-80{padding-top:20rem;padding-bottom:20rem}.md\:px-80{padding-left:20rem;padding-right:20rem}.md\:py-96{padding-top:24rem;padding-bottom:24rem}.md\:px-96{padding-left:24rem;padding-right:24rem}.md\:py-px{padding-top:1px;padding-bottom:1px}.md\:px-px{padding-left:1px;padding-right:1px}.md\:py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.md\:px-0\.5{padding-left:.125rem;padding-right:.125rem}.md\:py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.md\:px-1\.5{padding-left:.375rem;padding-right:.375rem}.md\:py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.md\:px-2\.5{padding-left:.625rem;padding-right:.625rem}.md\:py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.md\:px-3\.5{padding-left:.875rem;padding-right:.875rem}.md\:py-1\/2{padding-top:50%;padding-bottom:50%}.md\:px-1\/2{padding-left:50%;padding-right:50%}.md\:py-1\/3{padding-top:33.333333%;padding-bottom:33.333333%}.md\:px-1\/3{padding-left:33.333333%;padding-right:33.333333%}.md\:py-2\/3{padding-top:66.666667%;padding-bottom:66.666667%}.md\:px-2\/3{padding-left:66.666667%;padding-right:66.666667%}.md\:py-1\/4{padding-top:25%;padding-bottom:25%}.md\:px-1\/4{padding-left:25%;padding-right:25%}.md\:py-2\/4{padding-top:50%;padding-bottom:50%}.md\:px-2\/4{padding-left:50%;padding-right:50%}.md\:py-3\/4{padding-top:75%;padding-bottom:75%}.md\:px-3\/4{padding-left:75%;padding-right:75%}.md\:py-1\/5{padding-top:20%;padding-bottom:20%}.md\:px-1\/5{padding-left:20%;padding-right:20%}.md\:py-2\/5{padding-top:40%;padding-bottom:40%}.md\:px-2\/5{padding-left:40%;padding-right:40%}.md\:py-3\/5{padding-top:60%;padding-bottom:60%}.md\:px-3\/5{padding-left:60%;padding-right:60%}.md\:py-4\/5{padding-top:80%;padding-bottom:80%}.md\:px-4\/5{padding-left:80%;padding-right:80%}.md\:py-1\/6{padding-top:16.666667%;padding-bottom:16.666667%}.md\:px-1\/6{padding-left:16.666667%;padding-right:16.666667%}.md\:py-2\/6{padding-top:33.333333%;padding-bottom:33.333333%}.md\:px-2\/6{padding-left:33.333333%;padding-right:33.333333%}.md\:py-3\/6{padding-top:50%;padding-bottom:50%}.md\:px-3\/6{padding-left:50%;padding-right:50%}.md\:py-4\/6{padding-top:66.666667%;padding-bottom:66.666667%}.md\:px-4\/6{padding-left:66.666667%;padding-right:66.666667%}.md\:py-5\/6{padding-top:83.333333%;padding-bottom:83.333333%}.md\:px-5\/6{padding-left:83.333333%;padding-right:83.333333%}.md\:py-1\/12{padding-top:8.333333%;padding-bottom:8.333333%}.md\:px-1\/12{padding-left:8.333333%;padding-right:8.333333%}.md\:py-2\/12{padding-top:16.666667%;padding-bottom:16.666667%}.md\:px-2\/12{padding-left:16.666667%;padding-right:16.666667%}.md\:py-3\/12{padding-top:25%;padding-bottom:25%}.md\:px-3\/12{padding-left:25%;padding-right:25%}.md\:py-4\/12{padding-top:33.333333%;padding-bottom:33.333333%}.md\:px-4\/12{padding-left:33.333333%;padding-right:33.333333%}.md\:py-5\/12{padding-top:41.666667%;padding-bottom:41.666667%}.md\:px-5\/12{padding-left:41.666667%;padding-right:41.666667%}.md\:py-6\/12{padding-top:50%;padding-bottom:50%}.md\:px-6\/12{padding-left:50%;padding-right:50%}.md\:py-7\/12{padding-top:58.333333%;padding-bottom:58.333333%}.md\:px-7\/12{padding-left:58.333333%;padding-right:58.333333%}.md\:py-8\/12{padding-top:66.666667%;padding-bottom:66.666667%}.md\:px-8\/12{padding-left:66.666667%;padding-right:66.666667%}.md\:py-9\/12{padding-top:75%;padding-bottom:75%}.md\:px-9\/12{padding-left:75%;padding-right:75%}.md\:py-10\/12{padding-top:83.333333%;padding-bottom:83.333333%}.md\:px-10\/12{padding-left:83.333333%;padding-right:83.333333%}.md\:py-11\/12{padding-top:91.666667%;padding-bottom:91.666667%}.md\:px-11\/12{padding-left:91.666667%;padding-right:91.666667%}.md\:py-full{padding-top:100%;padding-bottom:100%}.md\:px-full{padding-left:100%;padding-right:100%}.md\:pt-0{padding-top:0}.md\:pr-0{padding-right:0}.md\:pb-0{padding-bottom:0}.md\:pl-0{padding-left:0}.md\:pt-1{padding-top:.25rem}.md\:pr-1{padding-right:.25rem}.md\:pb-1{padding-bottom:.25rem}.md\:pl-1{padding-left:.25rem}.md\:pt-2{padding-top:.5rem}.md\:pr-2{padding-right:.5rem}.md\:pb-2{padding-bottom:.5rem}.md\:pl-2{padding-left:.5rem}.md\:pt-3{padding-top:.75rem}.md\:pr-3{padding-right:.75rem}.md\:pb-3{padding-bottom:.75rem}.md\:pl-3{padding-left:.75rem}.md\:pt-4{padding-top:1rem}.md\:pr-4{padding-right:1rem}.md\:pb-4{padding-bottom:1rem}.md\:pl-4{padding-left:1rem}.md\:pt-5{padding-top:1.25rem}.md\:pr-5{padding-right:1.25rem}.md\:pb-5{padding-bottom:1.25rem}.md\:pl-5{padding-left:1.25rem}.md\:pt-6{padding-top:1.5rem}.md\:pr-6{padding-right:1.5rem}.md\:pb-6{padding-bottom:1.5rem}.md\:pl-6{padding-left:1.5rem}.md\:pt-7{padding-top:1.75rem}.md\:pr-7{padding-right:1.75rem}.md\:pb-7{padding-bottom:1.75rem}.md\:pl-7{padding-left:1.75rem}.md\:pt-8{padding-top:2rem}.md\:pr-8{padding-right:2rem}.md\:pb-8{padding-bottom:2rem}.md\:pl-8{padding-left:2rem}.md\:pt-9{padding-top:2.25rem}.md\:pr-9{padding-right:2.25rem}.md\:pb-9{padding-bottom:2.25rem}.md\:pl-9{padding-left:2.25rem}.md\:pt-10{padding-top:2.5rem}.md\:pr-10{padding-right:2.5rem}.md\:pb-10{padding-bottom:2.5rem}.md\:pl-10{padding-left:2.5rem}.md\:pt-11{padding-top:2.75rem}.md\:pr-11{padding-right:2.75rem}.md\:pb-11{padding-bottom:2.75rem}.md\:pl-11{padding-left:2.75rem}.md\:pt-12{padding-top:3rem}.md\:pr-12{padding-right:3rem}.md\:pb-12{padding-bottom:3rem}.md\:pl-12{padding-left:3rem}.md\:pt-13{padding-top:3.25rem}.md\:pr-13{padding-right:3.25rem}.md\:pb-13{padding-bottom:3.25rem}.md\:pl-13{padding-left:3.25rem}.md\:pt-14{padding-top:3.5rem}.md\:pr-14{padding-right:3.5rem}.md\:pb-14{padding-bottom:3.5rem}.md\:pl-14{padding-left:3.5rem}.md\:pt-15{padding-top:3.75rem}.md\:pr-15{padding-right:3.75rem}.md\:pb-15{padding-bottom:3.75rem}.md\:pl-15{padding-left:3.75rem}.md\:pt-16{padding-top:4rem}.md\:pr-16{padding-right:4rem}.md\:pb-16{padding-bottom:4rem}.md\:pl-16{padding-left:4rem}.md\:pt-20{padding-top:5rem}.md\:pr-20{padding-right:5rem}.md\:pb-20{padding-bottom:5rem}.md\:pl-20{padding-left:5rem}.md\:pt-24{padding-top:6rem}.md\:pr-24{padding-right:6rem}.md\:pb-24{padding-bottom:6rem}.md\:pl-24{padding-left:6rem}.md\:pt-28{padding-top:7rem}.md\:pr-28{padding-right:7rem}.md\:pb-28{padding-bottom:7rem}.md\:pl-28{padding-left:7rem}.md\:pt-32{padding-top:8rem}.md\:pr-32{padding-right:8rem}.md\:pb-32{padding-bottom:8rem}.md\:pl-32{padding-left:8rem}.md\:pt-36{padding-top:9rem}.md\:pr-36{padding-right:9rem}.md\:pb-36{padding-bottom:9rem}.md\:pl-36{padding-left:9rem}.md\:pt-40{padding-top:10rem}.md\:pr-40{padding-right:10rem}.md\:pb-40{padding-bottom:10rem}.md\:pl-40{padding-left:10rem}.md\:pt-44{padding-top:11rem}.md\:pr-44{padding-right:11rem}.md\:pb-44{padding-bottom:11rem}.md\:pl-44{padding-left:11rem}.md\:pt-48{padding-top:12rem}.md\:pr-48{padding-right:12rem}.md\:pb-48{padding-bottom:12rem}.md\:pl-48{padding-left:12rem}.md\:pt-52{padding-top:13rem}.md\:pr-52{padding-right:13rem}.md\:pb-52{padding-bottom:13rem}.md\:pl-52{padding-left:13rem}.md\:pt-56{padding-top:14rem}.md\:pr-56{padding-right:14rem}.md\:pb-56{padding-bottom:14rem}.md\:pl-56{padding-left:14rem}.md\:pt-60{padding-top:15rem}.md\:pr-60{padding-right:15rem}.md\:pb-60{padding-bottom:15rem}.md\:pl-60{padding-left:15rem}.md\:pt-64{padding-top:16rem}.md\:pr-64{padding-right:16rem}.md\:pb-64{padding-bottom:16rem}.md\:pl-64{padding-left:16rem}.md\:pt-72{padding-top:18rem}.md\:pr-72{padding-right:18rem}.md\:pb-72{padding-bottom:18rem}.md\:pl-72{padding-left:18rem}.md\:pt-80{padding-top:20rem}.md\:pr-80{padding-right:20rem}.md\:pb-80{padding-bottom:20rem}.md\:pl-80{padding-left:20rem}.md\:pt-96{padding-top:24rem}.md\:pr-96{padding-right:24rem}.md\:pb-96{padding-bottom:24rem}.md\:pl-96{padding-left:24rem}.md\:pt-px{padding-top:1px}.md\:pr-px{padding-right:1px}.md\:pb-px{padding-bottom:1px}.md\:pl-px{padding-left:1px}.md\:pt-0\.5{padding-top:.125rem}.md\:pr-0\.5{padding-right:.125rem}.md\:pb-0\.5{padding-bottom:.125rem}.md\:pl-0\.5{padding-left:.125rem}.md\:pt-1\.5{padding-top:.375rem}.md\:pr-1\.5{padding-right:.375rem}.md\:pb-1\.5{padding-bottom:.375rem}.md\:pl-1\.5{padding-left:.375rem}.md\:pt-2\.5{padding-top:.625rem}.md\:pr-2\.5{padding-right:.625rem}.md\:pb-2\.5{padding-bottom:.625rem}.md\:pl-2\.5{padding-left:.625rem}.md\:pt-3\.5{padding-top:.875rem}.md\:pr-3\.5{padding-right:.875rem}.md\:pb-3\.5{padding-bottom:.875rem}.md\:pl-3\.5{padding-left:.875rem}.md\:pt-1\/2{padding-top:50%}.md\:pr-1\/2{padding-right:50%}.md\:pb-1\/2{padding-bottom:50%}.md\:pl-1\/2{padding-left:50%}.md\:pt-1\/3{padding-top:33.333333%}.md\:pr-1\/3{padding-right:33.333333%}.md\:pb-1\/3{padding-bottom:33.333333%}.md\:pl-1\/3{padding-left:33.333333%}.md\:pt-2\/3{padding-top:66.666667%}.md\:pr-2\/3{padding-right:66.666667%}.md\:pb-2\/3{padding-bottom:66.666667%}.md\:pl-2\/3{padding-left:66.666667%}.md\:pt-1\/4{padding-top:25%}.md\:pr-1\/4{padding-right:25%}.md\:pb-1\/4{padding-bottom:25%}.md\:pl-1\/4{padding-left:25%}.md\:pt-2\/4{padding-top:50%}.md\:pr-2\/4{padding-right:50%}.md\:pb-2\/4{padding-bottom:50%}.md\:pl-2\/4{padding-left:50%}.md\:pt-3\/4{padding-top:75%}.md\:pr-3\/4{padding-right:75%}.md\:pb-3\/4{padding-bottom:75%}.md\:pl-3\/4{padding-left:75%}.md\:pt-1\/5{padding-top:20%}.md\:pr-1\/5{padding-right:20%}.md\:pb-1\/5{padding-bottom:20%}.md\:pl-1\/5{padding-left:20%}.md\:pt-2\/5{padding-top:40%}.md\:pr-2\/5{padding-right:40%}.md\:pb-2\/5{padding-bottom:40%}.md\:pl-2\/5{padding-left:40%}.md\:pt-3\/5{padding-top:60%}.md\:pr-3\/5{padding-right:60%}.md\:pb-3\/5{padding-bottom:60%}.md\:pl-3\/5{padding-left:60%}.md\:pt-4\/5{padding-top:80%}.md\:pr-4\/5{padding-right:80%}.md\:pb-4\/5{padding-bottom:80%}.md\:pl-4\/5{padding-left:80%}.md\:pt-1\/6{padding-top:16.666667%}.md\:pr-1\/6{padding-right:16.666667%}.md\:pb-1\/6{padding-bottom:16.666667%}.md\:pl-1\/6{padding-left:16.666667%}.md\:pt-2\/6{padding-top:33.333333%}.md\:pr-2\/6{padding-right:33.333333%}.md\:pb-2\/6{padding-bottom:33.333333%}.md\:pl-2\/6{padding-left:33.333333%}.md\:pt-3\/6{padding-top:50%}.md\:pr-3\/6{padding-right:50%}.md\:pb-3\/6{padding-bottom:50%}.md\:pl-3\/6{padding-left:50%}.md\:pt-4\/6{padding-top:66.666667%}.md\:pr-4\/6{padding-right:66.666667%}.md\:pb-4\/6{padding-bottom:66.666667%}.md\:pl-4\/6{padding-left:66.666667%}.md\:pt-5\/6{padding-top:83.333333%}.md\:pr-5\/6{padding-right:83.333333%}.md\:pb-5\/6{padding-bottom:83.333333%}.md\:pl-5\/6{padding-left:83.333333%}.md\:pt-1\/12{padding-top:8.333333%}.md\:pr-1\/12{padding-right:8.333333%}.md\:pb-1\/12{padding-bottom:8.333333%}.md\:pl-1\/12{padding-left:8.333333%}.md\:pt-2\/12{padding-top:16.666667%}.md\:pr-2\/12{padding-right:16.666667%}.md\:pb-2\/12{padding-bottom:16.666667%}.md\:pl-2\/12{padding-left:16.666667%}.md\:pt-3\/12{padding-top:25%}.md\:pr-3\/12{padding-right:25%}.md\:pb-3\/12{padding-bottom:25%}.md\:pl-3\/12{padding-left:25%}.md\:pt-4\/12{padding-top:33.333333%}.md\:pr-4\/12{padding-right:33.333333%}.md\:pb-4\/12{padding-bottom:33.333333%}.md\:pl-4\/12{padding-left:33.333333%}.md\:pt-5\/12{padding-top:41.666667%}.md\:pr-5\/12{padding-right:41.666667%}.md\:pb-5\/12{padding-bottom:41.666667%}.md\:pl-5\/12{padding-left:41.666667%}.md\:pt-6\/12{padding-top:50%}.md\:pr-6\/12{padding-right:50%}.md\:pb-6\/12{padding-bottom:50%}.md\:pl-6\/12{padding-left:50%}.md\:pt-7\/12{padding-top:58.333333%}.md\:pr-7\/12{padding-right:58.333333%}.md\:pb-7\/12{padding-bottom:58.333333%}.md\:pl-7\/12{padding-left:58.333333%}.md\:pt-8\/12{padding-top:66.666667%}.md\:pr-8\/12{padding-right:66.666667%}.md\:pb-8\/12{padding-bottom:66.666667%}.md\:pl-8\/12{padding-left:66.666667%}.md\:pt-9\/12{padding-top:75%}.md\:pr-9\/12{padding-right:75%}.md\:pb-9\/12{padding-bottom:75%}.md\:pl-9\/12{padding-left:75%}.md\:pt-10\/12{padding-top:83.333333%}.md\:pr-10\/12{padding-right:83.333333%}.md\:pb-10\/12{padding-bottom:83.333333%}.md\:pl-10\/12{padding-left:83.333333%}.md\:pt-11\/12{padding-top:91.666667%}.md\:pr-11\/12{padding-right:91.666667%}.md\:pb-11\/12{padding-bottom:91.666667%}.md\:pl-11\/12{padding-left:91.666667%}.md\:pt-full{padding-top:100%}.md\:pr-full{padding-right:100%}.md\:pb-full{padding-bottom:100%}.md\:pl-full{padding-left:100%}.md\:placeholder-transparent::-moz-placeholder{color:transparent}.md\:placeholder-transparent:-ms-input-placeholder{color:transparent}.md\:placeholder-transparent::-ms-input-placeholder{color:transparent}.md\:placeholder-transparent::placeholder{color:transparent}.md\:placeholder-white::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:placeholder-white:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:placeholder-white::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:placeholder-white::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:placeholder-black::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:placeholder-black:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:placeholder-black::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:placeholder-black::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:placeholder-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:placeholder-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:placeholder-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:placeholder-gray-50::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:placeholder-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:placeholder-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:placeholder-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:placeholder-gray-100::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:placeholder-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:placeholder-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:placeholder-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:placeholder-gray-200::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:placeholder-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:placeholder-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:placeholder-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:placeholder-gray-300::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:placeholder-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:placeholder-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:placeholder-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:placeholder-gray-400::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:placeholder-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:placeholder-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:placeholder-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:placeholder-gray-500::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:placeholder-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:placeholder-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:placeholder-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:placeholder-gray-600::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:placeholder-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:placeholder-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:placeholder-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:placeholder-gray-700::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:placeholder-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:placeholder-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:placeholder-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:placeholder-gray-800::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:placeholder-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:placeholder-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:placeholder-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:placeholder-gray-900::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:placeholder-cool-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:placeholder-cool-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:placeholder-cool-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:placeholder-cool-gray-50::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:placeholder-cool-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:placeholder-cool-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:placeholder-cool-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:placeholder-cool-gray-100::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:placeholder-cool-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:placeholder-cool-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:placeholder-cool-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:placeholder-cool-gray-200::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:placeholder-cool-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:placeholder-cool-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:placeholder-cool-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:placeholder-cool-gray-300::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:placeholder-cool-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:placeholder-cool-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:placeholder-cool-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:placeholder-cool-gray-400::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:placeholder-cool-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:placeholder-cool-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:placeholder-cool-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:placeholder-cool-gray-500::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:placeholder-cool-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:placeholder-cool-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:placeholder-cool-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:placeholder-cool-gray-600::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:placeholder-cool-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:placeholder-cool-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:placeholder-cool-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:placeholder-cool-gray-700::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:placeholder-cool-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:placeholder-cool-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:placeholder-cool-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:placeholder-cool-gray-800::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:placeholder-cool-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:placeholder-cool-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:placeholder-cool-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:placeholder-cool-gray-900::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:placeholder-red-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:placeholder-red-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:placeholder-red-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:placeholder-red-50::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:placeholder-red-100::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:placeholder-red-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:placeholder-red-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:placeholder-red-100::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:placeholder-red-200::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:placeholder-red-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:placeholder-red-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:placeholder-red-200::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:placeholder-red-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:placeholder-red-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:placeholder-red-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:placeholder-red-300::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:placeholder-red-400::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:placeholder-red-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:placeholder-red-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:placeholder-red-400::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:placeholder-red-500::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:placeholder-red-500:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:placeholder-red-500::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:placeholder-red-500::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:placeholder-red-600::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:placeholder-red-600:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:placeholder-red-600::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:placeholder-red-600::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:placeholder-red-700::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:placeholder-red-700:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:placeholder-red-700::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:placeholder-red-700::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:placeholder-red-800::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:placeholder-red-800:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:placeholder-red-800::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:placeholder-red-800::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:placeholder-red-900::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:placeholder-red-900:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:placeholder-red-900::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:placeholder-red-900::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:placeholder-orange-50::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:placeholder-orange-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:placeholder-orange-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:placeholder-orange-50::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:placeholder-orange-100::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:placeholder-orange-100:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:placeholder-orange-100::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:placeholder-orange-100::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:placeholder-orange-200::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:placeholder-orange-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:placeholder-orange-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:placeholder-orange-200::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:placeholder-orange-300::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:placeholder-orange-300:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:placeholder-orange-300::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:placeholder-orange-300::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:placeholder-orange-400::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:placeholder-orange-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:placeholder-orange-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:placeholder-orange-400::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:placeholder-orange-500::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:placeholder-orange-500:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:placeholder-orange-500::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:placeholder-orange-500::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:placeholder-orange-600::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:placeholder-orange-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:placeholder-orange-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:placeholder-orange-600::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:placeholder-orange-700::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:placeholder-orange-700:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:placeholder-orange-700::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:placeholder-orange-700::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:placeholder-orange-800::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:placeholder-orange-800:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:placeholder-orange-800::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:placeholder-orange-800::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:placeholder-orange-900::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:placeholder-orange-900:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:placeholder-orange-900::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:placeholder-orange-900::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:placeholder-yellow-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:placeholder-yellow-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:placeholder-yellow-50::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:placeholder-yellow-100::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:placeholder-yellow-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:placeholder-yellow-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:placeholder-yellow-100::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:placeholder-yellow-200::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:placeholder-yellow-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:placeholder-yellow-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:placeholder-yellow-200::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:placeholder-yellow-300::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:placeholder-yellow-300:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:placeholder-yellow-300::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:placeholder-yellow-300::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:placeholder-yellow-400:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:placeholder-yellow-400::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:placeholder-yellow-400::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:placeholder-yellow-500::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:placeholder-yellow-500:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:placeholder-yellow-500::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:placeholder-yellow-500::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:placeholder-yellow-600::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:placeholder-yellow-600:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:placeholder-yellow-600::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:placeholder-yellow-600::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:placeholder-yellow-700::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:placeholder-yellow-700:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:placeholder-yellow-700::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:placeholder-yellow-700::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:placeholder-yellow-800::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:placeholder-yellow-800:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:placeholder-yellow-800::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:placeholder-yellow-800::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:placeholder-yellow-900::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:placeholder-yellow-900:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:placeholder-yellow-900::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:placeholder-yellow-900::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:placeholder-green-50::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:placeholder-green-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:placeholder-green-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:placeholder-green-50::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:placeholder-green-100::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:placeholder-green-100:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:placeholder-green-100::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:placeholder-green-100::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:placeholder-green-200::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:placeholder-green-200:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:placeholder-green-200::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:placeholder-green-200::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:placeholder-green-300::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:placeholder-green-300:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:placeholder-green-300::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:placeholder-green-300::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:placeholder-green-400::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:placeholder-green-400:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:placeholder-green-400::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:placeholder-green-400::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:placeholder-green-500::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:placeholder-green-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:placeholder-green-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:placeholder-green-500::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:placeholder-green-600::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:placeholder-green-600:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:placeholder-green-600::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:placeholder-green-600::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:placeholder-green-700::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:placeholder-green-700:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:placeholder-green-700::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:placeholder-green-700::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:placeholder-green-800::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:placeholder-green-800:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:placeholder-green-800::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:placeholder-green-800::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:placeholder-green-900::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:placeholder-green-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:placeholder-green-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:placeholder-green-900::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:placeholder-teal-50::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:placeholder-teal-50:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:placeholder-teal-50::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:placeholder-teal-50::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:placeholder-teal-100::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:placeholder-teal-100:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:placeholder-teal-100::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:placeholder-teal-100::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:placeholder-teal-200::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:placeholder-teal-200:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:placeholder-teal-200::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:placeholder-teal-200::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:placeholder-teal-300::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:placeholder-teal-300:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:placeholder-teal-300::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:placeholder-teal-300::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:placeholder-teal-400::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:placeholder-teal-400:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:placeholder-teal-400::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:placeholder-teal-400::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:placeholder-teal-500::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:placeholder-teal-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:placeholder-teal-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:placeholder-teal-500::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:placeholder-teal-600::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:placeholder-teal-600:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:placeholder-teal-600::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:placeholder-teal-600::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:placeholder-teal-700::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:placeholder-teal-700:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:placeholder-teal-700::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:placeholder-teal-700::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:placeholder-teal-800::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:placeholder-teal-800:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:placeholder-teal-800::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:placeholder-teal-800::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:placeholder-teal-900::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:placeholder-teal-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:placeholder-teal-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:placeholder-teal-900::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:placeholder-blue-50::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:placeholder-blue-50:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:placeholder-blue-50::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:placeholder-blue-50::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:placeholder-blue-100::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:placeholder-blue-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:placeholder-blue-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:placeholder-blue-100::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:placeholder-blue-200::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:placeholder-blue-200:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:placeholder-blue-200::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:placeholder-blue-200::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:placeholder-blue-300::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:placeholder-blue-300:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:placeholder-blue-300::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:placeholder-blue-300::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:placeholder-blue-400::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:placeholder-blue-400:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:placeholder-blue-400::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:placeholder-blue-400::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:placeholder-blue-500::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:placeholder-blue-500:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:placeholder-blue-500::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:placeholder-blue-500::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:placeholder-blue-600::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:placeholder-blue-600:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:placeholder-blue-600::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:placeholder-blue-600::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:placeholder-blue-700::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:placeholder-blue-700:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:placeholder-blue-700::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:placeholder-blue-700::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:placeholder-blue-800::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:placeholder-blue-800:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:placeholder-blue-800::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:placeholder-blue-800::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:placeholder-blue-900::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:placeholder-blue-900:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:placeholder-blue-900::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:placeholder-blue-900::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:placeholder-indigo-50::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:placeholder-indigo-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:placeholder-indigo-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:placeholder-indigo-50::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:placeholder-indigo-100::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:placeholder-indigo-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:placeholder-indigo-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:placeholder-indigo-100::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:placeholder-indigo-200::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:placeholder-indigo-200:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:placeholder-indigo-200::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:placeholder-indigo-200::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:placeholder-indigo-300::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:placeholder-indigo-300:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:placeholder-indigo-300::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:placeholder-indigo-300::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:placeholder-indigo-400::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:placeholder-indigo-400:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:placeholder-indigo-400::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:placeholder-indigo-400::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:placeholder-indigo-500::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:placeholder-indigo-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:placeholder-indigo-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:placeholder-indigo-500::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:placeholder-indigo-600::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:placeholder-indigo-600:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:placeholder-indigo-600::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:placeholder-indigo-600::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:placeholder-indigo-700::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:placeholder-indigo-700:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:placeholder-indigo-700::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:placeholder-indigo-700::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:placeholder-indigo-800::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:placeholder-indigo-800:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:placeholder-indigo-800::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:placeholder-indigo-800::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:placeholder-indigo-900::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:placeholder-indigo-900:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:placeholder-indigo-900::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:placeholder-indigo-900::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:placeholder-purple-50::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:placeholder-purple-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:placeholder-purple-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:placeholder-purple-50::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:placeholder-purple-100::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:placeholder-purple-100:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:placeholder-purple-100::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:placeholder-purple-100::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:placeholder-purple-200::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:placeholder-purple-200:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:placeholder-purple-200::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:placeholder-purple-200::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:placeholder-purple-300::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:placeholder-purple-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:placeholder-purple-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:placeholder-purple-300::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:placeholder-purple-400::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:placeholder-purple-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:placeholder-purple-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:placeholder-purple-400::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:placeholder-purple-500::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:placeholder-purple-500:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:placeholder-purple-500::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:placeholder-purple-500::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:placeholder-purple-600::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:placeholder-purple-600:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:placeholder-purple-600::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:placeholder-purple-600::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:placeholder-purple-700::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:placeholder-purple-700:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:placeholder-purple-700::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:placeholder-purple-700::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:placeholder-purple-800::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:placeholder-purple-800:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:placeholder-purple-800::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:placeholder-purple-800::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:placeholder-purple-900::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:placeholder-purple-900:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:placeholder-purple-900::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:placeholder-purple-900::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:placeholder-pink-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:placeholder-pink-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:placeholder-pink-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:placeholder-pink-50::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:placeholder-pink-100::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:placeholder-pink-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:placeholder-pink-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:placeholder-pink-100::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:placeholder-pink-200::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:placeholder-pink-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:placeholder-pink-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:placeholder-pink-200::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:placeholder-pink-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:placeholder-pink-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:placeholder-pink-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:placeholder-pink-300::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:placeholder-pink-400::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:placeholder-pink-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:placeholder-pink-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:placeholder-pink-400::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:placeholder-pink-500::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:placeholder-pink-500:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:placeholder-pink-500::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:placeholder-pink-500::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:placeholder-pink-600::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:placeholder-pink-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:placeholder-pink-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:placeholder-pink-600::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:placeholder-pink-700::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:placeholder-pink-700:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:placeholder-pink-700::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:placeholder-pink-700::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:placeholder-pink-800::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:placeholder-pink-800:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:placeholder-pink-800::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:placeholder-pink-800::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:placeholder-pink-900::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:placeholder-pink-900:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:placeholder-pink-900::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:placeholder-pink-900::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent}.md\:focus\:placeholder-transparent:focus:-ms-input-placeholder{color:transparent}.md\:focus\:placeholder-transparent:focus::-ms-input-placeholder{color:transparent}.md\:focus\:placeholder-transparent:focus::placeholder{color:transparent}.md\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:focus\:placeholder-white:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:focus\:placeholder-white:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.md\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:focus\:placeholder-black:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:focus\:placeholder-black:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-300:focus::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-400:focus::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-500:focus::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-600:focus::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-700:focus::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-800:focus::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:focus\:placeholder-gray-900:focus::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-300:focus::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-400:focus::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-500:focus::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-600:focus::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-700:focus::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-800:focus::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:focus\:placeholder-cool-gray-900:focus::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.md\:focus\:placeholder-red-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:focus\:placeholder-red-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:focus\:placeholder-red-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:focus\:placeholder-red-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.md\:focus\:placeholder-red-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:focus\:placeholder-red-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:focus\:placeholder-red-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:focus\:placeholder-red-100:focus::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.md\:focus\:placeholder-red-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:focus\:placeholder-red-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:focus\:placeholder-red-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:focus\:placeholder-red-200:focus::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.md\:focus\:placeholder-red-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:focus\:placeholder-red-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:focus\:placeholder-red-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:focus\:placeholder-red-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.md\:focus\:placeholder-red-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:focus\:placeholder-red-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:focus\:placeholder-red-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:focus\:placeholder-red-400:focus::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.md\:focus\:placeholder-red-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:focus\:placeholder-red-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:focus\:placeholder-red-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:focus\:placeholder-red-500:focus::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.md\:focus\:placeholder-red-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:focus\:placeholder-red-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:focus\:placeholder-red-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:focus\:placeholder-red-600:focus::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.md\:focus\:placeholder-red-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:focus\:placeholder-red-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:focus\:placeholder-red-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:focus\:placeholder-red-700:focus::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.md\:focus\:placeholder-red-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:focus\:placeholder-red-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:focus\:placeholder-red-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:focus\:placeholder-red-800:focus::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.md\:focus\:placeholder-red-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:focus\:placeholder-red-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:focus\:placeholder-red-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:focus\:placeholder-red-900:focus::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-50:focus::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-100:focus::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-200:focus::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-300:focus::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-400:focus::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-500:focus::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-600:focus::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-700:focus::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-800:focus::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:focus\:placeholder-orange-900:focus::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-100:focus::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-200:focus::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-300:focus::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-500:focus::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-600:focus::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-700:focus::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-800:focus::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:focus\:placeholder-yellow-900:focus::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.md\:focus\:placeholder-green-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:focus\:placeholder-green-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:focus\:placeholder-green-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:focus\:placeholder-green-50:focus::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.md\:focus\:placeholder-green-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:focus\:placeholder-green-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:focus\:placeholder-green-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:focus\:placeholder-green-100:focus::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.md\:focus\:placeholder-green-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:focus\:placeholder-green-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:focus\:placeholder-green-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:focus\:placeholder-green-200:focus::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.md\:focus\:placeholder-green-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:focus\:placeholder-green-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:focus\:placeholder-green-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:focus\:placeholder-green-300:focus::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.md\:focus\:placeholder-green-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:focus\:placeholder-green-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:focus\:placeholder-green-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:focus\:placeholder-green-400:focus::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.md\:focus\:placeholder-green-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:focus\:placeholder-green-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:focus\:placeholder-green-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:focus\:placeholder-green-500:focus::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.md\:focus\:placeholder-green-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:focus\:placeholder-green-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:focus\:placeholder-green-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:focus\:placeholder-green-600:focus::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.md\:focus\:placeholder-green-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:focus\:placeholder-green-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:focus\:placeholder-green-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:focus\:placeholder-green-700:focus::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.md\:focus\:placeholder-green-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:focus\:placeholder-green-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:focus\:placeholder-green-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:focus\:placeholder-green-800:focus::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.md\:focus\:placeholder-green-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:focus\:placeholder-green-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:focus\:placeholder-green-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:focus\:placeholder-green-900:focus::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-50:focus::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-100:focus::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-200:focus::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-300:focus::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-400:focus::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-500:focus::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-600:focus::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-700:focus::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-800:focus::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:focus\:placeholder-teal-900:focus::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-50:focus::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-100:focus::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-200:focus::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-300:focus::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-400:focus::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-500:focus::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-600:focus::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-700:focus::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-800:focus::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:focus\:placeholder-blue-900:focus::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-50:focus::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-100:focus::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-200:focus::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-300:focus::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-400:focus::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-500:focus::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-600:focus::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-700:focus::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-800:focus::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:focus\:placeholder-indigo-900:focus::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-50:focus::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-100:focus::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-200:focus::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-300:focus::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-400:focus::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-500:focus::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-600:focus::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-700:focus::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-800:focus::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:focus\:placeholder-purple-900:focus::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-100:focus::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-200:focus::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-400:focus::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-500:focus::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-600:focus::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-700:focus::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-800:focus::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:focus\:placeholder-pink-900:focus::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.md\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0}.md\:placeholder-opacity-0:-ms-input-placeholder{--placeholder-opacity:0}.md\:placeholder-opacity-0::-ms-input-placeholder{--placeholder-opacity:0}.md\:placeholder-opacity-0::placeholder{--placeholder-opacity:0}.md\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25}.md\:placeholder-opacity-25:-ms-input-placeholder{--placeholder-opacity:0.25}.md\:placeholder-opacity-25::-ms-input-placeholder{--placeholder-opacity:0.25}.md\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25}.md\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5}.md\:placeholder-opacity-50:-ms-input-placeholder{--placeholder-opacity:0.5}.md\:placeholder-opacity-50::-ms-input-placeholder{--placeholder-opacity:0.5}.md\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5}.md\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75}.md\:placeholder-opacity-75:-ms-input-placeholder{--placeholder-opacity:0.75}.md\:placeholder-opacity-75::-ms-input-placeholder{--placeholder-opacity:0.75}.md\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75}.md\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1}.md\:placeholder-opacity-100:-ms-input-placeholder{--placeholder-opacity:1}.md\:placeholder-opacity-100::-ms-input-placeholder{--placeholder-opacity:1}.md\:placeholder-opacity-100::placeholder{--placeholder-opacity:1}.md\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0}.md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{--placeholder-opacity:0}.md\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{--placeholder-opacity:0}.md\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0}.md\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25}.md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{--placeholder-opacity:0.25}.md\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{--placeholder-opacity:0.25}.md\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25}.md\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5}.md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{--placeholder-opacity:0.5}.md\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{--placeholder-opacity:0.5}.md\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5}.md\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75}.md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{--placeholder-opacity:0.75}.md\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{--placeholder-opacity:0.75}.md\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75}.md\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1}.md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{--placeholder-opacity:1}.md\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{--placeholder-opacity:1}.md\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1}.md\:pointer-events-none{pointer-events:none}.md\:pointer-events-auto{pointer-events:auto}.md\:static{position:static}.md\:fixed{position:fixed}.md\:absolute{position:absolute}.md\:relative{position:relative}.md\:sticky{position:-webkit-sticky;position:sticky}.md\:inset-0{top:0;right:0;bottom:0;left:0}.md\:inset-1{top:.25rem;right:.25rem;bottom:.25rem;left:.25rem}.md\:inset-2{top:.5rem;right:.5rem;bottom:.5rem;left:.5rem}.md\:inset-3{top:.75rem;right:.75rem;bottom:.75rem;left:.75rem}.md\:inset-4{top:1rem;right:1rem;bottom:1rem;left:1rem}.md\:inset-5{top:1.25rem;right:1.25rem;bottom:1.25rem;left:1.25rem}.md\:inset-6{top:1.5rem;right:1.5rem;bottom:1.5rem;left:1.5rem}.md\:inset-7{top:1.75rem;right:1.75rem;bottom:1.75rem;left:1.75rem}.md\:inset-8{top:2rem;right:2rem;bottom:2rem;left:2rem}.md\:inset-9{top:2.25rem;right:2.25rem;bottom:2.25rem;left:2.25rem}.md\:inset-10{top:2.5rem;right:2.5rem;bottom:2.5rem;left:2.5rem}.md\:inset-11{top:2.75rem;right:2.75rem;bottom:2.75rem;left:2.75rem}.md\:inset-12{top:3rem;right:3rem;bottom:3rem;left:3rem}.md\:inset-13{top:3.25rem;right:3.25rem;bottom:3.25rem;left:3.25rem}.md\:inset-14{top:3.5rem;right:3.5rem;bottom:3.5rem;left:3.5rem}.md\:inset-15{top:3.75rem;right:3.75rem;bottom:3.75rem;left:3.75rem}.md\:inset-16{top:4rem;right:4rem;bottom:4rem;left:4rem}.md\:inset-20{top:5rem;right:5rem;bottom:5rem;left:5rem}.md\:inset-24{top:6rem;right:6rem;bottom:6rem;left:6rem}.md\:inset-28{top:7rem;right:7rem;bottom:7rem;left:7rem}.md\:inset-32{top:8rem;right:8rem;bottom:8rem;left:8rem}.md\:inset-36{top:9rem;right:9rem;bottom:9rem;left:9rem}.md\:inset-40{top:10rem;right:10rem;bottom:10rem;left:10rem}.md\:inset-44{top:11rem;right:11rem;bottom:11rem;left:11rem}.md\:inset-48{top:12rem;right:12rem;bottom:12rem;left:12rem}.md\:inset-52{top:13rem;right:13rem;bottom:13rem;left:13rem}.md\:inset-56{top:14rem;right:14rem;bottom:14rem;left:14rem}.md\:inset-60{top:15rem;right:15rem;bottom:15rem;left:15rem}.md\:inset-64{top:16rem;right:16rem;bottom:16rem;left:16rem}.md\:inset-72{top:18rem;right:18rem;bottom:18rem;left:18rem}.md\:inset-80{top:20rem;right:20rem;bottom:20rem;left:20rem}.md\:inset-96{top:24rem;right:24rem;bottom:24rem;left:24rem}.md\:inset-auto{top:auto;right:auto;bottom:auto;left:auto}.md\:inset-px{top:1px;right:1px;bottom:1px;left:1px}.md\:inset-0\.5{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.md\:inset-1\.5{top:.375rem;right:.375rem;bottom:.375rem;left:.375rem}.md\:inset-2\.5{top:.625rem;right:.625rem;bottom:.625rem;left:.625rem}.md\:inset-3\.5{top:.875rem;right:.875rem;bottom:.875rem;left:.875rem}.md\:inset-1\/2{top:50%;right:50%;bottom:50%;left:50%}.md\:inset-1\/3{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.md\:inset-2\/3{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.md\:inset-1\/4{top:25%;right:25%;bottom:25%;left:25%}.md\:inset-2\/4{top:50%;right:50%;bottom:50%;left:50%}.md\:inset-3\/4{top:75%;right:75%;bottom:75%;left:75%}.md\:inset-1\/5{top:20%;right:20%;bottom:20%;left:20%}.md\:inset-2\/5{top:40%;right:40%;bottom:40%;left:40%}.md\:inset-3\/5{top:60%;right:60%;bottom:60%;left:60%}.md\:inset-4\/5{top:80%;right:80%;bottom:80%;left:80%}.md\:inset-1\/6{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.md\:inset-2\/6{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.md\:inset-3\/6{top:50%;right:50%;bottom:50%;left:50%}.md\:inset-4\/6{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.md\:inset-5\/6{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.md\:inset-1\/12{top:8.333333%;right:8.333333%;bottom:8.333333%;left:8.333333%}.md\:inset-2\/12{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.md\:inset-3\/12{top:25%;right:25%;bottom:25%;left:25%}.md\:inset-4\/12{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.md\:inset-5\/12{top:41.666667%;right:41.666667%;bottom:41.666667%;left:41.666667%}.md\:inset-6\/12{top:50%;right:50%;bottom:50%;left:50%}.md\:inset-7\/12{top:58.333333%;right:58.333333%;bottom:58.333333%;left:58.333333%}.md\:inset-8\/12{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.md\:inset-9\/12{top:75%;right:75%;bottom:75%;left:75%}.md\:inset-10\/12{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.md\:inset-11\/12{top:91.666667%;right:91.666667%;bottom:91.666667%;left:91.666667%}.md\:inset-full{top:100%;right:100%;bottom:100%;left:100%}.md\:inset-y-0{top:0;bottom:0}.md\:inset-x-0{right:0;left:0}.md\:inset-y-1{top:.25rem;bottom:.25rem}.md\:inset-x-1{right:.25rem;left:.25rem}.md\:inset-y-2{top:.5rem;bottom:.5rem}.md\:inset-x-2{right:.5rem;left:.5rem}.md\:inset-y-3{top:.75rem;bottom:.75rem}.md\:inset-x-3{right:.75rem;left:.75rem}.md\:inset-y-4{top:1rem;bottom:1rem}.md\:inset-x-4{right:1rem;left:1rem}.md\:inset-y-5{top:1.25rem;bottom:1.25rem}.md\:inset-x-5{right:1.25rem;left:1.25rem}.md\:inset-y-6{top:1.5rem;bottom:1.5rem}.md\:inset-x-6{right:1.5rem;left:1.5rem}.md\:inset-y-7{top:1.75rem;bottom:1.75rem}.md\:inset-x-7{right:1.75rem;left:1.75rem}.md\:inset-y-8{top:2rem;bottom:2rem}.md\:inset-x-8{right:2rem;left:2rem}.md\:inset-y-9{top:2.25rem;bottom:2.25rem}.md\:inset-x-9{right:2.25rem;left:2.25rem}.md\:inset-y-10{top:2.5rem;bottom:2.5rem}.md\:inset-x-10{right:2.5rem;left:2.5rem}.md\:inset-y-11{top:2.75rem;bottom:2.75rem}.md\:inset-x-11{right:2.75rem;left:2.75rem}.md\:inset-y-12{top:3rem;bottom:3rem}.md\:inset-x-12{right:3rem;left:3rem}.md\:inset-y-13{top:3.25rem;bottom:3.25rem}.md\:inset-x-13{right:3.25rem;left:3.25rem}.md\:inset-y-14{top:3.5rem;bottom:3.5rem}.md\:inset-x-14{right:3.5rem;left:3.5rem}.md\:inset-y-15{top:3.75rem;bottom:3.75rem}.md\:inset-x-15{right:3.75rem;left:3.75rem}.md\:inset-y-16{top:4rem;bottom:4rem}.md\:inset-x-16{right:4rem;left:4rem}.md\:inset-y-20{top:5rem;bottom:5rem}.md\:inset-x-20{right:5rem;left:5rem}.md\:inset-y-24{top:6rem;bottom:6rem}.md\:inset-x-24{right:6rem;left:6rem}.md\:inset-y-28{top:7rem;bottom:7rem}.md\:inset-x-28{right:7rem;left:7rem}.md\:inset-y-32{top:8rem;bottom:8rem}.md\:inset-x-32{right:8rem;left:8rem}.md\:inset-y-36{top:9rem;bottom:9rem}.md\:inset-x-36{right:9rem;left:9rem}.md\:inset-y-40{top:10rem;bottom:10rem}.md\:inset-x-40{right:10rem;left:10rem}.md\:inset-y-44{top:11rem;bottom:11rem}.md\:inset-x-44{right:11rem;left:11rem}.md\:inset-y-48{top:12rem;bottom:12rem}.md\:inset-x-48{right:12rem;left:12rem}.md\:inset-y-52{top:13rem;bottom:13rem}.md\:inset-x-52{right:13rem;left:13rem}.md\:inset-y-56{top:14rem;bottom:14rem}.md\:inset-x-56{right:14rem;left:14rem}.md\:inset-y-60{top:15rem;bottom:15rem}.md\:inset-x-60{right:15rem;left:15rem}.md\:inset-y-64{top:16rem;bottom:16rem}.md\:inset-x-64{right:16rem;left:16rem}.md\:inset-y-72{top:18rem;bottom:18rem}.md\:inset-x-72{right:18rem;left:18rem}.md\:inset-y-80{top:20rem;bottom:20rem}.md\:inset-x-80{right:20rem;left:20rem}.md\:inset-y-96{top:24rem;bottom:24rem}.md\:inset-x-96{right:24rem;left:24rem}.md\:inset-y-auto{top:auto;bottom:auto}.md\:inset-x-auto{right:auto;left:auto}.md\:inset-y-px{top:1px;bottom:1px}.md\:inset-x-px{right:1px;left:1px}.md\:inset-y-0\.5{top:.125rem;bottom:.125rem}.md\:inset-x-0\.5{right:.125rem;left:.125rem}.md\:inset-y-1\.5{top:.375rem;bottom:.375rem}.md\:inset-x-1\.5{right:.375rem;left:.375rem}.md\:inset-y-2\.5{top:.625rem;bottom:.625rem}.md\:inset-x-2\.5{right:.625rem;left:.625rem}.md\:inset-y-3\.5{top:.875rem;bottom:.875rem}.md\:inset-x-3\.5{right:.875rem;left:.875rem}.md\:inset-y-1\/2{top:50%;bottom:50%}.md\:inset-x-1\/2{right:50%;left:50%}.md\:inset-y-1\/3{top:33.333333%;bottom:33.333333%}.md\:inset-x-1\/3{right:33.333333%;left:33.333333%}.md\:inset-y-2\/3{top:66.666667%;bottom:66.666667%}.md\:inset-x-2\/3{right:66.666667%;left:66.666667%}.md\:inset-y-1\/4{top:25%;bottom:25%}.md\:inset-x-1\/4{right:25%;left:25%}.md\:inset-y-2\/4{top:50%;bottom:50%}.md\:inset-x-2\/4{right:50%;left:50%}.md\:inset-y-3\/4{top:75%;bottom:75%}.md\:inset-x-3\/4{right:75%;left:75%}.md\:inset-y-1\/5{top:20%;bottom:20%}.md\:inset-x-1\/5{right:20%;left:20%}.md\:inset-y-2\/5{top:40%;bottom:40%}.md\:inset-x-2\/5{right:40%;left:40%}.md\:inset-y-3\/5{top:60%;bottom:60%}.md\:inset-x-3\/5{right:60%;left:60%}.md\:inset-y-4\/5{top:80%;bottom:80%}.md\:inset-x-4\/5{right:80%;left:80%}.md\:inset-y-1\/6{top:16.666667%;bottom:16.666667%}.md\:inset-x-1\/6{right:16.666667%;left:16.666667%}.md\:inset-y-2\/6{top:33.333333%;bottom:33.333333%}.md\:inset-x-2\/6{right:33.333333%;left:33.333333%}.md\:inset-y-3\/6{top:50%;bottom:50%}.md\:inset-x-3\/6{right:50%;left:50%}.md\:inset-y-4\/6{top:66.666667%;bottom:66.666667%}.md\:inset-x-4\/6{right:66.666667%;left:66.666667%}.md\:inset-y-5\/6{top:83.333333%;bottom:83.333333%}.md\:inset-x-5\/6{right:83.333333%;left:83.333333%}.md\:inset-y-1\/12{top:8.333333%;bottom:8.333333%}.md\:inset-x-1\/12{right:8.333333%;left:8.333333%}.md\:inset-y-2\/12{top:16.666667%;bottom:16.666667%}.md\:inset-x-2\/12{right:16.666667%;left:16.666667%}.md\:inset-y-3\/12{top:25%;bottom:25%}.md\:inset-x-3\/12{right:25%;left:25%}.md\:inset-y-4\/12{top:33.333333%;bottom:33.333333%}.md\:inset-x-4\/12{right:33.333333%;left:33.333333%}.md\:inset-y-5\/12{top:41.666667%;bottom:41.666667%}.md\:inset-x-5\/12{right:41.666667%;left:41.666667%}.md\:inset-y-6\/12{top:50%;bottom:50%}.md\:inset-x-6\/12{right:50%;left:50%}.md\:inset-y-7\/12{top:58.333333%;bottom:58.333333%}.md\:inset-x-7\/12{right:58.333333%;left:58.333333%}.md\:inset-y-8\/12{top:66.666667%;bottom:66.666667%}.md\:inset-x-8\/12{right:66.666667%;left:66.666667%}.md\:inset-y-9\/12{top:75%;bottom:75%}.md\:inset-x-9\/12{right:75%;left:75%}.md\:inset-y-10\/12{top:83.333333%;bottom:83.333333%}.md\:inset-x-10\/12{right:83.333333%;left:83.333333%}.md\:inset-y-11\/12{top:91.666667%;bottom:91.666667%}.md\:inset-x-11\/12{right:91.666667%;left:91.666667%}.md\:inset-y-full{top:100%;bottom:100%}.md\:inset-x-full{right:100%;left:100%}.md\:top-0{top:0}.md\:right-0{right:0}.md\:bottom-0{bottom:0}.md\:left-0{left:0}.md\:top-1{top:.25rem}.md\:right-1{right:.25rem}.md\:bottom-1{bottom:.25rem}.md\:left-1{left:.25rem}.md\:top-2{top:.5rem}.md\:right-2{right:.5rem}.md\:bottom-2{bottom:.5rem}.md\:left-2{left:.5rem}.md\:top-3{top:.75rem}.md\:right-3{right:.75rem}.md\:bottom-3{bottom:.75rem}.md\:left-3{left:.75rem}.md\:top-4{top:1rem}.md\:right-4{right:1rem}.md\:bottom-4{bottom:1rem}.md\:left-4{left:1rem}.md\:top-5{top:1.25rem}.md\:right-5{right:1.25rem}.md\:bottom-5{bottom:1.25rem}.md\:left-5{left:1.25rem}.md\:top-6{top:1.5rem}.md\:right-6{right:1.5rem}.md\:bottom-6{bottom:1.5rem}.md\:left-6{left:1.5rem}.md\:top-7{top:1.75rem}.md\:right-7{right:1.75rem}.md\:bottom-7{bottom:1.75rem}.md\:left-7{left:1.75rem}.md\:top-8{top:2rem}.md\:right-8{right:2rem}.md\:bottom-8{bottom:2rem}.md\:left-8{left:2rem}.md\:top-9{top:2.25rem}.md\:right-9{right:2.25rem}.md\:bottom-9{bottom:2.25rem}.md\:left-9{left:2.25rem}.md\:top-10{top:2.5rem}.md\:right-10{right:2.5rem}.md\:bottom-10{bottom:2.5rem}.md\:left-10{left:2.5rem}.md\:top-11{top:2.75rem}.md\:right-11{right:2.75rem}.md\:bottom-11{bottom:2.75rem}.md\:left-11{left:2.75rem}.md\:top-12{top:3rem}.md\:right-12{right:3rem}.md\:bottom-12{bottom:3rem}.md\:left-12{left:3rem}.md\:top-13{top:3.25rem}.md\:right-13{right:3.25rem}.md\:bottom-13{bottom:3.25rem}.md\:left-13{left:3.25rem}.md\:top-14{top:3.5rem}.md\:right-14{right:3.5rem}.md\:bottom-14{bottom:3.5rem}.md\:left-14{left:3.5rem}.md\:top-15{top:3.75rem}.md\:right-15{right:3.75rem}.md\:bottom-15{bottom:3.75rem}.md\:left-15{left:3.75rem}.md\:top-16{top:4rem}.md\:right-16{right:4rem}.md\:bottom-16{bottom:4rem}.md\:left-16{left:4rem}.md\:top-20{top:5rem}.md\:right-20{right:5rem}.md\:bottom-20{bottom:5rem}.md\:left-20{left:5rem}.md\:top-24{top:6rem}.md\:right-24{right:6rem}.md\:bottom-24{bottom:6rem}.md\:left-24{left:6rem}.md\:top-28{top:7rem}.md\:right-28{right:7rem}.md\:bottom-28{bottom:7rem}.md\:left-28{left:7rem}.md\:top-32{top:8rem}.md\:right-32{right:8rem}.md\:bottom-32{bottom:8rem}.md\:left-32{left:8rem}.md\:top-36{top:9rem}.md\:right-36{right:9rem}.md\:bottom-36{bottom:9rem}.md\:left-36{left:9rem}.md\:top-40{top:10rem}.md\:right-40{right:10rem}.md\:bottom-40{bottom:10rem}.md\:left-40{left:10rem}.md\:top-44{top:11rem}.md\:right-44{right:11rem}.md\:bottom-44{bottom:11rem}.md\:left-44{left:11rem}.md\:top-48{top:12rem}.md\:right-48{right:12rem}.md\:bottom-48{bottom:12rem}.md\:left-48{left:12rem}.md\:top-52{top:13rem}.md\:right-52{right:13rem}.md\:bottom-52{bottom:13rem}.md\:left-52{left:13rem}.md\:top-56{top:14rem}.md\:right-56{right:14rem}.md\:bottom-56{bottom:14rem}.md\:left-56{left:14rem}.md\:top-60{top:15rem}.md\:right-60{right:15rem}.md\:bottom-60{bottom:15rem}.md\:left-60{left:15rem}.md\:top-64{top:16rem}.md\:right-64{right:16rem}.md\:bottom-64{bottom:16rem}.md\:left-64{left:16rem}.md\:top-72{top:18rem}.md\:right-72{right:18rem}.md\:bottom-72{bottom:18rem}.md\:left-72{left:18rem}.md\:top-80{top:20rem}.md\:right-80{right:20rem}.md\:bottom-80{bottom:20rem}.md\:left-80{left:20rem}.md\:top-96{top:24rem}.md\:right-96{right:24rem}.md\:bottom-96{bottom:24rem}.md\:left-96{left:24rem}.md\:top-auto{top:auto}.md\:right-auto{right:auto}.md\:bottom-auto{bottom:auto}.md\:left-auto{left:auto}.md\:top-px{top:1px}.md\:right-px{right:1px}.md\:bottom-px{bottom:1px}.md\:left-px{left:1px}.md\:top-0\.5{top:.125rem}.md\:right-0\.5{right:.125rem}.md\:bottom-0\.5{bottom:.125rem}.md\:left-0\.5{left:.125rem}.md\:top-1\.5{top:.375rem}.md\:right-1\.5{right:.375rem}.md\:bottom-1\.5{bottom:.375rem}.md\:left-1\.5{left:.375rem}.md\:top-2\.5{top:.625rem}.md\:right-2\.5{right:.625rem}.md\:bottom-2\.5{bottom:.625rem}.md\:left-2\.5{left:.625rem}.md\:top-3\.5{top:.875rem}.md\:right-3\.5{right:.875rem}.md\:bottom-3\.5{bottom:.875rem}.md\:left-3\.5{left:.875rem}.md\:top-1\/2{top:50%}.md\:right-1\/2{right:50%}.md\:bottom-1\/2{bottom:50%}.md\:left-1\/2{left:50%}.md\:top-1\/3{top:33.333333%}.md\:right-1\/3{right:33.333333%}.md\:bottom-1\/3{bottom:33.333333%}.md\:left-1\/3{left:33.333333%}.md\:top-2\/3{top:66.666667%}.md\:right-2\/3{right:66.666667%}.md\:bottom-2\/3{bottom:66.666667%}.md\:left-2\/3{left:66.666667%}.md\:top-1\/4{top:25%}.md\:right-1\/4{right:25%}.md\:bottom-1\/4{bottom:25%}.md\:left-1\/4{left:25%}.md\:top-2\/4{top:50%}.md\:right-2\/4{right:50%}.md\:bottom-2\/4{bottom:50%}.md\:left-2\/4{left:50%}.md\:top-3\/4{top:75%}.md\:right-3\/4{right:75%}.md\:bottom-3\/4{bottom:75%}.md\:left-3\/4{left:75%}.md\:top-1\/5{top:20%}.md\:right-1\/5{right:20%}.md\:bottom-1\/5{bottom:20%}.md\:left-1\/5{left:20%}.md\:top-2\/5{top:40%}.md\:right-2\/5{right:40%}.md\:bottom-2\/5{bottom:40%}.md\:left-2\/5{left:40%}.md\:top-3\/5{top:60%}.md\:right-3\/5{right:60%}.md\:bottom-3\/5{bottom:60%}.md\:left-3\/5{left:60%}.md\:top-4\/5{top:80%}.md\:right-4\/5{right:80%}.md\:bottom-4\/5{bottom:80%}.md\:left-4\/5{left:80%}.md\:top-1\/6{top:16.666667%}.md\:right-1\/6{right:16.666667%}.md\:bottom-1\/6{bottom:16.666667%}.md\:left-1\/6{left:16.666667%}.md\:top-2\/6{top:33.333333%}.md\:right-2\/6{right:33.333333%}.md\:bottom-2\/6{bottom:33.333333%}.md\:left-2\/6{left:33.333333%}.md\:top-3\/6{top:50%}.md\:right-3\/6{right:50%}.md\:bottom-3\/6{bottom:50%}.md\:left-3\/6{left:50%}.md\:top-4\/6{top:66.666667%}.md\:right-4\/6{right:66.666667%}.md\:bottom-4\/6{bottom:66.666667%}.md\:left-4\/6{left:66.666667%}.md\:top-5\/6{top:83.333333%}.md\:right-5\/6{right:83.333333%}.md\:bottom-5\/6{bottom:83.333333%}.md\:left-5\/6{left:83.333333%}.md\:top-1\/12{top:8.333333%}.md\:right-1\/12{right:8.333333%}.md\:bottom-1\/12{bottom:8.333333%}.md\:left-1\/12{left:8.333333%}.md\:top-2\/12{top:16.666667%}.md\:right-2\/12{right:16.666667%}.md\:bottom-2\/12{bottom:16.666667%}.md\:left-2\/12{left:16.666667%}.md\:top-3\/12{top:25%}.md\:right-3\/12{right:25%}.md\:bottom-3\/12{bottom:25%}.md\:left-3\/12{left:25%}.md\:top-4\/12{top:33.333333%}.md\:right-4\/12{right:33.333333%}.md\:bottom-4\/12{bottom:33.333333%}.md\:left-4\/12{left:33.333333%}.md\:top-5\/12{top:41.666667%}.md\:right-5\/12{right:41.666667%}.md\:bottom-5\/12{bottom:41.666667%}.md\:left-5\/12{left:41.666667%}.md\:top-6\/12{top:50%}.md\:right-6\/12{right:50%}.md\:bottom-6\/12{bottom:50%}.md\:left-6\/12{left:50%}.md\:top-7\/12{top:58.333333%}.md\:right-7\/12{right:58.333333%}.md\:bottom-7\/12{bottom:58.333333%}.md\:left-7\/12{left:58.333333%}.md\:top-8\/12{top:66.666667%}.md\:right-8\/12{right:66.666667%}.md\:bottom-8\/12{bottom:66.666667%}.md\:left-8\/12{left:66.666667%}.md\:top-9\/12{top:75%}.md\:right-9\/12{right:75%}.md\:bottom-9\/12{bottom:75%}.md\:left-9\/12{left:75%}.md\:top-10\/12{top:83.333333%}.md\:right-10\/12{right:83.333333%}.md\:bottom-10\/12{bottom:83.333333%}.md\:left-10\/12{left:83.333333%}.md\:top-11\/12{top:91.666667%}.md\:right-11\/12{right:91.666667%}.md\:bottom-11\/12{bottom:91.666667%}.md\:left-11\/12{left:91.666667%}.md\:top-full{top:100%}.md\:right-full{right:100%}.md\:bottom-full{bottom:100%}.md\:left-full{left:100%}.md\:resize-none{resize:none}.md\:resize-y{resize:vertical}.md\:resize-x{resize:horizontal}.md\:resize{resize:both}.md\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.md\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.md\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.md\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.md\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.md\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.md\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.md\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.md\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.md\:shadow-none{box-shadow:none}.md\:shadow-solid{box-shadow:0 0 0 2px currentColor}.md\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.md\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.md\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.md\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.md\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.md\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.md\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.md\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.md\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.md\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.group:focus .md\:group-focus\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.group:focus .md\:group-focus\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.group:focus .md\:group-focus\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.group:focus .md\:group-focus\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.group:focus .md\:group-focus\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.group:focus .md\:group-focus\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.group:focus .md\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.group:focus .md\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.group:focus .md\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.group:focus .md\:group-focus\:shadow-none{box-shadow:none}.group:focus .md\:group-focus\:shadow-solid{box-shadow:0 0 0 2px currentColor}.group:focus .md\:group-focus\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.group:focus .md\:group-focus\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.group:focus .md\:group-focus\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.group:focus .md\:group-focus\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.group:focus .md\:group-focus\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.group:focus .md\:group-focus\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.group:focus .md\:group-focus\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.group:focus .md\:group-focus\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.group:focus .md\:group-focus\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.group:focus .md\:group-focus\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.md\:hover\:shadow-xs:hover{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.md\:hover\:shadow-sm:hover{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.md\:hover\:shadow:hover{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.md\:hover\:shadow-md:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.md\:hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.md\:hover\:shadow-xl:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.md\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.md\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.md\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.md\:hover\:shadow-none:hover{box-shadow:none}.md\:hover\:shadow-solid:hover{box-shadow:0 0 0 2px currentColor}.md\:hover\:shadow-outline-gray:hover{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.md\:hover\:shadow-outline-blue:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.md\:hover\:shadow-outline-teal:hover{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.md\:hover\:shadow-outline-green:hover{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.md\:hover\:shadow-outline-yellow:hover{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.md\:hover\:shadow-outline-orange:hover{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.md\:hover\:shadow-outline-red:hover{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.md\:hover\:shadow-outline-pink:hover{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.md\:hover\:shadow-outline-purple:hover{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.md\:hover\:shadow-outline-indigo:hover{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.md\:focus\:shadow-xs:focus{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.md\:focus\:shadow-sm:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.md\:focus\:shadow:focus{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.md\:focus\:shadow-md:focus{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.md\:focus\:shadow-lg:focus{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.md\:focus\:shadow-xl:focus{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.md\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.md\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.md\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.md\:focus\:shadow-none:focus{box-shadow:none}.md\:focus\:shadow-solid:focus{box-shadow:0 0 0 2px currentColor}.md\:focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.md\:focus\:shadow-outline-blue:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.md\:focus\:shadow-outline-teal:focus{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.md\:focus\:shadow-outline-green:focus{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.md\:focus\:shadow-outline-yellow:focus{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.md\:focus\:shadow-outline-orange:focus{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.md\:focus\:shadow-outline-red:focus{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.md\:focus\:shadow-outline-pink:focus{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.md\:focus\:shadow-outline-purple:focus{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.md\:focus\:shadow-outline-indigo:focus{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.md\:fill-current{fill:currentColor}.md\:stroke-current{stroke:currentColor}.md\:stroke-0{stroke-width:0}.md\:stroke-1{stroke-width:1}.md\:stroke-2{stroke-width:2}.md\:table-auto{table-layout:auto}.md\:table-fixed{table-layout:fixed}.md\:text-left{text-align:left}.md\:text-center{text-align:center}.md\:text-right{text-align:right}.md\:text-justify{text-align:justify}.md\:text-transparent{color:transparent}.md\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.md\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.md\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.md\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.md\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.md\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.md\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.md\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.md\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.md\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.md\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.md\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.md\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.md\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.md\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.md\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.md\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.md\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.md\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.md\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.md\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.md\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.md\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.md\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.md\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.md\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.md\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.md\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.md\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.md\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.md\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.md\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.md\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.md\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.md\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.md\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.md\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.md\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.md\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.md\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.md\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.md\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.md\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.md\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.md\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.md\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.md\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.md\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.md\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.md\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.md\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.md\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.md\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.md\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.md\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.md\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.md\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.md\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.md\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.md\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.md\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.md\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.md\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.md\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.md\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.md\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.md\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.md\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.md\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.md\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.md\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.md\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.md\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.md\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.md\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.md\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.md\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.md\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.md\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.md\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.md\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.md\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.md\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.md\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.md\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.md\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.md\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.md\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.md\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.md\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.md\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.md\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.md\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.md\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.md\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.md\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.md\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.md\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.md\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.md\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.md\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.md\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.md\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.md\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.md\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.md\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.md\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.md\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.md\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.md\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.md\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.md\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:hover .md\:group-hover\:text-transparent{color:transparent}.group:hover .md\:group-hover\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:hover .md\:group-hover\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:hover .md\:group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:hover .md\:group-hover\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:hover .md\:group-hover\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:hover .md\:group-hover\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:hover .md\:group-hover\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:hover .md\:group-hover\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:hover .md\:group-hover\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:hover .md\:group-hover\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .md\:group-hover\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:hover .md\:group-hover\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:hover .md\:group-hover\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:focus .md\:group-focus\:text-transparent{color:transparent}.group:focus .md\:group-focus\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:focus .md\:group-focus\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:focus .md\:group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:focus .md\:group-focus\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:focus .md\:group-focus\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:focus .md\:group-focus\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:focus .md\:group-focus\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:focus .md\:group-focus\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:focus .md\:group-focus\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:focus .md\:group-focus\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .md\:group-focus\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:focus .md\:group-focus\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:focus .md\:group-focus\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.md\:hover\:text-transparent:hover{color:transparent}.md\:hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.md\:hover\:text-black:hover{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.md\:hover\:text-gray-50:hover{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.md\:hover\:text-gray-100:hover{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.md\:hover\:text-gray-200:hover{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.md\:hover\:text-gray-300:hover{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.md\:hover\:text-gray-400:hover{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.md\:hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.md\:hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.md\:hover\:text-gray-700:hover{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.md\:hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.md\:hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.md\:hover\:text-cool-gray-50:hover{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.md\:hover\:text-cool-gray-100:hover{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.md\:hover\:text-cool-gray-200:hover{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.md\:hover\:text-cool-gray-300:hover{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.md\:hover\:text-cool-gray-400:hover{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.md\:hover\:text-cool-gray-500:hover{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.md\:hover\:text-cool-gray-600:hover{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.md\:hover\:text-cool-gray-700:hover{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.md\:hover\:text-cool-gray-800:hover{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.md\:hover\:text-cool-gray-900:hover{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.md\:hover\:text-red-50:hover{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.md\:hover\:text-red-100:hover{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.md\:hover\:text-red-200:hover{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.md\:hover\:text-red-300:hover{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.md\:hover\:text-red-400:hover{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.md\:hover\:text-red-500:hover{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.md\:hover\:text-red-600:hover{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.md\:hover\:text-red-700:hover{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.md\:hover\:text-red-800:hover{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.md\:hover\:text-red-900:hover{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.md\:hover\:text-orange-50:hover{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.md\:hover\:text-orange-100:hover{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.md\:hover\:text-orange-200:hover{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.md\:hover\:text-orange-300:hover{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.md\:hover\:text-orange-400:hover{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.md\:hover\:text-orange-500:hover{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.md\:hover\:text-orange-600:hover{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.md\:hover\:text-orange-700:hover{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.md\:hover\:text-orange-800:hover{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.md\:hover\:text-orange-900:hover{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.md\:hover\:text-yellow-50:hover{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.md\:hover\:text-yellow-100:hover{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.md\:hover\:text-yellow-200:hover{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.md\:hover\:text-yellow-300:hover{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.md\:hover\:text-yellow-400:hover{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.md\:hover\:text-yellow-500:hover{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.md\:hover\:text-yellow-600:hover{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.md\:hover\:text-yellow-700:hover{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.md\:hover\:text-yellow-800:hover{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.md\:hover\:text-yellow-900:hover{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.md\:hover\:text-green-50:hover{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.md\:hover\:text-green-100:hover{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.md\:hover\:text-green-200:hover{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.md\:hover\:text-green-300:hover{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.md\:hover\:text-green-400:hover{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.md\:hover\:text-green-500:hover{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.md\:hover\:text-green-600:hover{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.md\:hover\:text-green-700:hover{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.md\:hover\:text-green-800:hover{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.md\:hover\:text-green-900:hover{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.md\:hover\:text-teal-50:hover{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.md\:hover\:text-teal-100:hover{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.md\:hover\:text-teal-200:hover{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.md\:hover\:text-teal-300:hover{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.md\:hover\:text-teal-400:hover{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.md\:hover\:text-teal-500:hover{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.md\:hover\:text-teal-600:hover{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.md\:hover\:text-teal-700:hover{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.md\:hover\:text-teal-800:hover{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.md\:hover\:text-teal-900:hover{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.md\:hover\:text-blue-50:hover{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.md\:hover\:text-blue-100:hover{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.md\:hover\:text-blue-200:hover{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.md\:hover\:text-blue-300:hover{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.md\:hover\:text-blue-400:hover{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.md\:hover\:text-blue-500:hover{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.md\:hover\:text-blue-600:hover{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.md\:hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.md\:hover\:text-blue-800:hover{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.md\:hover\:text-blue-900:hover{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.md\:hover\:text-indigo-50:hover{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.md\:hover\:text-indigo-100:hover{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.md\:hover\:text-indigo-200:hover{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.md\:hover\:text-indigo-300:hover{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.md\:hover\:text-indigo-400:hover{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.md\:hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.md\:hover\:text-indigo-600:hover{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.md\:hover\:text-indigo-700:hover{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.md\:hover\:text-indigo-800:hover{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.md\:hover\:text-indigo-900:hover{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.md\:hover\:text-purple-50:hover{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.md\:hover\:text-purple-100:hover{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.md\:hover\:text-purple-200:hover{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.md\:hover\:text-purple-300:hover{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.md\:hover\:text-purple-400:hover{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.md\:hover\:text-purple-500:hover{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.md\:hover\:text-purple-600:hover{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.md\:hover\:text-purple-700:hover{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.md\:hover\:text-purple-800:hover{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.md\:hover\:text-purple-900:hover{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.md\:hover\:text-pink-50:hover{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.md\:hover\:text-pink-100:hover{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.md\:hover\:text-pink-200:hover{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.md\:hover\:text-pink-300:hover{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.md\:hover\:text-pink-400:hover{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.md\:hover\:text-pink-500:hover{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.md\:hover\:text-pink-600:hover{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.md\:hover\:text-pink-700:hover{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.md\:hover\:text-pink-800:hover{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.md\:hover\:text-pink-900:hover{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.md\:focus-within\:text-transparent:focus-within{color:transparent}.md\:focus-within\:text-white:focus-within{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.md\:focus-within\:text-black:focus-within{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.md\:focus-within\:text-gray-50:focus-within{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.md\:focus-within\:text-gray-100:focus-within{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.md\:focus-within\:text-gray-200:focus-within{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.md\:focus-within\:text-gray-300:focus-within{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.md\:focus-within\:text-gray-400:focus-within{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.md\:focus-within\:text-gray-500:focus-within{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.md\:focus-within\:text-gray-600:focus-within{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.md\:focus-within\:text-gray-700:focus-within{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.md\:focus-within\:text-gray-800:focus-within{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.md\:focus-within\:text-gray-900:focus-within{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.md\:focus-within\:text-cool-gray-50:focus-within{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.md\:focus-within\:text-cool-gray-100:focus-within{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.md\:focus-within\:text-cool-gray-200:focus-within{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.md\:focus-within\:text-cool-gray-300:focus-within{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.md\:focus-within\:text-cool-gray-400:focus-within{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.md\:focus-within\:text-cool-gray-500:focus-within{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.md\:focus-within\:text-cool-gray-600:focus-within{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.md\:focus-within\:text-cool-gray-700:focus-within{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.md\:focus-within\:text-cool-gray-800:focus-within{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.md\:focus-within\:text-cool-gray-900:focus-within{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.md\:focus-within\:text-red-50:focus-within{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.md\:focus-within\:text-red-100:focus-within{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.md\:focus-within\:text-red-200:focus-within{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.md\:focus-within\:text-red-300:focus-within{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.md\:focus-within\:text-red-400:focus-within{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.md\:focus-within\:text-red-500:focus-within{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.md\:focus-within\:text-red-600:focus-within{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.md\:focus-within\:text-red-700:focus-within{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.md\:focus-within\:text-red-800:focus-within{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.md\:focus-within\:text-red-900:focus-within{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.md\:focus-within\:text-orange-50:focus-within{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.md\:focus-within\:text-orange-100:focus-within{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.md\:focus-within\:text-orange-200:focus-within{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.md\:focus-within\:text-orange-300:focus-within{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.md\:focus-within\:text-orange-400:focus-within{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.md\:focus-within\:text-orange-500:focus-within{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.md\:focus-within\:text-orange-600:focus-within{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.md\:focus-within\:text-orange-700:focus-within{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.md\:focus-within\:text-orange-800:focus-within{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.md\:focus-within\:text-orange-900:focus-within{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.md\:focus-within\:text-yellow-50:focus-within{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.md\:focus-within\:text-yellow-100:focus-within{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.md\:focus-within\:text-yellow-200:focus-within{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.md\:focus-within\:text-yellow-300:focus-within{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.md\:focus-within\:text-yellow-400:focus-within{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.md\:focus-within\:text-yellow-500:focus-within{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.md\:focus-within\:text-yellow-600:focus-within{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.md\:focus-within\:text-yellow-700:focus-within{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.md\:focus-within\:text-yellow-800:focus-within{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.md\:focus-within\:text-yellow-900:focus-within{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.md\:focus-within\:text-green-50:focus-within{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.md\:focus-within\:text-green-100:focus-within{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.md\:focus-within\:text-green-200:focus-within{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.md\:focus-within\:text-green-300:focus-within{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.md\:focus-within\:text-green-400:focus-within{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.md\:focus-within\:text-green-500:focus-within{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.md\:focus-within\:text-green-600:focus-within{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.md\:focus-within\:text-green-700:focus-within{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.md\:focus-within\:text-green-800:focus-within{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.md\:focus-within\:text-green-900:focus-within{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.md\:focus-within\:text-teal-50:focus-within{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.md\:focus-within\:text-teal-100:focus-within{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.md\:focus-within\:text-teal-200:focus-within{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.md\:focus-within\:text-teal-300:focus-within{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.md\:focus-within\:text-teal-400:focus-within{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.md\:focus-within\:text-teal-500:focus-within{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.md\:focus-within\:text-teal-600:focus-within{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.md\:focus-within\:text-teal-700:focus-within{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.md\:focus-within\:text-teal-800:focus-within{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.md\:focus-within\:text-teal-900:focus-within{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.md\:focus-within\:text-blue-50:focus-within{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.md\:focus-within\:text-blue-100:focus-within{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.md\:focus-within\:text-blue-200:focus-within{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.md\:focus-within\:text-blue-300:focus-within{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.md\:focus-within\:text-blue-400:focus-within{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.md\:focus-within\:text-blue-500:focus-within{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.md\:focus-within\:text-blue-600:focus-within{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.md\:focus-within\:text-blue-700:focus-within{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.md\:focus-within\:text-blue-800:focus-within{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.md\:focus-within\:text-blue-900:focus-within{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.md\:focus-within\:text-indigo-50:focus-within{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.md\:focus-within\:text-indigo-100:focus-within{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.md\:focus-within\:text-indigo-200:focus-within{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.md\:focus-within\:text-indigo-300:focus-within{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.md\:focus-within\:text-indigo-400:focus-within{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.md\:focus-within\:text-indigo-500:focus-within{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.md\:focus-within\:text-indigo-600:focus-within{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.md\:focus-within\:text-indigo-700:focus-within{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.md\:focus-within\:text-indigo-800:focus-within{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.md\:focus-within\:text-indigo-900:focus-within{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.md\:focus-within\:text-purple-50:focus-within{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.md\:focus-within\:text-purple-100:focus-within{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.md\:focus-within\:text-purple-200:focus-within{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.md\:focus-within\:text-purple-300:focus-within{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.md\:focus-within\:text-purple-400:focus-within{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.md\:focus-within\:text-purple-500:focus-within{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.md\:focus-within\:text-purple-600:focus-within{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.md\:focus-within\:text-purple-700:focus-within{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.md\:focus-within\:text-purple-800:focus-within{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.md\:focus-within\:text-purple-900:focus-within{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.md\:focus-within\:text-pink-50:focus-within{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.md\:focus-within\:text-pink-100:focus-within{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.md\:focus-within\:text-pink-200:focus-within{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.md\:focus-within\:text-pink-300:focus-within{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.md\:focus-within\:text-pink-400:focus-within{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.md\:focus-within\:text-pink-500:focus-within{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.md\:focus-within\:text-pink-600:focus-within{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.md\:focus-within\:text-pink-700:focus-within{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.md\:focus-within\:text-pink-800:focus-within{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.md\:focus-within\:text-pink-900:focus-within{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.md\:focus\:text-transparent:focus{color:transparent}.md\:focus\:text-white:focus{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.md\:focus\:text-black:focus{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.md\:focus\:text-gray-50:focus{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.md\:focus\:text-gray-100:focus{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.md\:focus\:text-gray-200:focus{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.md\:focus\:text-gray-300:focus{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.md\:focus\:text-gray-400:focus{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.md\:focus\:text-gray-500:focus{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.md\:focus\:text-gray-600:focus{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.md\:focus\:text-gray-700:focus{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.md\:focus\:text-gray-800:focus{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.md\:focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.md\:focus\:text-cool-gray-50:focus{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.md\:focus\:text-cool-gray-100:focus{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.md\:focus\:text-cool-gray-200:focus{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.md\:focus\:text-cool-gray-300:focus{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.md\:focus\:text-cool-gray-400:focus{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.md\:focus\:text-cool-gray-500:focus{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.md\:focus\:text-cool-gray-600:focus{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.md\:focus\:text-cool-gray-700:focus{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.md\:focus\:text-cool-gray-800:focus{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.md\:focus\:text-cool-gray-900:focus{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.md\:focus\:text-red-50:focus{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.md\:focus\:text-red-100:focus{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.md\:focus\:text-red-200:focus{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.md\:focus\:text-red-300:focus{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.md\:focus\:text-red-400:focus{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.md\:focus\:text-red-500:focus{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.md\:focus\:text-red-600:focus{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.md\:focus\:text-red-700:focus{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.md\:focus\:text-red-800:focus{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.md\:focus\:text-red-900:focus{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.md\:focus\:text-orange-50:focus{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.md\:focus\:text-orange-100:focus{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.md\:focus\:text-orange-200:focus{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.md\:focus\:text-orange-300:focus{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.md\:focus\:text-orange-400:focus{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.md\:focus\:text-orange-500:focus{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.md\:focus\:text-orange-600:focus{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.md\:focus\:text-orange-700:focus{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.md\:focus\:text-orange-800:focus{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.md\:focus\:text-orange-900:focus{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.md\:focus\:text-yellow-50:focus{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.md\:focus\:text-yellow-100:focus{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.md\:focus\:text-yellow-200:focus{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.md\:focus\:text-yellow-300:focus{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.md\:focus\:text-yellow-400:focus{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.md\:focus\:text-yellow-500:focus{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.md\:focus\:text-yellow-600:focus{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.md\:focus\:text-yellow-700:focus{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.md\:focus\:text-yellow-800:focus{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.md\:focus\:text-yellow-900:focus{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.md\:focus\:text-green-50:focus{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.md\:focus\:text-green-100:focus{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.md\:focus\:text-green-200:focus{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.md\:focus\:text-green-300:focus{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.md\:focus\:text-green-400:focus{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.md\:focus\:text-green-500:focus{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.md\:focus\:text-green-600:focus{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.md\:focus\:text-green-700:focus{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.md\:focus\:text-green-800:focus{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.md\:focus\:text-green-900:focus{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.md\:focus\:text-teal-50:focus{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.md\:focus\:text-teal-100:focus{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.md\:focus\:text-teal-200:focus{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.md\:focus\:text-teal-300:focus{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.md\:focus\:text-teal-400:focus{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.md\:focus\:text-teal-500:focus{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.md\:focus\:text-teal-600:focus{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.md\:focus\:text-teal-700:focus{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.md\:focus\:text-teal-800:focus{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.md\:focus\:text-teal-900:focus{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.md\:focus\:text-blue-50:focus{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.md\:focus\:text-blue-100:focus{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.md\:focus\:text-blue-200:focus{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.md\:focus\:text-blue-300:focus{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.md\:focus\:text-blue-400:focus{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.md\:focus\:text-blue-500:focus{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.md\:focus\:text-blue-600:focus{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.md\:focus\:text-blue-700:focus{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.md\:focus\:text-blue-800:focus{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.md\:focus\:text-blue-900:focus{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.md\:focus\:text-indigo-50:focus{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.md\:focus\:text-indigo-100:focus{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.md\:focus\:text-indigo-200:focus{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.md\:focus\:text-indigo-300:focus{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.md\:focus\:text-indigo-400:focus{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.md\:focus\:text-indigo-500:focus{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.md\:focus\:text-indigo-600:focus{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.md\:focus\:text-indigo-700:focus{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.md\:focus\:text-indigo-800:focus{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.md\:focus\:text-indigo-900:focus{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.md\:focus\:text-purple-50:focus{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.md\:focus\:text-purple-100:focus{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.md\:focus\:text-purple-200:focus{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.md\:focus\:text-purple-300:focus{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.md\:focus\:text-purple-400:focus{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.md\:focus\:text-purple-500:focus{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.md\:focus\:text-purple-600:focus{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.md\:focus\:text-purple-700:focus{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.md\:focus\:text-purple-800:focus{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.md\:focus\:text-purple-900:focus{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.md\:focus\:text-pink-50:focus{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.md\:focus\:text-pink-100:focus{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.md\:focus\:text-pink-200:focus{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.md\:focus\:text-pink-300:focus{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.md\:focus\:text-pink-400:focus{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.md\:focus\:text-pink-500:focus{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.md\:focus\:text-pink-600:focus{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.md\:focus\:text-pink-700:focus{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.md\:focus\:text-pink-800:focus{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.md\:focus\:text-pink-900:focus{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.md\:active\:text-transparent:active{color:transparent}.md\:active\:text-white:active{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.md\:active\:text-black:active{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.md\:active\:text-gray-50:active{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.md\:active\:text-gray-100:active{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.md\:active\:text-gray-200:active{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.md\:active\:text-gray-300:active{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.md\:active\:text-gray-400:active{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.md\:active\:text-gray-500:active{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.md\:active\:text-gray-600:active{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.md\:active\:text-gray-700:active{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.md\:active\:text-gray-800:active{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.md\:active\:text-gray-900:active{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.md\:active\:text-cool-gray-50:active{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.md\:active\:text-cool-gray-100:active{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.md\:active\:text-cool-gray-200:active{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.md\:active\:text-cool-gray-300:active{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.md\:active\:text-cool-gray-400:active{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.md\:active\:text-cool-gray-500:active{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.md\:active\:text-cool-gray-600:active{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.md\:active\:text-cool-gray-700:active{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.md\:active\:text-cool-gray-800:active{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.md\:active\:text-cool-gray-900:active{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.md\:active\:text-red-50:active{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.md\:active\:text-red-100:active{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.md\:active\:text-red-200:active{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.md\:active\:text-red-300:active{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.md\:active\:text-red-400:active{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.md\:active\:text-red-500:active{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.md\:active\:text-red-600:active{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.md\:active\:text-red-700:active{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.md\:active\:text-red-800:active{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.md\:active\:text-red-900:active{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.md\:active\:text-orange-50:active{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.md\:active\:text-orange-100:active{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.md\:active\:text-orange-200:active{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.md\:active\:text-orange-300:active{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.md\:active\:text-orange-400:active{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.md\:active\:text-orange-500:active{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.md\:active\:text-orange-600:active{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.md\:active\:text-orange-700:active{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.md\:active\:text-orange-800:active{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.md\:active\:text-orange-900:active{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.md\:active\:text-yellow-50:active{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.md\:active\:text-yellow-100:active{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.md\:active\:text-yellow-200:active{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.md\:active\:text-yellow-300:active{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.md\:active\:text-yellow-400:active{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.md\:active\:text-yellow-500:active{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.md\:active\:text-yellow-600:active{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.md\:active\:text-yellow-700:active{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.md\:active\:text-yellow-800:active{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.md\:active\:text-yellow-900:active{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.md\:active\:text-green-50:active{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.md\:active\:text-green-100:active{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.md\:active\:text-green-200:active{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.md\:active\:text-green-300:active{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.md\:active\:text-green-400:active{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.md\:active\:text-green-500:active{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.md\:active\:text-green-600:active{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.md\:active\:text-green-700:active{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.md\:active\:text-green-800:active{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.md\:active\:text-green-900:active{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.md\:active\:text-teal-50:active{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.md\:active\:text-teal-100:active{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.md\:active\:text-teal-200:active{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.md\:active\:text-teal-300:active{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.md\:active\:text-teal-400:active{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.md\:active\:text-teal-500:active{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.md\:active\:text-teal-600:active{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.md\:active\:text-teal-700:active{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.md\:active\:text-teal-800:active{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.md\:active\:text-teal-900:active{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.md\:active\:text-blue-50:active{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.md\:active\:text-blue-100:active{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.md\:active\:text-blue-200:active{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.md\:active\:text-blue-300:active{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.md\:active\:text-blue-400:active{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.md\:active\:text-blue-500:active{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.md\:active\:text-blue-600:active{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.md\:active\:text-blue-700:active{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.md\:active\:text-blue-800:active{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.md\:active\:text-blue-900:active{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.md\:active\:text-indigo-50:active{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.md\:active\:text-indigo-100:active{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.md\:active\:text-indigo-200:active{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.md\:active\:text-indigo-300:active{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.md\:active\:text-indigo-400:active{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.md\:active\:text-indigo-500:active{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.md\:active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.md\:active\:text-indigo-700:active{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.md\:active\:text-indigo-800:active{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.md\:active\:text-indigo-900:active{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.md\:active\:text-purple-50:active{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.md\:active\:text-purple-100:active{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.md\:active\:text-purple-200:active{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.md\:active\:text-purple-300:active{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.md\:active\:text-purple-400:active{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.md\:active\:text-purple-500:active{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.md\:active\:text-purple-600:active{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.md\:active\:text-purple-700:active{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.md\:active\:text-purple-800:active{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.md\:active\:text-purple-900:active{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.md\:active\:text-pink-50:active{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.md\:active\:text-pink-100:active{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.md\:active\:text-pink-200:active{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.md\:active\:text-pink-300:active{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.md\:active\:text-pink-400:active{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.md\:active\:text-pink-500:active{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.md\:active\:text-pink-600:active{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.md\:active\:text-pink-700:active{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.md\:active\:text-pink-800:active{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.md\:active\:text-pink-900:active{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.md\:text-opacity-0{--text-opacity:0}.md\:text-opacity-25{--text-opacity:0.25}.md\:text-opacity-50{--text-opacity:0.5}.md\:text-opacity-75{--text-opacity:0.75}.md\:text-opacity-100{--text-opacity:1}.md\:hover\:text-opacity-0:hover{--text-opacity:0}.md\:hover\:text-opacity-25:hover{--text-opacity:0.25}.md\:hover\:text-opacity-50:hover{--text-opacity:0.5}.md\:hover\:text-opacity-75:hover{--text-opacity:0.75}.md\:hover\:text-opacity-100:hover{--text-opacity:1}.md\:focus\:text-opacity-0:focus{--text-opacity:0}.md\:focus\:text-opacity-25:focus{--text-opacity:0.25}.md\:focus\:text-opacity-50:focus{--text-opacity:0.5}.md\:focus\:text-opacity-75:focus{--text-opacity:0.75}.md\:focus\:text-opacity-100:focus{--text-opacity:1}.md\:italic{font-style:italic}.md\:not-italic{font-style:normal}.md\:uppercase{text-transform:uppercase}.md\:lowercase{text-transform:lowercase}.md\:capitalize{text-transform:capitalize}.md\:normal-case{text-transform:none}.md\:underline{text-decoration:underline}.md\:line-through{text-decoration:line-through}.md\:no-underline{text-decoration:none}.group:hover .md\:group-hover\:underline{text-decoration:underline}.group:hover .md\:group-hover\:line-through{text-decoration:line-through}.group:hover .md\:group-hover\:no-underline{text-decoration:none}.group:focus .md\:group-focus\:underline{text-decoration:underline}.group:focus .md\:group-focus\:line-through{text-decoration:line-through}.group:focus .md\:group-focus\:no-underline{text-decoration:none}.md\:hover\:underline:hover{text-decoration:underline}.md\:hover\:line-through:hover{text-decoration:line-through}.md\:hover\:no-underline:hover{text-decoration:none}.md\:focus\:underline:focus{text-decoration:underline}.md\:focus\:line-through:focus{text-decoration:line-through}.md\:focus\:no-underline:focus{text-decoration:none}.md\:antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.md\:subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.md\:tracking-tighter{letter-spacing:-.05em}.md\:tracking-tight{letter-spacing:-.025em}.md\:tracking-normal{letter-spacing:0}.md\:tracking-wide{letter-spacing:.025em}.md\:tracking-wider{letter-spacing:.05em}.md\:tracking-widest{letter-spacing:.1em}.md\:select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md\:select-text{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.md\:select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.md\:select-auto{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.md\:align-baseline{vertical-align:baseline}.md\:align-top{vertical-align:top}.md\:align-middle{vertical-align:middle}.md\:align-bottom{vertical-align:bottom}.md\:align-text-top{vertical-align:text-top}.md\:align-text-bottom{vertical-align:text-bottom}.md\:visible{visibility:visible}.md\:invisible{visibility:hidden}.md\:whitespace-normal{white-space:normal}.md\:whitespace-no-wrap{white-space:nowrap}.md\:whitespace-pre{white-space:pre}.md\:whitespace-pre-line{white-space:pre-line}.md\:whitespace-pre-wrap{white-space:pre-wrap}.md\:break-normal{overflow-wrap:normal;word-break:normal}.md\:break-words{overflow-wrap:break-word}.md\:break-all{word-break:break-all}.md\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.md\:w-0{width:0}.md\:w-1{width:.25rem}.md\:w-2{width:.5rem}.md\:w-3{width:.75rem}.md\:w-4{width:1rem}.md\:w-5{width:1.25rem}.md\:w-6{width:1.5rem}.md\:w-7{width:1.75rem}.md\:w-8{width:2rem}.md\:w-9{width:2.25rem}.md\:w-10{width:2.5rem}.md\:w-11{width:2.75rem}.md\:w-12{width:3rem}.md\:w-13{width:3.25rem}.md\:w-14{width:3.5rem}.md\:w-15{width:3.75rem}.md\:w-16{width:4rem}.md\:w-20{width:5rem}.md\:w-24{width:6rem}.md\:w-28{width:7rem}.md\:w-32{width:8rem}.md\:w-36{width:9rem}.md\:w-40{width:10rem}.md\:w-44{width:11rem}.md\:w-48{width:12rem}.md\:w-52{width:13rem}.md\:w-56{width:14rem}.md\:w-60{width:15rem}.md\:w-64{width:16rem}.md\:w-72{width:18rem}.md\:w-80{width:20rem}.md\:w-96{width:24rem}.md\:w-auto{width:auto}.md\:w-px{width:1px}.md\:w-0\.5{width:.125rem}.md\:w-1\.5{width:.375rem}.md\:w-2\.5{width:.625rem}.md\:w-3\.5{width:.875rem}.md\:w-1\/2{width:50%}.md\:w-1\/3{width:33.333333%}.md\:w-2\/3{width:66.666667%}.md\:w-1\/4{width:25%}.md\:w-2\/4{width:50%}.md\:w-3\/4{width:75%}.md\:w-1\/5{width:20%}.md\:w-2\/5{width:40%}.md\:w-3\/5{width:60%}.md\:w-4\/5{width:80%}.md\:w-1\/6{width:16.666667%}.md\:w-2\/6{width:33.333333%}.md\:w-3\/6{width:50%}.md\:w-4\/6{width:66.666667%}.md\:w-5\/6{width:83.333333%}.md\:w-1\/12{width:8.333333%}.md\:w-2\/12{width:16.666667%}.md\:w-3\/12{width:25%}.md\:w-4\/12{width:33.333333%}.md\:w-5\/12{width:41.666667%}.md\:w-6\/12{width:50%}.md\:w-7\/12{width:58.333333%}.md\:w-8\/12{width:66.666667%}.md\:w-9\/12{width:75%}.md\:w-10\/12{width:83.333333%}.md\:w-11\/12{width:91.666667%}.md\:w-full{width:100%}.md\:w-screen{width:100vw}.md\:w-min-content{width:-webkit-min-content;width:-moz-min-content;width:min-content}.md\:w-max-content{width:-webkit-max-content;width:-moz-max-content;width:max-content}.md\:z-0{z-index:0}.md\:z-10{z-index:10}.md\:z-20{z-index:20}.md\:z-30{z-index:30}.md\:z-40{z-index:40}.md\:z-50{z-index:50}.md\:z-auto{z-index:auto}.md\:focus-within\:z-0:focus-within{z-index:0}.md\:focus-within\:z-10:focus-within{z-index:10}.md\:focus-within\:z-20:focus-within{z-index:20}.md\:focus-within\:z-30:focus-within{z-index:30}.md\:focus-within\:z-40:focus-within{z-index:40}.md\:focus-within\:z-50:focus-within{z-index:50}.md\:focus-within\:z-auto:focus-within{z-index:auto}.md\:focus\:z-0:focus{z-index:0}.md\:focus\:z-10:focus{z-index:10}.md\:focus\:z-20:focus{z-index:20}.md\:focus\:z-30:focus{z-index:30}.md\:focus\:z-40:focus{z-index:40}.md\:focus\:z-50:focus{z-index:50}.md\:focus\:z-auto:focus{z-index:auto}.md\:gap-0{grid-gap:0;gap:0}.md\:gap-1{grid-gap:.25rem;gap:.25rem}.md\:gap-2{grid-gap:.5rem;gap:.5rem}.md\:gap-3{grid-gap:.75rem;gap:.75rem}.md\:gap-4{grid-gap:1rem;gap:1rem}.md\:gap-5{grid-gap:1.25rem;gap:1.25rem}.md\:gap-6{grid-gap:1.5rem;gap:1.5rem}.md\:gap-7{grid-gap:1.75rem;gap:1.75rem}.md\:gap-8{grid-gap:2rem;gap:2rem}.md\:gap-9{grid-gap:2.25rem;gap:2.25rem}.md\:gap-10{grid-gap:2.5rem;gap:2.5rem}.md\:gap-11{grid-gap:2.75rem;gap:2.75rem}.md\:gap-12{grid-gap:3rem;gap:3rem}.md\:gap-13{grid-gap:3.25rem;gap:3.25rem}.md\:gap-14{grid-gap:3.5rem;gap:3.5rem}.md\:gap-15{grid-gap:3.75rem;gap:3.75rem}.md\:gap-16{grid-gap:4rem;gap:4rem}.md\:gap-20{grid-gap:5rem;gap:5rem}.md\:gap-24{grid-gap:6rem;gap:6rem}.md\:gap-28{grid-gap:7rem;gap:7rem}.md\:gap-32{grid-gap:8rem;gap:8rem}.md\:gap-36{grid-gap:9rem;gap:9rem}.md\:gap-40{grid-gap:10rem;gap:10rem}.md\:gap-44{grid-gap:11rem;gap:11rem}.md\:gap-48{grid-gap:12rem;gap:12rem}.md\:gap-52{grid-gap:13rem;gap:13rem}.md\:gap-56{grid-gap:14rem;gap:14rem}.md\:gap-60{grid-gap:15rem;gap:15rem}.md\:gap-64{grid-gap:16rem;gap:16rem}.md\:gap-72{grid-gap:18rem;gap:18rem}.md\:gap-80{grid-gap:20rem;gap:20rem}.md\:gap-96{grid-gap:24rem;gap:24rem}.md\:gap-px{grid-gap:1px;gap:1px}.md\:gap-0\.5{grid-gap:.125rem;gap:.125rem}.md\:gap-1\.5{grid-gap:.375rem;gap:.375rem}.md\:gap-2\.5{grid-gap:.625rem;gap:.625rem}.md\:gap-3\.5{grid-gap:.875rem;gap:.875rem}.md\:gap-1\/2{grid-gap:50%;gap:50%}.md\:gap-1\/3{grid-gap:33.333333%;gap:33.333333%}.md\:gap-2\/3{grid-gap:66.666667%;gap:66.666667%}.md\:gap-1\/4{grid-gap:25%;gap:25%}.md\:gap-2\/4{grid-gap:50%;gap:50%}.md\:gap-3\/4{grid-gap:75%;gap:75%}.md\:gap-1\/5{grid-gap:20%;gap:20%}.md\:gap-2\/5{grid-gap:40%;gap:40%}.md\:gap-3\/5{grid-gap:60%;gap:60%}.md\:gap-4\/5{grid-gap:80%;gap:80%}.md\:gap-1\/6{grid-gap:16.666667%;gap:16.666667%}.md\:gap-2\/6{grid-gap:33.333333%;gap:33.333333%}.md\:gap-3\/6{grid-gap:50%;gap:50%}.md\:gap-4\/6{grid-gap:66.666667%;gap:66.666667%}.md\:gap-5\/6{grid-gap:83.333333%;gap:83.333333%}.md\:gap-1\/12{grid-gap:8.333333%;gap:8.333333%}.md\:gap-2\/12{grid-gap:16.666667%;gap:16.666667%}.md\:gap-3\/12{grid-gap:25%;gap:25%}.md\:gap-4\/12{grid-gap:33.333333%;gap:33.333333%}.md\:gap-5\/12{grid-gap:41.666667%;gap:41.666667%}.md\:gap-6\/12{grid-gap:50%;gap:50%}.md\:gap-7\/12{grid-gap:58.333333%;gap:58.333333%}.md\:gap-8\/12{grid-gap:66.666667%;gap:66.666667%}.md\:gap-9\/12{grid-gap:75%;gap:75%}.md\:gap-10\/12{grid-gap:83.333333%;gap:83.333333%}.md\:gap-11\/12{grid-gap:91.666667%;gap:91.666667%}.md\:gap-full{grid-gap:100%;gap:100%}.md\:col-gap-0{grid-column-gap:0;-moz-column-gap:0;column-gap:0}.md\:col-gap-1{grid-column-gap:.25rem;-moz-column-gap:.25rem;column-gap:.25rem}.md\:col-gap-2{grid-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}.md\:col-gap-3{grid-column-gap:.75rem;-moz-column-gap:.75rem;column-gap:.75rem}.md\:col-gap-4{grid-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.md\:col-gap-5{grid-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.md\:col-gap-6{grid-column-gap:1.5rem;-moz-column-gap:1.5rem;column-gap:1.5rem}.md\:col-gap-7{grid-column-gap:1.75rem;-moz-column-gap:1.75rem;column-gap:1.75rem}.md\:col-gap-8{grid-column-gap:2rem;-moz-column-gap:2rem;column-gap:2rem}.md\:col-gap-9{grid-column-gap:2.25rem;-moz-column-gap:2.25rem;column-gap:2.25rem}.md\:col-gap-10{grid-column-gap:2.5rem;-moz-column-gap:2.5rem;column-gap:2.5rem}.md\:col-gap-11{grid-column-gap:2.75rem;-moz-column-gap:2.75rem;column-gap:2.75rem}.md\:col-gap-12{grid-column-gap:3rem;-moz-column-gap:3rem;column-gap:3rem}.md\:col-gap-13{grid-column-gap:3.25rem;-moz-column-gap:3.25rem;column-gap:3.25rem}.md\:col-gap-14{grid-column-gap:3.5rem;-moz-column-gap:3.5rem;column-gap:3.5rem}.md\:col-gap-15{grid-column-gap:3.75rem;-moz-column-gap:3.75rem;column-gap:3.75rem}.md\:col-gap-16{grid-column-gap:4rem;-moz-column-gap:4rem;column-gap:4rem}.md\:col-gap-20{grid-column-gap:5rem;-moz-column-gap:5rem;column-gap:5rem}.md\:col-gap-24{grid-column-gap:6rem;-moz-column-gap:6rem;column-gap:6rem}.md\:col-gap-28{grid-column-gap:7rem;-moz-column-gap:7rem;column-gap:7rem}.md\:col-gap-32{grid-column-gap:8rem;-moz-column-gap:8rem;column-gap:8rem}.md\:col-gap-36{grid-column-gap:9rem;-moz-column-gap:9rem;column-gap:9rem}.md\:col-gap-40{grid-column-gap:10rem;-moz-column-gap:10rem;column-gap:10rem}.md\:col-gap-44{grid-column-gap:11rem;-moz-column-gap:11rem;column-gap:11rem}.md\:col-gap-48{grid-column-gap:12rem;-moz-column-gap:12rem;column-gap:12rem}.md\:col-gap-52{grid-column-gap:13rem;-moz-column-gap:13rem;column-gap:13rem}.md\:col-gap-56{grid-column-gap:14rem;-moz-column-gap:14rem;column-gap:14rem}.md\:col-gap-60{grid-column-gap:15rem;-moz-column-gap:15rem;column-gap:15rem}.md\:col-gap-64{grid-column-gap:16rem;-moz-column-gap:16rem;column-gap:16rem}.md\:col-gap-72{grid-column-gap:18rem;-moz-column-gap:18rem;column-gap:18rem}.md\:col-gap-80{grid-column-gap:20rem;-moz-column-gap:20rem;column-gap:20rem}.md\:col-gap-96{grid-column-gap:24rem;-moz-column-gap:24rem;column-gap:24rem}.md\:col-gap-px{grid-column-gap:1px;-moz-column-gap:1px;column-gap:1px}.md\:col-gap-0\.5{grid-column-gap:.125rem;-moz-column-gap:.125rem;column-gap:.125rem}.md\:col-gap-1\.5{grid-column-gap:.375rem;-moz-column-gap:.375rem;column-gap:.375rem}.md\:col-gap-2\.5{grid-column-gap:.625rem;-moz-column-gap:.625rem;column-gap:.625rem}.md\:col-gap-3\.5{grid-column-gap:.875rem;-moz-column-gap:.875rem;column-gap:.875rem}.md\:col-gap-1\/2{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.md\:col-gap-1\/3{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.md\:col-gap-2\/3{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.md\:col-gap-1\/4{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.md\:col-gap-2\/4{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.md\:col-gap-3\/4{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.md\:col-gap-1\/5{grid-column-gap:20%;-moz-column-gap:20%;column-gap:20%}.md\:col-gap-2\/5{grid-column-gap:40%;-moz-column-gap:40%;column-gap:40%}.md\:col-gap-3\/5{grid-column-gap:60%;-moz-column-gap:60%;column-gap:60%}.md\:col-gap-4\/5{grid-column-gap:80%;-moz-column-gap:80%;column-gap:80%}.md\:col-gap-1\/6{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.md\:col-gap-2\/6{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.md\:col-gap-3\/6{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.md\:col-gap-4\/6{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.md\:col-gap-5\/6{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.md\:col-gap-1\/12{grid-column-gap:8.333333%;-moz-column-gap:8.333333%;column-gap:8.333333%}.md\:col-gap-2\/12{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.md\:col-gap-3\/12{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.md\:col-gap-4\/12{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.md\:col-gap-5\/12{grid-column-gap:41.666667%;-moz-column-gap:41.666667%;column-gap:41.666667%}.md\:col-gap-6\/12{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.md\:col-gap-7\/12{grid-column-gap:58.333333%;-moz-column-gap:58.333333%;column-gap:58.333333%}.md\:col-gap-8\/12{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.md\:col-gap-9\/12{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.md\:col-gap-10\/12{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.md\:col-gap-11\/12{grid-column-gap:91.666667%;-moz-column-gap:91.666667%;column-gap:91.666667%}.md\:col-gap-full{grid-column-gap:100%;-moz-column-gap:100%;column-gap:100%}.md\:row-gap-0{grid-row-gap:0;row-gap:0}.md\:row-gap-1{grid-row-gap:.25rem;row-gap:.25rem}.md\:row-gap-2{grid-row-gap:.5rem;row-gap:.5rem}.md\:row-gap-3{grid-row-gap:.75rem;row-gap:.75rem}.md\:row-gap-4{grid-row-gap:1rem;row-gap:1rem}.md\:row-gap-5{grid-row-gap:1.25rem;row-gap:1.25rem}.md\:row-gap-6{grid-row-gap:1.5rem;row-gap:1.5rem}.md\:row-gap-7{grid-row-gap:1.75rem;row-gap:1.75rem}.md\:row-gap-8{grid-row-gap:2rem;row-gap:2rem}.md\:row-gap-9{grid-row-gap:2.25rem;row-gap:2.25rem}.md\:row-gap-10{grid-row-gap:2.5rem;row-gap:2.5rem}.md\:row-gap-11{grid-row-gap:2.75rem;row-gap:2.75rem}.md\:row-gap-12{grid-row-gap:3rem;row-gap:3rem}.md\:row-gap-13{grid-row-gap:3.25rem;row-gap:3.25rem}.md\:row-gap-14{grid-row-gap:3.5rem;row-gap:3.5rem}.md\:row-gap-15{grid-row-gap:3.75rem;row-gap:3.75rem}.md\:row-gap-16{grid-row-gap:4rem;row-gap:4rem}.md\:row-gap-20{grid-row-gap:5rem;row-gap:5rem}.md\:row-gap-24{grid-row-gap:6rem;row-gap:6rem}.md\:row-gap-28{grid-row-gap:7rem;row-gap:7rem}.md\:row-gap-32{grid-row-gap:8rem;row-gap:8rem}.md\:row-gap-36{grid-row-gap:9rem;row-gap:9rem}.md\:row-gap-40{grid-row-gap:10rem;row-gap:10rem}.md\:row-gap-44{grid-row-gap:11rem;row-gap:11rem}.md\:row-gap-48{grid-row-gap:12rem;row-gap:12rem}.md\:row-gap-52{grid-row-gap:13rem;row-gap:13rem}.md\:row-gap-56{grid-row-gap:14rem;row-gap:14rem}.md\:row-gap-60{grid-row-gap:15rem;row-gap:15rem}.md\:row-gap-64{grid-row-gap:16rem;row-gap:16rem}.md\:row-gap-72{grid-row-gap:18rem;row-gap:18rem}.md\:row-gap-80{grid-row-gap:20rem;row-gap:20rem}.md\:row-gap-96{grid-row-gap:24rem;row-gap:24rem}.md\:row-gap-px{grid-row-gap:1px;row-gap:1px}.md\:row-gap-0\.5{grid-row-gap:.125rem;row-gap:.125rem}.md\:row-gap-1\.5{grid-row-gap:.375rem;row-gap:.375rem}.md\:row-gap-2\.5{grid-row-gap:.625rem;row-gap:.625rem}.md\:row-gap-3\.5{grid-row-gap:.875rem;row-gap:.875rem}.md\:row-gap-1\/2{grid-row-gap:50%;row-gap:50%}.md\:row-gap-1\/3{grid-row-gap:33.333333%;row-gap:33.333333%}.md\:row-gap-2\/3{grid-row-gap:66.666667%;row-gap:66.666667%}.md\:row-gap-1\/4{grid-row-gap:25%;row-gap:25%}.md\:row-gap-2\/4{grid-row-gap:50%;row-gap:50%}.md\:row-gap-3\/4{grid-row-gap:75%;row-gap:75%}.md\:row-gap-1\/5{grid-row-gap:20%;row-gap:20%}.md\:row-gap-2\/5{grid-row-gap:40%;row-gap:40%}.md\:row-gap-3\/5{grid-row-gap:60%;row-gap:60%}.md\:row-gap-4\/5{grid-row-gap:80%;row-gap:80%}.md\:row-gap-1\/6{grid-row-gap:16.666667%;row-gap:16.666667%}.md\:row-gap-2\/6{grid-row-gap:33.333333%;row-gap:33.333333%}.md\:row-gap-3\/6{grid-row-gap:50%;row-gap:50%}.md\:row-gap-4\/6{grid-row-gap:66.666667%;row-gap:66.666667%}.md\:row-gap-5\/6{grid-row-gap:83.333333%;row-gap:83.333333%}.md\:row-gap-1\/12{grid-row-gap:8.333333%;row-gap:8.333333%}.md\:row-gap-2\/12{grid-row-gap:16.666667%;row-gap:16.666667%}.md\:row-gap-3\/12{grid-row-gap:25%;row-gap:25%}.md\:row-gap-4\/12{grid-row-gap:33.333333%;row-gap:33.333333%}.md\:row-gap-5\/12{grid-row-gap:41.666667%;row-gap:41.666667%}.md\:row-gap-6\/12{grid-row-gap:50%;row-gap:50%}.md\:row-gap-7\/12{grid-row-gap:58.333333%;row-gap:58.333333%}.md\:row-gap-8\/12{grid-row-gap:66.666667%;row-gap:66.666667%}.md\:row-gap-9\/12{grid-row-gap:75%;row-gap:75%}.md\:row-gap-10\/12{grid-row-gap:83.333333%;row-gap:83.333333%}.md\:row-gap-11\/12{grid-row-gap:91.666667%;row-gap:91.666667%}.md\:row-gap-full{grid-row-gap:100%;row-gap:100%}.md\:grid-flow-row{grid-auto-flow:row}.md\:grid-flow-col{grid-auto-flow:column}.md\:grid-flow-row-dense{grid-auto-flow:row dense}.md\:grid-flow-col-dense{grid-auto-flow:column dense}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.md\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.md\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.md\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.md\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.md\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.md\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.md\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.md\:grid-cols-none{grid-template-columns:none}.md\:col-auto{grid-column:auto}.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-2{grid-column:span 2/span 2}.md\:col-span-3{grid-column:span 3/span 3}.md\:col-span-4{grid-column:span 4/span 4}.md\:col-span-5{grid-column:span 5/span 5}.md\:col-span-6{grid-column:span 6/span 6}.md\:col-span-7{grid-column:span 7/span 7}.md\:col-span-8{grid-column:span 8/span 8}.md\:col-span-9{grid-column:span 9/span 9}.md\:col-span-10{grid-column:span 10/span 10}.md\:col-span-11{grid-column:span 11/span 11}.md\:col-span-12{grid-column:span 12/span 12}.md\:col-start-1{grid-column-start:1}.md\:col-start-2{grid-column-start:2}.md\:col-start-3{grid-column-start:3}.md\:col-start-4{grid-column-start:4}.md\:col-start-5{grid-column-start:5}.md\:col-start-6{grid-column-start:6}.md\:col-start-7{grid-column-start:7}.md\:col-start-8{grid-column-start:8}.md\:col-start-9{grid-column-start:9}.md\:col-start-10{grid-column-start:10}.md\:col-start-11{grid-column-start:11}.md\:col-start-12{grid-column-start:12}.md\:col-start-13{grid-column-start:13}.md\:col-start-auto{grid-column-start:auto}.md\:col-end-1{grid-column-end:1}.md\:col-end-2{grid-column-end:2}.md\:col-end-3{grid-column-end:3}.md\:col-end-4{grid-column-end:4}.md\:col-end-5{grid-column-end:5}.md\:col-end-6{grid-column-end:6}.md\:col-end-7{grid-column-end:7}.md\:col-end-8{grid-column-end:8}.md\:col-end-9{grid-column-end:9}.md\:col-end-10{grid-column-end:10}.md\:col-end-11{grid-column-end:11}.md\:col-end-12{grid-column-end:12}.md\:col-end-13{grid-column-end:13}.md\:col-end-auto{grid-column-end:auto}.md\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))}.md\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.md\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.md\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.md\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))}.md\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))}.md\:grid-rows-none{grid-template-rows:none}.md\:row-auto{grid-row:auto}.md\:row-span-1{grid-row:span 1/span 1}.md\:row-span-2{grid-row:span 2/span 2}.md\:row-span-3{grid-row:span 3/span 3}.md\:row-span-4{grid-row:span 4/span 4}.md\:row-span-5{grid-row:span 5/span 5}.md\:row-span-6{grid-row:span 6/span 6}.md\:row-start-1{grid-row-start:1}.md\:row-start-2{grid-row-start:2}.md\:row-start-3{grid-row-start:3}.md\:row-start-4{grid-row-start:4}.md\:row-start-5{grid-row-start:5}.md\:row-start-6{grid-row-start:6}.md\:row-start-7{grid-row-start:7}.md\:row-start-auto{grid-row-start:auto}.md\:row-end-1{grid-row-end:1}.md\:row-end-2{grid-row-end:2}.md\:row-end-3{grid-row-end:3}.md\:row-end-4{grid-row-end:4}.md\:row-end-5{grid-row-end:5}.md\:row-end-6{grid-row-end:6}.md\:row-end-7{grid-row-end:7}.md\:row-end-auto{grid-row-end:auto}.md\:transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.md\:transform-none{transform:none}.md\:origin-center{transform-origin:center}.md\:origin-top{transform-origin:top}.md\:origin-top-right{transform-origin:top right}.md\:origin-right{transform-origin:right}.md\:origin-bottom-right{transform-origin:bottom right}.md\:origin-bottom{transform-origin:bottom}.md\:origin-bottom-left{transform-origin:bottom left}.md\:origin-left{transform-origin:left}.md\:origin-top-left{transform-origin:top left}.md\:scale-0{--transform-scale-x:0;--transform-scale-y:0}.md\:scale-50{--transform-scale-x:.5;--transform-scale-y:.5}.md\:scale-75{--transform-scale-x:.75;--transform-scale-y:.75}.md\:scale-90{--transform-scale-x:.9;--transform-scale-y:.9}.md\:scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.md\:scale-100{--transform-scale-x:1;--transform-scale-y:1}.md\:scale-105{--transform-scale-x:1.05;--transform-scale-y:1.05}.md\:scale-110{--transform-scale-x:1.1;--transform-scale-y:1.1}.md\:scale-125{--transform-scale-x:1.25;--transform-scale-y:1.25}.md\:scale-150{--transform-scale-x:1.5;--transform-scale-y:1.5}.md\:scale-x-0{--transform-scale-x:0}.md\:scale-x-50{--transform-scale-x:.5}.md\:scale-x-75{--transform-scale-x:.75}.md\:scale-x-90{--transform-scale-x:.9}.md\:scale-x-95{--transform-scale-x:.95}.md\:scale-x-100{--transform-scale-x:1}.md\:scale-x-105{--transform-scale-x:1.05}.md\:scale-x-110{--transform-scale-x:1.1}.md\:scale-x-125{--transform-scale-x:1.25}.md\:scale-x-150{--transform-scale-x:1.5}.md\:scale-y-0{--transform-scale-y:0}.md\:scale-y-50{--transform-scale-y:.5}.md\:scale-y-75{--transform-scale-y:.75}.md\:scale-y-90{--transform-scale-y:.9}.md\:scale-y-95{--transform-scale-y:.95}.md\:scale-y-100{--transform-scale-y:1}.md\:scale-y-105{--transform-scale-y:1.05}.md\:scale-y-110{--transform-scale-y:1.1}.md\:scale-y-125{--transform-scale-y:1.25}.md\:scale-y-150{--transform-scale-y:1.5}.md\:hover\:scale-0:hover{--transform-scale-x:0;--transform-scale-y:0}.md\:hover\:scale-50:hover{--transform-scale-x:.5;--transform-scale-y:.5}.md\:hover\:scale-75:hover{--transform-scale-x:.75;--transform-scale-y:.75}.md\:hover\:scale-90:hover{--transform-scale-x:.9;--transform-scale-y:.9}.md\:hover\:scale-95:hover{--transform-scale-x:.95;--transform-scale-y:.95}.md\:hover\:scale-100:hover{--transform-scale-x:1;--transform-scale-y:1}.md\:hover\:scale-105:hover{--transform-scale-x:1.05;--transform-scale-y:1.05}.md\:hover\:scale-110:hover{--transform-scale-x:1.1;--transform-scale-y:1.1}.md\:hover\:scale-125:hover{--transform-scale-x:1.25;--transform-scale-y:1.25}.md\:hover\:scale-150:hover{--transform-scale-x:1.5;--transform-scale-y:1.5}.md\:hover\:scale-x-0:hover{--transform-scale-x:0}.md\:hover\:scale-x-50:hover{--transform-scale-x:.5}.md\:hover\:scale-x-75:hover{--transform-scale-x:.75}.md\:hover\:scale-x-90:hover{--transform-scale-x:.9}.md\:hover\:scale-x-95:hover{--transform-scale-x:.95}.md\:hover\:scale-x-100:hover{--transform-scale-x:1}.md\:hover\:scale-x-105:hover{--transform-scale-x:1.05}.md\:hover\:scale-x-110:hover{--transform-scale-x:1.1}.md\:hover\:scale-x-125:hover{--transform-scale-x:1.25}.md\:hover\:scale-x-150:hover{--transform-scale-x:1.5}.md\:hover\:scale-y-0:hover{--transform-scale-y:0}.md\:hover\:scale-y-50:hover{--transform-scale-y:.5}.md\:hover\:scale-y-75:hover{--transform-scale-y:.75}.md\:hover\:scale-y-90:hover{--transform-scale-y:.9}.md\:hover\:scale-y-95:hover{--transform-scale-y:.95}.md\:hover\:scale-y-100:hover{--transform-scale-y:1}.md\:hover\:scale-y-105:hover{--transform-scale-y:1.05}.md\:hover\:scale-y-110:hover{--transform-scale-y:1.1}.md\:hover\:scale-y-125:hover{--transform-scale-y:1.25}.md\:hover\:scale-y-150:hover{--transform-scale-y:1.5}.md\:focus\:scale-0:focus{--transform-scale-x:0;--transform-scale-y:0}.md\:focus\:scale-50:focus{--transform-scale-x:.5;--transform-scale-y:.5}.md\:focus\:scale-75:focus{--transform-scale-x:.75;--transform-scale-y:.75}.md\:focus\:scale-90:focus{--transform-scale-x:.9;--transform-scale-y:.9}.md\:focus\:scale-95:focus{--transform-scale-x:.95;--transform-scale-y:.95}.md\:focus\:scale-100:focus{--transform-scale-x:1;--transform-scale-y:1}.md\:focus\:scale-105:focus{--transform-scale-x:1.05;--transform-scale-y:1.05}.md\:focus\:scale-110:focus{--transform-scale-x:1.1;--transform-scale-y:1.1}.md\:focus\:scale-125:focus{--transform-scale-x:1.25;--transform-scale-y:1.25}.md\:focus\:scale-150:focus{--transform-scale-x:1.5;--transform-scale-y:1.5}.md\:focus\:scale-x-0:focus{--transform-scale-x:0}.md\:focus\:scale-x-50:focus{--transform-scale-x:.5}.md\:focus\:scale-x-75:focus{--transform-scale-x:.75}.md\:focus\:scale-x-90:focus{--transform-scale-x:.9}.md\:focus\:scale-x-95:focus{--transform-scale-x:.95}.md\:focus\:scale-x-100:focus{--transform-scale-x:1}.md\:focus\:scale-x-105:focus{--transform-scale-x:1.05}.md\:focus\:scale-x-110:focus{--transform-scale-x:1.1}.md\:focus\:scale-x-125:focus{--transform-scale-x:1.25}.md\:focus\:scale-x-150:focus{--transform-scale-x:1.5}.md\:focus\:scale-y-0:focus{--transform-scale-y:0}.md\:focus\:scale-y-50:focus{--transform-scale-y:.5}.md\:focus\:scale-y-75:focus{--transform-scale-y:.75}.md\:focus\:scale-y-90:focus{--transform-scale-y:.9}.md\:focus\:scale-y-95:focus{--transform-scale-y:.95}.md\:focus\:scale-y-100:focus{--transform-scale-y:1}.md\:focus\:scale-y-105:focus{--transform-scale-y:1.05}.md\:focus\:scale-y-110:focus{--transform-scale-y:1.1}.md\:focus\:scale-y-125:focus{--transform-scale-y:1.25}.md\:focus\:scale-y-150:focus{--transform-scale-y:1.5}.md\:rotate-0{--transform-rotate:0}.md\:rotate-45{--transform-rotate:45deg}.md\:rotate-90{--transform-rotate:90deg}.md\:rotate-180{--transform-rotate:180deg}.md\:-rotate-180{--transform-rotate:-180deg}.md\:-rotate-90{--transform-rotate:-90deg}.md\:-rotate-45{--transform-rotate:-45deg}.md\:hover\:rotate-0:hover{--transform-rotate:0}.md\:hover\:rotate-45:hover{--transform-rotate:45deg}.md\:hover\:rotate-90:hover{--transform-rotate:90deg}.md\:hover\:rotate-180:hover{--transform-rotate:180deg}.md\:hover\:-rotate-180:hover{--transform-rotate:-180deg}.md\:hover\:-rotate-90:hover{--transform-rotate:-90deg}.md\:hover\:-rotate-45:hover{--transform-rotate:-45deg}.md\:focus\:rotate-0:focus{--transform-rotate:0}.md\:focus\:rotate-45:focus{--transform-rotate:45deg}.md\:focus\:rotate-90:focus{--transform-rotate:90deg}.md\:focus\:rotate-180:focus{--transform-rotate:180deg}.md\:focus\:-rotate-180:focus{--transform-rotate:-180deg}.md\:focus\:-rotate-90:focus{--transform-rotate:-90deg}.md\:focus\:-rotate-45:focus{--transform-rotate:-45deg}.md\:translate-x-0{--transform-translate-x:0}.md\:translate-x-1{--transform-translate-x:0.25rem}.md\:translate-x-2{--transform-translate-x:0.5rem}.md\:translate-x-3{--transform-translate-x:0.75rem}.md\:translate-x-4{--transform-translate-x:1rem}.md\:translate-x-5{--transform-translate-x:1.25rem}.md\:translate-x-6{--transform-translate-x:1.5rem}.md\:translate-x-7{--transform-translate-x:1.75rem}.md\:translate-x-8{--transform-translate-x:2rem}.md\:translate-x-9{--transform-translate-x:2.25rem}.md\:translate-x-10{--transform-translate-x:2.5rem}.md\:translate-x-11{--transform-translate-x:2.75rem}.md\:translate-x-12{--transform-translate-x:3rem}.md\:translate-x-13{--transform-translate-x:3.25rem}.md\:translate-x-14{--transform-translate-x:3.5rem}.md\:translate-x-15{--transform-translate-x:3.75rem}.md\:translate-x-16{--transform-translate-x:4rem}.md\:translate-x-20{--transform-translate-x:5rem}.md\:translate-x-24{--transform-translate-x:6rem}.md\:translate-x-28{--transform-translate-x:7rem}.md\:translate-x-32{--transform-translate-x:8rem}.md\:translate-x-36{--transform-translate-x:9rem}.md\:translate-x-40{--transform-translate-x:10rem}.md\:translate-x-44{--transform-translate-x:11rem}.md\:translate-x-48{--transform-translate-x:12rem}.md\:translate-x-52{--transform-translate-x:13rem}.md\:translate-x-56{--transform-translate-x:14rem}.md\:translate-x-60{--transform-translate-x:15rem}.md\:translate-x-64{--transform-translate-x:16rem}.md\:translate-x-72{--transform-translate-x:18rem}.md\:translate-x-80{--transform-translate-x:20rem}.md\:translate-x-96{--transform-translate-x:24rem}.md\:translate-x-px{--transform-translate-x:1px}.md\:translate-x-0\.5{--transform-translate-x:0.125rem}.md\:translate-x-1\.5{--transform-translate-x:0.375rem}.md\:translate-x-2\.5{--transform-translate-x:0.625rem}.md\:translate-x-3\.5{--transform-translate-x:0.875rem}.md\:translate-x-1\/2{--transform-translate-x:50%}.md\:translate-x-1\/3{--transform-translate-x:33.333333%}.md\:translate-x-2\/3{--transform-translate-x:66.666667%}.md\:translate-x-1\/4{--transform-translate-x:25%}.md\:translate-x-2\/4{--transform-translate-x:50%}.md\:translate-x-3\/4{--transform-translate-x:75%}.md\:translate-x-1\/5{--transform-translate-x:20%}.md\:translate-x-2\/5{--transform-translate-x:40%}.md\:translate-x-3\/5{--transform-translate-x:60%}.md\:translate-x-4\/5{--transform-translate-x:80%}.md\:translate-x-1\/6{--transform-translate-x:16.666667%}.md\:translate-x-2\/6{--transform-translate-x:33.333333%}.md\:translate-x-3\/6{--transform-translate-x:50%}.md\:translate-x-4\/6{--transform-translate-x:66.666667%}.md\:translate-x-5\/6{--transform-translate-x:83.333333%}.md\:translate-x-1\/12{--transform-translate-x:8.333333%}.md\:translate-x-2\/12{--transform-translate-x:16.666667%}.md\:translate-x-3\/12{--transform-translate-x:25%}.md\:translate-x-4\/12{--transform-translate-x:33.333333%}.md\:translate-x-5\/12{--transform-translate-x:41.666667%}.md\:translate-x-6\/12{--transform-translate-x:50%}.md\:translate-x-7\/12{--transform-translate-x:58.333333%}.md\:translate-x-8\/12{--transform-translate-x:66.666667%}.md\:translate-x-9\/12{--transform-translate-x:75%}.md\:translate-x-10\/12{--transform-translate-x:83.333333%}.md\:translate-x-11\/12{--transform-translate-x:91.666667%}.md\:translate-x-full{--transform-translate-x:100%}.md\:-translate-x-1{--transform-translate-x:-0.25rem}.md\:-translate-x-2{--transform-translate-x:-0.5rem}.md\:-translate-x-3{--transform-translate-x:-0.75rem}.md\:-translate-x-4{--transform-translate-x:-1rem}.md\:-translate-x-5{--transform-translate-x:-1.25rem}.md\:-translate-x-6{--transform-translate-x:-1.5rem}.md\:-translate-x-7{--transform-translate-x:-1.75rem}.md\:-translate-x-8{--transform-translate-x:-2rem}.md\:-translate-x-9{--transform-translate-x:-2.25rem}.md\:-translate-x-10{--transform-translate-x:-2.5rem}.md\:-translate-x-11{--transform-translate-x:-2.75rem}.md\:-translate-x-12{--transform-translate-x:-3rem}.md\:-translate-x-13{--transform-translate-x:-3.25rem}.md\:-translate-x-14{--transform-translate-x:-3.5rem}.md\:-translate-x-15{--transform-translate-x:-3.75rem}.md\:-translate-x-16{--transform-translate-x:-4rem}.md\:-translate-x-20{--transform-translate-x:-5rem}.md\:-translate-x-24{--transform-translate-x:-6rem}.md\:-translate-x-28{--transform-translate-x:-7rem}.md\:-translate-x-32{--transform-translate-x:-8rem}.md\:-translate-x-36{--transform-translate-x:-9rem}.md\:-translate-x-40{--transform-translate-x:-10rem}.md\:-translate-x-44{--transform-translate-x:-11rem}.md\:-translate-x-48{--transform-translate-x:-12rem}.md\:-translate-x-52{--transform-translate-x:-13rem}.md\:-translate-x-56{--transform-translate-x:-14rem}.md\:-translate-x-60{--transform-translate-x:-15rem}.md\:-translate-x-64{--transform-translate-x:-16rem}.md\:-translate-x-72{--transform-translate-x:-18rem}.md\:-translate-x-80{--transform-translate-x:-20rem}.md\:-translate-x-96{--transform-translate-x:-24rem}.md\:-translate-x-px{--transform-translate-x:-1px}.md\:-translate-x-0\.5{--transform-translate-x:-0.125rem}.md\:-translate-x-1\.5{--transform-translate-x:-0.375rem}.md\:-translate-x-2\.5{--transform-translate-x:-0.625rem}.md\:-translate-x-3\.5{--transform-translate-x:-0.875rem}.md\:-translate-x-1\/2{--transform-translate-x:-50%}.md\:-translate-x-1\/3{--transform-translate-x:-33.33333%}.md\:-translate-x-2\/3{--transform-translate-x:-66.66667%}.md\:-translate-x-1\/4{--transform-translate-x:-25%}.md\:-translate-x-2\/4{--transform-translate-x:-50%}.md\:-translate-x-3\/4{--transform-translate-x:-75%}.md\:-translate-x-1\/5{--transform-translate-x:-20%}.md\:-translate-x-2\/5{--transform-translate-x:-40%}.md\:-translate-x-3\/5{--transform-translate-x:-60%}.md\:-translate-x-4\/5{--transform-translate-x:-80%}.md\:-translate-x-1\/6{--transform-translate-x:-16.66667%}.md\:-translate-x-2\/6{--transform-translate-x:-33.33333%}.md\:-translate-x-3\/6{--transform-translate-x:-50%}.md\:-translate-x-4\/6{--transform-translate-x:-66.66667%}.md\:-translate-x-5\/6{--transform-translate-x:-83.33333%}.md\:-translate-x-1\/12{--transform-translate-x:-8.33333%}.md\:-translate-x-2\/12{--transform-translate-x:-16.66667%}.md\:-translate-x-3\/12{--transform-translate-x:-25%}.md\:-translate-x-4\/12{--transform-translate-x:-33.33333%}.md\:-translate-x-5\/12{--transform-translate-x:-41.66667%}.md\:-translate-x-6\/12{--transform-translate-x:-50%}.md\:-translate-x-7\/12{--transform-translate-x:-58.33333%}.md\:-translate-x-8\/12{--transform-translate-x:-66.66667%}.md\:-translate-x-9\/12{--transform-translate-x:-75%}.md\:-translate-x-10\/12{--transform-translate-x:-83.33333%}.md\:-translate-x-11\/12{--transform-translate-x:-91.66667%}.md\:-translate-x-full{--transform-translate-x:-100%}.md\:translate-y-0{--transform-translate-y:0}.md\:translate-y-1{--transform-translate-y:0.25rem}.md\:translate-y-2{--transform-translate-y:0.5rem}.md\:translate-y-3{--transform-translate-y:0.75rem}.md\:translate-y-4{--transform-translate-y:1rem}.md\:translate-y-5{--transform-translate-y:1.25rem}.md\:translate-y-6{--transform-translate-y:1.5rem}.md\:translate-y-7{--transform-translate-y:1.75rem}.md\:translate-y-8{--transform-translate-y:2rem}.md\:translate-y-9{--transform-translate-y:2.25rem}.md\:translate-y-10{--transform-translate-y:2.5rem}.md\:translate-y-11{--transform-translate-y:2.75rem}.md\:translate-y-12{--transform-translate-y:3rem}.md\:translate-y-13{--transform-translate-y:3.25rem}.md\:translate-y-14{--transform-translate-y:3.5rem}.md\:translate-y-15{--transform-translate-y:3.75rem}.md\:translate-y-16{--transform-translate-y:4rem}.md\:translate-y-20{--transform-translate-y:5rem}.md\:translate-y-24{--transform-translate-y:6rem}.md\:translate-y-28{--transform-translate-y:7rem}.md\:translate-y-32{--transform-translate-y:8rem}.md\:translate-y-36{--transform-translate-y:9rem}.md\:translate-y-40{--transform-translate-y:10rem}.md\:translate-y-44{--transform-translate-y:11rem}.md\:translate-y-48{--transform-translate-y:12rem}.md\:translate-y-52{--transform-translate-y:13rem}.md\:translate-y-56{--transform-translate-y:14rem}.md\:translate-y-60{--transform-translate-y:15rem}.md\:translate-y-64{--transform-translate-y:16rem}.md\:translate-y-72{--transform-translate-y:18rem}.md\:translate-y-80{--transform-translate-y:20rem}.md\:translate-y-96{--transform-translate-y:24rem}.md\:translate-y-px{--transform-translate-y:1px}.md\:translate-y-0\.5{--transform-translate-y:0.125rem}.md\:translate-y-1\.5{--transform-translate-y:0.375rem}.md\:translate-y-2\.5{--transform-translate-y:0.625rem}.md\:translate-y-3\.5{--transform-translate-y:0.875rem}.md\:translate-y-1\/2{--transform-translate-y:50%}.md\:translate-y-1\/3{--transform-translate-y:33.333333%}.md\:translate-y-2\/3{--transform-translate-y:66.666667%}.md\:translate-y-1\/4{--transform-translate-y:25%}.md\:translate-y-2\/4{--transform-translate-y:50%}.md\:translate-y-3\/4{--transform-translate-y:75%}.md\:translate-y-1\/5{--transform-translate-y:20%}.md\:translate-y-2\/5{--transform-translate-y:40%}.md\:translate-y-3\/5{--transform-translate-y:60%}.md\:translate-y-4\/5{--transform-translate-y:80%}.md\:translate-y-1\/6{--transform-translate-y:16.666667%}.md\:translate-y-2\/6{--transform-translate-y:33.333333%}.md\:translate-y-3\/6{--transform-translate-y:50%}.md\:translate-y-4\/6{--transform-translate-y:66.666667%}.md\:translate-y-5\/6{--transform-translate-y:83.333333%}.md\:translate-y-1\/12{--transform-translate-y:8.333333%}.md\:translate-y-2\/12{--transform-translate-y:16.666667%}.md\:translate-y-3\/12{--transform-translate-y:25%}.md\:translate-y-4\/12{--transform-translate-y:33.333333%}.md\:translate-y-5\/12{--transform-translate-y:41.666667%}.md\:translate-y-6\/12{--transform-translate-y:50%}.md\:translate-y-7\/12{--transform-translate-y:58.333333%}.md\:translate-y-8\/12{--transform-translate-y:66.666667%}.md\:translate-y-9\/12{--transform-translate-y:75%}.md\:translate-y-10\/12{--transform-translate-y:83.333333%}.md\:translate-y-11\/12{--transform-translate-y:91.666667%}.md\:translate-y-full{--transform-translate-y:100%}.md\:-translate-y-1{--transform-translate-y:-0.25rem}.md\:-translate-y-2{--transform-translate-y:-0.5rem}.md\:-translate-y-3{--transform-translate-y:-0.75rem}.md\:-translate-y-4{--transform-translate-y:-1rem}.md\:-translate-y-5{--transform-translate-y:-1.25rem}.md\:-translate-y-6{--transform-translate-y:-1.5rem}.md\:-translate-y-7{--transform-translate-y:-1.75rem}.md\:-translate-y-8{--transform-translate-y:-2rem}.md\:-translate-y-9{--transform-translate-y:-2.25rem}.md\:-translate-y-10{--transform-translate-y:-2.5rem}.md\:-translate-y-11{--transform-translate-y:-2.75rem}.md\:-translate-y-12{--transform-translate-y:-3rem}.md\:-translate-y-13{--transform-translate-y:-3.25rem}.md\:-translate-y-14{--transform-translate-y:-3.5rem}.md\:-translate-y-15{--transform-translate-y:-3.75rem}.md\:-translate-y-16{--transform-translate-y:-4rem}.md\:-translate-y-20{--transform-translate-y:-5rem}.md\:-translate-y-24{--transform-translate-y:-6rem}.md\:-translate-y-28{--transform-translate-y:-7rem}.md\:-translate-y-32{--transform-translate-y:-8rem}.md\:-translate-y-36{--transform-translate-y:-9rem}.md\:-translate-y-40{--transform-translate-y:-10rem}.md\:-translate-y-44{--transform-translate-y:-11rem}.md\:-translate-y-48{--transform-translate-y:-12rem}.md\:-translate-y-52{--transform-translate-y:-13rem}.md\:-translate-y-56{--transform-translate-y:-14rem}.md\:-translate-y-60{--transform-translate-y:-15rem}.md\:-translate-y-64{--transform-translate-y:-16rem}.md\:-translate-y-72{--transform-translate-y:-18rem}.md\:-translate-y-80{--transform-translate-y:-20rem}.md\:-translate-y-96{--transform-translate-y:-24rem}.md\:-translate-y-px{--transform-translate-y:-1px}.md\:-translate-y-0\.5{--transform-translate-y:-0.125rem}.md\:-translate-y-1\.5{--transform-translate-y:-0.375rem}.md\:-translate-y-2\.5{--transform-translate-y:-0.625rem}.md\:-translate-y-3\.5{--transform-translate-y:-0.875rem}.md\:-translate-y-1\/2{--transform-translate-y:-50%}.md\:-translate-y-1\/3{--transform-translate-y:-33.33333%}.md\:-translate-y-2\/3{--transform-translate-y:-66.66667%}.md\:-translate-y-1\/4{--transform-translate-y:-25%}.md\:-translate-y-2\/4{--transform-translate-y:-50%}.md\:-translate-y-3\/4{--transform-translate-y:-75%}.md\:-translate-y-1\/5{--transform-translate-y:-20%}.md\:-translate-y-2\/5{--transform-translate-y:-40%}.md\:-translate-y-3\/5{--transform-translate-y:-60%}.md\:-translate-y-4\/5{--transform-translate-y:-80%}.md\:-translate-y-1\/6{--transform-translate-y:-16.66667%}.md\:-translate-y-2\/6{--transform-translate-y:-33.33333%}.md\:-translate-y-3\/6{--transform-translate-y:-50%}.md\:-translate-y-4\/6{--transform-translate-y:-66.66667%}.md\:-translate-y-5\/6{--transform-translate-y:-83.33333%}.md\:-translate-y-1\/12{--transform-translate-y:-8.33333%}.md\:-translate-y-2\/12{--transform-translate-y:-16.66667%}.md\:-translate-y-3\/12{--transform-translate-y:-25%}.md\:-translate-y-4\/12{--transform-translate-y:-33.33333%}.md\:-translate-y-5\/12{--transform-translate-y:-41.66667%}.md\:-translate-y-6\/12{--transform-translate-y:-50%}.md\:-translate-y-7\/12{--transform-translate-y:-58.33333%}.md\:-translate-y-8\/12{--transform-translate-y:-66.66667%}.md\:-translate-y-9\/12{--transform-translate-y:-75%}.md\:-translate-y-10\/12{--transform-translate-y:-83.33333%}.md\:-translate-y-11\/12{--transform-translate-y:-91.66667%}.md\:-translate-y-full{--transform-translate-y:-100%}.md\:hover\:translate-x-0:hover{--transform-translate-x:0}.md\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem}.md\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem}.md\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem}.md\:hover\:translate-x-4:hover{--transform-translate-x:1rem}.md\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem}.md\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem}.md\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem}.md\:hover\:translate-x-8:hover{--transform-translate-x:2rem}.md\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem}.md\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem}.md\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem}.md\:hover\:translate-x-12:hover{--transform-translate-x:3rem}.md\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem}.md\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem}.md\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem}.md\:hover\:translate-x-16:hover{--transform-translate-x:4rem}.md\:hover\:translate-x-20:hover{--transform-translate-x:5rem}.md\:hover\:translate-x-24:hover{--transform-translate-x:6rem}.md\:hover\:translate-x-28:hover{--transform-translate-x:7rem}.md\:hover\:translate-x-32:hover{--transform-translate-x:8rem}.md\:hover\:translate-x-36:hover{--transform-translate-x:9rem}.md\:hover\:translate-x-40:hover{--transform-translate-x:10rem}.md\:hover\:translate-x-44:hover{--transform-translate-x:11rem}.md\:hover\:translate-x-48:hover{--transform-translate-x:12rem}.md\:hover\:translate-x-52:hover{--transform-translate-x:13rem}.md\:hover\:translate-x-56:hover{--transform-translate-x:14rem}.md\:hover\:translate-x-60:hover{--transform-translate-x:15rem}.md\:hover\:translate-x-64:hover{--transform-translate-x:16rem}.md\:hover\:translate-x-72:hover{--transform-translate-x:18rem}.md\:hover\:translate-x-80:hover{--transform-translate-x:20rem}.md\:hover\:translate-x-96:hover{--transform-translate-x:24rem}.md\:hover\:translate-x-px:hover{--transform-translate-x:1px}.md\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem}.md\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem}.md\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem}.md\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem}.md\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%}.md\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%}.md\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%}.md\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%}.md\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%}.md\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%}.md\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%}.md\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%}.md\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%}.md\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%}.md\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%}.md\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%}.md\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%}.md\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%}.md\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%}.md\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%}.md\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%}.md\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%}.md\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%}.md\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%}.md\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%}.md\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%}.md\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%}.md\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%}.md\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%}.md\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%}.md\:hover\:translate-x-full:hover{--transform-translate-x:100%}.md\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem}.md\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem}.md\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem}.md\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem}.md\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem}.md\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem}.md\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem}.md\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem}.md\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem}.md\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem}.md\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem}.md\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem}.md\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem}.md\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem}.md\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem}.md\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem}.md\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem}.md\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem}.md\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem}.md\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem}.md\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem}.md\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem}.md\:hover\:-translate-x-44:hover{--transform-translate-x:-11rem}.md\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem}.md\:hover\:-translate-x-52:hover{--transform-translate-x:-13rem}.md\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem}.md\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem}.md\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem}.md\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem}.md\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem}.md\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem}.md\:hover\:-translate-x-px:hover{--transform-translate-x:-1px}.md\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem}.md\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem}.md\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem}.md\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem}.md\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%}.md\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%}.md\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%}.md\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%}.md\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%}.md\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%}.md\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%}.md\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%}.md\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%}.md\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%}.md\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%}.md\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%}.md\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%}.md\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%}.md\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%}.md\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%}.md\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%}.md\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%}.md\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%}.md\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%}.md\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%}.md\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%}.md\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%}.md\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%}.md\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%}.md\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%}.md\:hover\:-translate-x-full:hover{--transform-translate-x:-100%}.md\:hover\:translate-y-0:hover{--transform-translate-y:0}.md\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem}.md\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem}.md\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem}.md\:hover\:translate-y-4:hover{--transform-translate-y:1rem}.md\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem}.md\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem}.md\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem}.md\:hover\:translate-y-8:hover{--transform-translate-y:2rem}.md\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem}.md\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem}.md\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem}.md\:hover\:translate-y-12:hover{--transform-translate-y:3rem}.md\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem}.md\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem}.md\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem}.md\:hover\:translate-y-16:hover{--transform-translate-y:4rem}.md\:hover\:translate-y-20:hover{--transform-translate-y:5rem}.md\:hover\:translate-y-24:hover{--transform-translate-y:6rem}.md\:hover\:translate-y-28:hover{--transform-translate-y:7rem}.md\:hover\:translate-y-32:hover{--transform-translate-y:8rem}.md\:hover\:translate-y-36:hover{--transform-translate-y:9rem}.md\:hover\:translate-y-40:hover{--transform-translate-y:10rem}.md\:hover\:translate-y-44:hover{--transform-translate-y:11rem}.md\:hover\:translate-y-48:hover{--transform-translate-y:12rem}.md\:hover\:translate-y-52:hover{--transform-translate-y:13rem}.md\:hover\:translate-y-56:hover{--transform-translate-y:14rem}.md\:hover\:translate-y-60:hover{--transform-translate-y:15rem}.md\:hover\:translate-y-64:hover{--transform-translate-y:16rem}.md\:hover\:translate-y-72:hover{--transform-translate-y:18rem}.md\:hover\:translate-y-80:hover{--transform-translate-y:20rem}.md\:hover\:translate-y-96:hover{--transform-translate-y:24rem}.md\:hover\:translate-y-px:hover{--transform-translate-y:1px}.md\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem}.md\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem}.md\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem}.md\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem}.md\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%}.md\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%}.md\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%}.md\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%}.md\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%}.md\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%}.md\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%}.md\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%}.md\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%}.md\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%}.md\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%}.md\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%}.md\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%}.md\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%}.md\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%}.md\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%}.md\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%}.md\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%}.md\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%}.md\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%}.md\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%}.md\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%}.md\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%}.md\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%}.md\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%}.md\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%}.md\:hover\:translate-y-full:hover{--transform-translate-y:100%}.md\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem}.md\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem}.md\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem}.md\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem}.md\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem}.md\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem}.md\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem}.md\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem}.md\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem}.md\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem}.md\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem}.md\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem}.md\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem}.md\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem}.md\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem}.md\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem}.md\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem}.md\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem}.md\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem}.md\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem}.md\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem}.md\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem}.md\:hover\:-translate-y-44:hover{--transform-translate-y:-11rem}.md\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem}.md\:hover\:-translate-y-52:hover{--transform-translate-y:-13rem}.md\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem}.md\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem}.md\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem}.md\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem}.md\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem}.md\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem}.md\:hover\:-translate-y-px:hover{--transform-translate-y:-1px}.md\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem}.md\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem}.md\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem}.md\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem}.md\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%}.md\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%}.md\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%}.md\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%}.md\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%}.md\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%}.md\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%}.md\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%}.md\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%}.md\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%}.md\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%}.md\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%}.md\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%}.md\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%}.md\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%}.md\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%}.md\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%}.md\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%}.md\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%}.md\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%}.md\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%}.md\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%}.md\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%}.md\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%}.md\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%}.md\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%}.md\:hover\:-translate-y-full:hover{--transform-translate-y:-100%}.md\:focus\:translate-x-0:focus{--transform-translate-x:0}.md\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem}.md\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem}.md\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem}.md\:focus\:translate-x-4:focus{--transform-translate-x:1rem}.md\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem}.md\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem}.md\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem}.md\:focus\:translate-x-8:focus{--transform-translate-x:2rem}.md\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem}.md\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem}.md\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem}.md\:focus\:translate-x-12:focus{--transform-translate-x:3rem}.md\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem}.md\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem}.md\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem}.md\:focus\:translate-x-16:focus{--transform-translate-x:4rem}.md\:focus\:translate-x-20:focus{--transform-translate-x:5rem}.md\:focus\:translate-x-24:focus{--transform-translate-x:6rem}.md\:focus\:translate-x-28:focus{--transform-translate-x:7rem}.md\:focus\:translate-x-32:focus{--transform-translate-x:8rem}.md\:focus\:translate-x-36:focus{--transform-translate-x:9rem}.md\:focus\:translate-x-40:focus{--transform-translate-x:10rem}.md\:focus\:translate-x-44:focus{--transform-translate-x:11rem}.md\:focus\:translate-x-48:focus{--transform-translate-x:12rem}.md\:focus\:translate-x-52:focus{--transform-translate-x:13rem}.md\:focus\:translate-x-56:focus{--transform-translate-x:14rem}.md\:focus\:translate-x-60:focus{--transform-translate-x:15rem}.md\:focus\:translate-x-64:focus{--transform-translate-x:16rem}.md\:focus\:translate-x-72:focus{--transform-translate-x:18rem}.md\:focus\:translate-x-80:focus{--transform-translate-x:20rem}.md\:focus\:translate-x-96:focus{--transform-translate-x:24rem}.md\:focus\:translate-x-px:focus{--transform-translate-x:1px}.md\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem}.md\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem}.md\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem}.md\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem}.md\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%}.md\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%}.md\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%}.md\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%}.md\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%}.md\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%}.md\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%}.md\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%}.md\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%}.md\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%}.md\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%}.md\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%}.md\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%}.md\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%}.md\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%}.md\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%}.md\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%}.md\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%}.md\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%}.md\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%}.md\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%}.md\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%}.md\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%}.md\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%}.md\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%}.md\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%}.md\:focus\:translate-x-full:focus{--transform-translate-x:100%}.md\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem}.md\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem}.md\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem}.md\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem}.md\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem}.md\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem}.md\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem}.md\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem}.md\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem}.md\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem}.md\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem}.md\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem}.md\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem}.md\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem}.md\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem}.md\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem}.md\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem}.md\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem}.md\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem}.md\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem}.md\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem}.md\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem}.md\:focus\:-translate-x-44:focus{--transform-translate-x:-11rem}.md\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem}.md\:focus\:-translate-x-52:focus{--transform-translate-x:-13rem}.md\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem}.md\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem}.md\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem}.md\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem}.md\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem}.md\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem}.md\:focus\:-translate-x-px:focus{--transform-translate-x:-1px}.md\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem}.md\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem}.md\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem}.md\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem}.md\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%}.md\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%}.md\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%}.md\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%}.md\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%}.md\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%}.md\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%}.md\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%}.md\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%}.md\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%}.md\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%}.md\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%}.md\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%}.md\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%}.md\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%}.md\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%}.md\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%}.md\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%}.md\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%}.md\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%}.md\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%}.md\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%}.md\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%}.md\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%}.md\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%}.md\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%}.md\:focus\:-translate-x-full:focus{--transform-translate-x:-100%}.md\:focus\:translate-y-0:focus{--transform-translate-y:0}.md\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem}.md\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem}.md\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem}.md\:focus\:translate-y-4:focus{--transform-translate-y:1rem}.md\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem}.md\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem}.md\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem}.md\:focus\:translate-y-8:focus{--transform-translate-y:2rem}.md\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem}.md\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem}.md\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem}.md\:focus\:translate-y-12:focus{--transform-translate-y:3rem}.md\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem}.md\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem}.md\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem}.md\:focus\:translate-y-16:focus{--transform-translate-y:4rem}.md\:focus\:translate-y-20:focus{--transform-translate-y:5rem}.md\:focus\:translate-y-24:focus{--transform-translate-y:6rem}.md\:focus\:translate-y-28:focus{--transform-translate-y:7rem}.md\:focus\:translate-y-32:focus{--transform-translate-y:8rem}.md\:focus\:translate-y-36:focus{--transform-translate-y:9rem}.md\:focus\:translate-y-40:focus{--transform-translate-y:10rem}.md\:focus\:translate-y-44:focus{--transform-translate-y:11rem}.md\:focus\:translate-y-48:focus{--transform-translate-y:12rem}.md\:focus\:translate-y-52:focus{--transform-translate-y:13rem}.md\:focus\:translate-y-56:focus{--transform-translate-y:14rem}.md\:focus\:translate-y-60:focus{--transform-translate-y:15rem}.md\:focus\:translate-y-64:focus{--transform-translate-y:16rem}.md\:focus\:translate-y-72:focus{--transform-translate-y:18rem}.md\:focus\:translate-y-80:focus{--transform-translate-y:20rem}.md\:focus\:translate-y-96:focus{--transform-translate-y:24rem}.md\:focus\:translate-y-px:focus{--transform-translate-y:1px}.md\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem}.md\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem}.md\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem}.md\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem}.md\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%}.md\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%}.md\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%}.md\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%}.md\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%}.md\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%}.md\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%}.md\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%}.md\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%}.md\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%}.md\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%}.md\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%}.md\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%}.md\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%}.md\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%}.md\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%}.md\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%}.md\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%}.md\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%}.md\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%}.md\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%}.md\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%}.md\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%}.md\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%}.md\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%}.md\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%}.md\:focus\:translate-y-full:focus{--transform-translate-y:100%}.md\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem}.md\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem}.md\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem}.md\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem}.md\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem}.md\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem}.md\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem}.md\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem}.md\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem}.md\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem}.md\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem}.md\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem}.md\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem}.md\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem}.md\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem}.md\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem}.md\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem}.md\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem}.md\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem}.md\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem}.md\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem}.md\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem}.md\:focus\:-translate-y-44:focus{--transform-translate-y:-11rem}.md\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem}.md\:focus\:-translate-y-52:focus{--transform-translate-y:-13rem}.md\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem}.md\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem}.md\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem}.md\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem}.md\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem}.md\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem}.md\:focus\:-translate-y-px:focus{--transform-translate-y:-1px}.md\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem}.md\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem}.md\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem}.md\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem}.md\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%}.md\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%}.md\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%}.md\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%}.md\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%}.md\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%}.md\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%}.md\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%}.md\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%}.md\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%}.md\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%}.md\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%}.md\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%}.md\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%}.md\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%}.md\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%}.md\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%}.md\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%}.md\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%}.md\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%}.md\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%}.md\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%}.md\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%}.md\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%}.md\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%}.md\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%}.md\:focus\:-translate-y-full:focus{--transform-translate-y:-100%}.md\:skew-x-0{--transform-skew-x:0}.md\:skew-x-3{--transform-skew-x:3deg}.md\:skew-x-6{--transform-skew-x:6deg}.md\:skew-x-12{--transform-skew-x:12deg}.md\:-skew-x-12{--transform-skew-x:-12deg}.md\:-skew-x-6{--transform-skew-x:-6deg}.md\:-skew-x-3{--transform-skew-x:-3deg}.md\:skew-y-0{--transform-skew-y:0}.md\:skew-y-3{--transform-skew-y:3deg}.md\:skew-y-6{--transform-skew-y:6deg}.md\:skew-y-12{--transform-skew-y:12deg}.md\:-skew-y-12{--transform-skew-y:-12deg}.md\:-skew-y-6{--transform-skew-y:-6deg}.md\:-skew-y-3{--transform-skew-y:-3deg}.md\:hover\:skew-x-0:hover{--transform-skew-x:0}.md\:hover\:skew-x-3:hover{--transform-skew-x:3deg}.md\:hover\:skew-x-6:hover{--transform-skew-x:6deg}.md\:hover\:skew-x-12:hover{--transform-skew-x:12deg}.md\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg}.md\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg}.md\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg}.md\:hover\:skew-y-0:hover{--transform-skew-y:0}.md\:hover\:skew-y-3:hover{--transform-skew-y:3deg}.md\:hover\:skew-y-6:hover{--transform-skew-y:6deg}.md\:hover\:skew-y-12:hover{--transform-skew-y:12deg}.md\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg}.md\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg}.md\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg}.md\:focus\:skew-x-0:focus{--transform-skew-x:0}.md\:focus\:skew-x-3:focus{--transform-skew-x:3deg}.md\:focus\:skew-x-6:focus{--transform-skew-x:6deg}.md\:focus\:skew-x-12:focus{--transform-skew-x:12deg}.md\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg}.md\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg}.md\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg}.md\:focus\:skew-y-0:focus{--transform-skew-y:0}.md\:focus\:skew-y-3:focus{--transform-skew-y:3deg}.md\:focus\:skew-y-6:focus{--transform-skew-y:6deg}.md\:focus\:skew-y-12:focus{--transform-skew-y:12deg}.md\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg}.md\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg}.md\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg}.md\:transition-none{transition-property:none}.md\:transition-all{transition-property:all}.md\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.md\:transition-colors{transition-property:background-color,border-color,color,fill,stroke}.md\:transition-opacity{transition-property:opacity}.md\:transition-shadow{transition-property:box-shadow}.md\:transition-transform{transition-property:transform}.md\:ease-linear{transition-timing-function:linear}.md\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.md\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.md\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.md\:duration-75{transition-duration:75ms}.md\:duration-100{transition-duration:.1s}.md\:duration-150{transition-duration:150ms}.md\:duration-200{transition-duration:.2s}.md\:duration-300{transition-duration:.3s}.md\:duration-500{transition-duration:.5s}.md\:duration-700{transition-duration:.7s}.md\:duration-1000{transition-duration:1s}.md\:delay-75{transition-delay:75ms}.md\:delay-100{transition-delay:.1s}.md\:delay-150{transition-delay:150ms}.md\:delay-200{transition-delay:.2s}.md\:delay-300{transition-delay:.3s}.md\:delay-500{transition-delay:.5s}.md\:delay-700{transition-delay:.7s}.md\:delay-1000{transition-delay:1s}}@media (min-width:1024px){.lg\:container{width:100%}@media (min-width:640px){.lg\:container{max-width:640px}}@media (min-width:768px){.lg\:container{max-width:768px}}@media (min-width:1024px){.lg\:container{max-width:1024px}}@media (min-width:1280px){.lg\:container{max-width:1280px}}.lg\:prose{color:#374151;max-width:65ch}.lg\:prose [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.lg\:prose a{color:#5850ec;text-decoration:none;font-weight:600}.lg\:prose strong{color:#161e2e;font-weight:600}.lg\:prose ol{counter-reset:list-counter;margin-top:1.25em;margin-bottom:1.25em}.lg\:prose ol>li{position:relative;counter-increment:list-counter;padding-left:1.75em}.lg\:prose ol>li::before{content:counter(list-counter) ".";position:absolute;font-weight:400;color:#6b7280}.lg\:prose ul>li{position:relative;padding-left:1.75em}.lg\:prose ul>li::before{content:"";position:absolute;background-color:#d2d6dc;border-radius:50%;width:.375em;height:.375em;top:calc(.875em - .1875em);left:.25em}.lg\:prose hr{border-color:#e5e7eb;border-top-width:1px;margin-top:3em;margin-bottom:3em}.lg\:prose blockquote{font-weight:500;font-style:italic;color:#161e2e;border-left-width:.25rem;border-left-color:#e5e7eb;quotes:"\201C""\201D""\2018""\2019";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.lg\:prose blockquote p:first-of-type::before{content:open-quote}.lg\:prose blockquote p:last-of-type::after{content:close-quote}.lg\:prose h1{color:#1a202c;font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.lg\:prose h2{color:#1a202c;font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.lg\:prose h3{color:#1a202c;font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.lg\:prose h4{color:#1a202c;font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.lg\:prose figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.lg\:prose code{color:#161e2e;font-weight:600;font-size:.875em}.lg\:prose code::before{content:"`"}.lg\:prose code::after{content:"`"}.lg\:prose pre{color:#e5e7eb;background-color:#252f3f;overflow-x:auto;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-right:1.1428571em;padding-bottom:.8571429em;padding-left:1.1428571em}.lg\:prose pre code{background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:400;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.lg\:prose pre code::before{content:""}.lg\:prose pre code::after{content:""}.lg\:prose table{width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.lg\:prose thead{color:#161e2e;font-weight:600;border-bottom-width:1px;border-bottom-color:#d2d6dc}.lg\:prose thead th{vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.lg\:prose tbody tr{border-bottom-width:1px;border-bottom-color:#e5e7eb}.lg\:prose tbody tr:last-child{border-bottom-width:0}.lg\:prose tbody td{vertical-align:top;padding-top:.5714286em;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.lg\:prose{font-size:1rem;line-height:1.75}.lg\:prose p{margin-top:1.25em;margin-bottom:1.25em}.lg\:prose img{margin-top:2em;margin-bottom:2em}.lg\:prose video{margin-top:2em;margin-bottom:2em}.lg\:prose figure{margin-top:2em;margin-bottom:2em}.lg\:prose figure>*{margin-top:0;margin-bottom:0}.lg\:prose h2 code{font-size:.875em}.lg\:prose h3 code{font-size:.9em}.lg\:prose ul{margin-top:1.25em;margin-bottom:1.25em}.lg\:prose li{margin-top:.5em;margin-bottom:.5em}.lg\:prose ol>li:before{left:0}.lg\:prose>ul>li p{margin-top:.75em;margin-bottom:.75em}.lg\:prose>ul>li>:first-child{margin-top:1.25em}.lg\:prose>ul>li>:last-child{margin-bottom:1.25em}.lg\:prose>ol>li>:first-child{margin-top:1.25em}.lg\:prose>ol>li>:last-child{margin-bottom:1.25em}.lg\:prose ol ol,.lg\:prose ol ul,.lg\:prose ul ol,.lg\:prose ul ul{margin-top:.75em;margin-bottom:.75em}.lg\:prose hr+*{margin-top:0}.lg\:prose h2+*{margin-top:0}.lg\:prose h3+*{margin-top:0}.lg\:prose h4+*{margin-top:0}.lg\:prose thead th:first-child{padding-left:0}.lg\:prose thead th:last-child{padding-right:0}.lg\:prose tbody td:first-child{padding-left:0}.lg\:prose tbody td:last-child{padding-right:0}.lg\:prose>:first-child{margin-top:0}.lg\:prose>:last-child{margin-bottom:0}.lg\:prose h1,.lg\:prose h2,.lg\:prose h3,.lg\:prose h4{color:#161e2e}.lg\:prose-sm{font-size:.875rem;line-height:1.7142857}.lg\:prose-sm p{margin-top:1.1428571em;margin-bottom:1.1428571em}.lg\:prose-sm [class~=lead]{font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.lg\:prose-sm blockquote{margin-top:1.3333333em;margin-bottom:1.3333333em;padding-left:1.1111111em}.lg\:prose-sm h1{font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.lg\:prose-sm h2{font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.lg\:prose-sm h3{font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.lg\:prose-sm h4{margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.lg\:prose-sm img{margin-top:1.7142857em;margin-bottom:1.7142857em}.lg\:prose-sm video{margin-top:1.7142857em;margin-bottom:1.7142857em}.lg\:prose-sm figure{margin-top:1.7142857em;margin-bottom:1.7142857em}.lg\:prose-sm figure>*{margin-top:0;margin-bottom:0}.lg\:prose-sm figure figcaption{font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.lg\:prose-sm code{font-size:.8571429em}.lg\:prose-sm h2 code{font-size:.9em}.lg\:prose-sm h3 code{font-size:.8888889em}.lg\:prose-sm pre{font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.lg\:prose-sm ol{margin-top:1.1428571em;margin-bottom:1.1428571em}.lg\:prose-sm ul{margin-top:1.1428571em;margin-bottom:1.1428571em}.lg\:prose-sm li{margin-top:.2857143em;margin-bottom:.2857143em}.lg\:prose-sm ol>li{padding-left:1.5714286em}.lg\:prose-sm ol>li:before{left:0}.lg\:prose-sm ul>li{padding-left:1.5714286em}.lg\:prose-sm ul>li::before{height:.3571429em;width:.3571429em;top:calc(.8571429em - .1785714em);left:.2142857em}.lg\:prose-sm>ul>li p{margin-top:.5714286em;margin-bottom:.5714286em}.lg\:prose-sm>ul>li>:first-child{margin-top:1.1428571em}.lg\:prose-sm>ul>li>:last-child{margin-bottom:1.1428571em}.lg\:prose-sm>ol>li>:first-child{margin-top:1.1428571em}.lg\:prose-sm>ol>li>:last-child{margin-bottom:1.1428571em}.lg\:prose-sm ol ol,.lg\:prose-sm ol ul,.lg\:prose-sm ul ol,.lg\:prose-sm ul ul{margin-top:.5714286em;margin-bottom:.5714286em}.lg\:prose-sm hr{margin-top:2.8571429em;margin-bottom:2.8571429em}.lg\:prose-sm hr+*{margin-top:0}.lg\:prose-sm h2+*{margin-top:0}.lg\:prose-sm h3+*{margin-top:0}.lg\:prose-sm h4+*{margin-top:0}.lg\:prose-sm table{font-size:.8571429em;line-height:1.5}.lg\:prose-sm thead th{padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.lg\:prose-sm thead th:first-child{padding-left:0}.lg\:prose-sm thead th:last-child{padding-right:0}.lg\:prose-sm tbody td{padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.lg\:prose-sm tbody td:first-child{padding-left:0}.lg\:prose-sm tbody td:last-child{padding-right:0}.lg\:prose-sm>:first-child{margin-top:0}.lg\:prose-sm>:last-child{margin-bottom:0}.lg\:prose-lg{font-size:1.125rem;line-height:1.7777778}.lg\:prose-lg p{margin-top:1.3333333em;margin-bottom:1.3333333em}.lg\:prose-lg [class~=lead]{font-size:1.2222222em;line-height:1.4545455;margin-top:1.0909091em;margin-bottom:1.0909091em}.lg\:prose-lg blockquote{margin-top:1.6666667em;margin-bottom:1.6666667em;padding-left:1em}.lg\:prose-lg h1{font-size:2.6666667em;margin-top:0;margin-bottom:.8333333em;line-height:1}.lg\:prose-lg h2{font-size:1.6666667em;margin-top:1.8666667em;margin-bottom:1.0666667em;line-height:1.3333333}.lg\:prose-lg h3{font-size:1.3333333em;margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.lg\:prose-lg h4{margin-top:1.7777778em;margin-bottom:.4444444em;line-height:1.5555556}.lg\:prose-lg img{margin-top:1.7777778em;margin-bottom:1.7777778em}.lg\:prose-lg video{margin-top:1.7777778em;margin-bottom:1.7777778em}.lg\:prose-lg figure{margin-top:1.7777778em;margin-bottom:1.7777778em}.lg\:prose-lg figure>*{margin-top:0;margin-bottom:0}.lg\:prose-lg figure figcaption{font-size:.8888889em;line-height:1.5;margin-top:1em}.lg\:prose-lg code{font-size:.8888889em}.lg\:prose-lg h2 code{font-size:.8666667em}.lg\:prose-lg h3 code{font-size:.875em}.lg\:prose-lg pre{font-size:.8888889em;line-height:1.75;margin-top:2em;margin-bottom:2em;border-radius:.375rem;padding-top:1em;padding-right:1.5em;padding-bottom:1em;padding-left:1.5em}.lg\:prose-lg ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.lg\:prose-lg ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.lg\:prose-lg li{margin-top:.6666667em;margin-bottom:.6666667em}.lg\:prose-lg ol>li{padding-left:1.6666667em}.lg\:prose-lg ol>li:before{left:0}.lg\:prose-lg ul>li{padding-left:1.6666667em}.lg\:prose-lg ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8888889em - .1666667em);left:.2222222em}.lg\:prose-lg>ul>li p{margin-top:.8888889em;margin-bottom:.8888889em}.lg\:prose-lg>ul>li>:first-child{margin-top:1.3333333em}.lg\:prose-lg>ul>li>:last-child{margin-bottom:1.3333333em}.lg\:prose-lg>ol>li>:first-child{margin-top:1.3333333em}.lg\:prose-lg>ol>li>:last-child{margin-bottom:1.3333333em}.lg\:prose-lg ol ol,.lg\:prose-lg ol ul,.lg\:prose-lg ul ol,.lg\:prose-lg ul ul{margin-top:.8888889em;margin-bottom:.8888889em}.lg\:prose-lg hr{margin-top:3.1111111em;margin-bottom:3.1111111em}.lg\:prose-lg hr+*{margin-top:0}.lg\:prose-lg h2+*{margin-top:0}.lg\:prose-lg h3+*{margin-top:0}.lg\:prose-lg h4+*{margin-top:0}.lg\:prose-lg table{font-size:.8888889em;line-height:1.5}.lg\:prose-lg thead th{padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.lg\:prose-lg thead th:first-child{padding-left:0}.lg\:prose-lg thead th:last-child{padding-right:0}.lg\:prose-lg tbody td{padding-top:.75em;padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.lg\:prose-lg tbody td:first-child{padding-left:0}.lg\:prose-lg tbody td:last-child{padding-right:0}.lg\:prose-lg>:first-child{margin-top:0}.lg\:prose-lg>:last-child{margin-bottom:0}.lg\:prose-xl{font-size:1.25rem;line-height:1.8}.lg\:prose-xl p{margin-top:1.2em;margin-bottom:1.2em}.lg\:prose-xl [class~=lead]{font-size:1.2em;line-height:1.5;margin-top:1em;margin-bottom:1em}.lg\:prose-xl blockquote{margin-top:1.6em;margin-bottom:1.6em;padding-left:1.0666667em}.lg\:prose-xl h1{font-size:2.8em;margin-top:0;margin-bottom:.8571429em;line-height:1}.lg\:prose-xl h2{font-size:1.8em;margin-top:1.5555556em;margin-bottom:.8888889em;line-height:1.1111111}.lg\:prose-xl h3{font-size:1.5em;margin-top:1.6em;margin-bottom:.6666667em;line-height:1.3333333}.lg\:prose-xl h4{margin-top:1.8em;margin-bottom:.6em;line-height:1.6}.lg\:prose-xl img{margin-top:2em;margin-bottom:2em}.lg\:prose-xl video{margin-top:2em;margin-bottom:2em}.lg\:prose-xl figure{margin-top:2em;margin-bottom:2em}.lg\:prose-xl figure>*{margin-top:0;margin-bottom:0}.lg\:prose-xl figure figcaption{font-size:.9em;line-height:1.5555556;margin-top:1em}.lg\:prose-xl code{font-size:.9em}.lg\:prose-xl h2 code{font-size:.8611111em}.lg\:prose-xl h3 code{font-size:.9em}.lg\:prose-xl pre{font-size:.9em;line-height:1.7777778;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.1111111em;padding-right:1.3333333em;padding-bottom:1.1111111em;padding-left:1.3333333em}.lg\:prose-xl ol{margin-top:1.2em;margin-bottom:1.2em}.lg\:prose-xl ul{margin-top:1.2em;margin-bottom:1.2em}.lg\:prose-xl li{margin-top:.6em;margin-bottom:.6em}.lg\:prose-xl ol>li{padding-left:1.8em}.lg\:prose-xl ol>li:before{left:0}.lg\:prose-xl ul>li{padding-left:1.8em}.lg\:prose-xl ul>li::before{width:.35em;height:.35em;top:calc(.9em - .175em);left:.25em}.lg\:prose-xl>ul>li p{margin-top:.8em;margin-bottom:.8em}.lg\:prose-xl>ul>li>:first-child{margin-top:1.2em}.lg\:prose-xl>ul>li>:last-child{margin-bottom:1.2em}.lg\:prose-xl>ol>li>:first-child{margin-top:1.2em}.lg\:prose-xl>ol>li>:last-child{margin-bottom:1.2em}.lg\:prose-xl ol ol,.lg\:prose-xl ol ul,.lg\:prose-xl ul ol,.lg\:prose-xl ul ul{margin-top:.8em;margin-bottom:.8em}.lg\:prose-xl hr{margin-top:2.8em;margin-bottom:2.8em}.lg\:prose-xl hr+*{margin-top:0}.lg\:prose-xl h2+*{margin-top:0}.lg\:prose-xl h3+*{margin-top:0}.lg\:prose-xl h4+*{margin-top:0}.lg\:prose-xl table{font-size:.9em;line-height:1.5555556}.lg\:prose-xl thead th{padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.lg\:prose-xl thead th:first-child{padding-left:0}.lg\:prose-xl thead th:last-child{padding-right:0}.lg\:prose-xl tbody td{padding-top:.8888889em;padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.lg\:prose-xl tbody td:first-child{padding-left:0}.lg\:prose-xl tbody td:last-child{padding-right:0}.lg\:prose-xl>:first-child{margin-top:0}.lg\:prose-xl>:last-child{margin-bottom:0}.lg\:prose-2xl{font-size:1.5rem;line-height:1.6666667}.lg\:prose-2xl p{margin-top:1.3333333em;margin-bottom:1.3333333em}.lg\:prose-2xl [class~=lead]{font-size:1.25em;line-height:1.4666667;margin-top:1.0666667em;margin-bottom:1.0666667em}.lg\:prose-2xl blockquote{margin-top:1.7777778em;margin-bottom:1.7777778em;padding-left:1.1111111em}.lg\:prose-2xl h1{font-size:2.6666667em;margin-top:0;margin-bottom:.875em;line-height:1}.lg\:prose-2xl h2{font-size:2em;margin-top:1.5em;margin-bottom:.8333333em;line-height:1.0833333}.lg\:prose-2xl h3{font-size:1.5em;margin-top:1.5555556em;margin-bottom:.6666667em;line-height:1.2222222}.lg\:prose-2xl h4{margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.lg\:prose-2xl img{margin-top:2em;margin-bottom:2em}.lg\:prose-2xl video{margin-top:2em;margin-bottom:2em}.lg\:prose-2xl figure{margin-top:2em;margin-bottom:2em}.lg\:prose-2xl figure>*{margin-top:0;margin-bottom:0}.lg\:prose-2xl figure figcaption{font-size:.8333333em;line-height:1.6;margin-top:1em}.lg\:prose-2xl code{font-size:.8333333em}.lg\:prose-2xl h2 code{font-size:.875em}.lg\:prose-2xl h3 code{font-size:.8888889em}.lg\:prose-2xl pre{font-size:.8333333em;line-height:1.8;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.2em;padding-right:1.6em;padding-bottom:1.2em;padding-left:1.6em}.lg\:prose-2xl ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.lg\:prose-2xl ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.lg\:prose-2xl li{margin-top:.5em;margin-bottom:.5em}.lg\:prose-2xl ol>li{padding-left:1.6666667em}.lg\:prose-2xl ol>li:before{left:0}.lg\:prose-2xl ul>li{padding-left:1.6666667em}.lg\:prose-2xl ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8333333em - .1666667em);left:.25em}.lg\:prose-2xl>ul>li p{margin-top:.8333333em;margin-bottom:.8333333em}.lg\:prose-2xl>ul>li>:first-child{margin-top:1.3333333em}.lg\:prose-2xl>ul>li>:last-child{margin-bottom:1.3333333em}.lg\:prose-2xl>ol>li>:first-child{margin-top:1.3333333em}.lg\:prose-2xl>ol>li>:last-child{margin-bottom:1.3333333em}.lg\:prose-2xl ol ol,.lg\:prose-2xl ol ul,.lg\:prose-2xl ul ol,.lg\:prose-2xl ul ul{margin-top:.6666667em;margin-bottom:.6666667em}.lg\:prose-2xl hr{margin-top:3em;margin-bottom:3em}.lg\:prose-2xl hr+*{margin-top:0}.lg\:prose-2xl h2+*{margin-top:0}.lg\:prose-2xl h3+*{margin-top:0}.lg\:prose-2xl h4+*{margin-top:0}.lg\:prose-2xl table{font-size:.8333333em;line-height:1.4}.lg\:prose-2xl thead th{padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.lg\:prose-2xl thead th:first-child{padding-left:0}.lg\:prose-2xl thead th:last-child{padding-right:0}.lg\:prose-2xl tbody td{padding-top:.8em;padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.lg\:prose-2xl tbody td:first-child{padding-left:0}.lg\:prose-2xl tbody td:last-child{padding-right:0}.lg\:prose-2xl>:first-child{margin-top:0}.lg\:prose-2xl>:last-child{margin-bottom:0}.lg\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.lg\:space-x-0>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0px * var(--space-x-reverse));margin-left:calc(0px * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.25rem * var(--space-y-reverse))}.lg\:space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.25rem * var(--space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.5rem * var(--space-y-reverse))}.lg\:space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.75rem * var(--space-y-reverse))}.lg\:space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.75rem * var(--space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1rem * var(--space-y-reverse))}.lg\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem * var(--space-y-reverse))}.lg\:space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.25rem * var(--space-x-reverse));margin-left:calc(1.25rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.5rem * var(--space-y-reverse))}.lg\:space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem * var(--space-x-reverse));margin-left:calc(1.5rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.75rem * var(--space-y-reverse))}.lg\:space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.75rem * var(--space-x-reverse));margin-left:calc(1.75rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2rem * var(--space-y-reverse))}.lg\:space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.25rem * var(--space-y-reverse))}.lg\:space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.25rem * var(--space-x-reverse));margin-left:calc(2.25rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.5rem * var(--space-y-reverse))}.lg\:space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.5rem * var(--space-x-reverse));margin-left:calc(2.5rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.75rem * var(--space-y-reverse))}.lg\:space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.75rem * var(--space-x-reverse));margin-left:calc(2.75rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3rem * var(--space-y-reverse))}.lg\:space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3rem * var(--space-x-reverse));margin-left:calc(3rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.25rem * var(--space-y-reverse))}.lg\:space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.25rem * var(--space-x-reverse));margin-left:calc(3.25rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.5rem * var(--space-y-reverse))}.lg\:space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.5rem * var(--space-x-reverse));margin-left:calc(3.5rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.75rem * var(--space-y-reverse))}.lg\:space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.75rem * var(--space-x-reverse));margin-left:calc(3.75rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(4rem * var(--space-y-reverse))}.lg\:space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(5rem * var(--space-y-reverse))}.lg\:space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(5rem * var(--space-x-reverse));margin-left:calc(5rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(6rem * var(--space-y-reverse))}.lg\:space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(6rem * var(--space-x-reverse));margin-left:calc(6rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(7rem * var(--space-y-reverse))}.lg\:space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(7rem * var(--space-x-reverse));margin-left:calc(7rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8rem * var(--space-y-reverse))}.lg\:space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8rem * var(--space-x-reverse));margin-left:calc(8rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(9rem * var(--space-y-reverse))}.lg\:space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(9rem * var(--space-x-reverse));margin-left:calc(9rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(10rem * var(--space-y-reverse))}.lg\:space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(10rem * var(--space-x-reverse));margin-left:calc(10rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(11rem * var(--space-y-reverse))}.lg\:space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(11rem * var(--space-x-reverse));margin-left:calc(11rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(12rem * var(--space-y-reverse))}.lg\:space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(12rem * var(--space-x-reverse));margin-left:calc(12rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(13rem * var(--space-y-reverse))}.lg\:space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(13rem * var(--space-x-reverse));margin-left:calc(13rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(14rem * var(--space-y-reverse))}.lg\:space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(14rem * var(--space-x-reverse));margin-left:calc(14rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(15rem * var(--space-y-reverse))}.lg\:space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(15rem * var(--space-x-reverse));margin-left:calc(15rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16rem * var(--space-y-reverse))}.lg\:space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16rem * var(--space-x-reverse));margin-left:calc(16rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(18rem * var(--space-y-reverse))}.lg\:space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(18rem * var(--space-x-reverse));margin-left:calc(18rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20rem * var(--space-y-reverse))}.lg\:space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20rem * var(--space-x-reverse));margin-left:calc(20rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(24rem * var(--space-y-reverse))}.lg\:space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(24rem * var(--space-x-reverse));margin-left:calc(24rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1px * var(--space-y-reverse))}.lg\:space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1px * var(--space-x-reverse));margin-left:calc(1px * calc(1 - var(--space-x-reverse)))}.lg\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.125rem * var(--space-y-reverse))}.lg\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.125rem * var(--space-x-reverse));margin-left:calc(.125rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.375rem * var(--space-y-reverse))}.lg\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.375rem * var(--space-x-reverse));margin-left:calc(.375rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.625rem * var(--space-y-reverse))}.lg\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.625rem * var(--space-x-reverse));margin-left:calc(.625rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.875rem * var(--space-y-reverse))}.lg\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.875rem * var(--space-x-reverse));margin-left:calc(.875rem * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.lg\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.lg\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.lg\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.lg\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.lg\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.lg\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20% * var(--space-y-reverse))}.lg\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20% * var(--space-x-reverse));margin-left:calc(20% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(40% * var(--space-y-reverse))}.lg\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(40% * var(--space-x-reverse));margin-left:calc(40% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(60% * var(--space-y-reverse))}.lg\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(60% * var(--space-x-reverse));margin-left:calc(60% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(80% * var(--space-y-reverse))}.lg\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(80% * var(--space-x-reverse));margin-left:calc(80% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.lg\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.lg\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.lg\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.lg\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.lg\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8.333333% * var(--space-y-reverse))}.lg\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8.333333% * var(--space-x-reverse));margin-left:calc(8.333333% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.lg\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.lg\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.lg\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(41.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(41.666667% * var(--space-y-reverse))}.lg\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(41.666667% * var(--space-x-reverse));margin-left:calc(41.666667% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.lg\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(58.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(58.333333% * var(--space-y-reverse))}.lg\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(58.333333% * var(--space-x-reverse));margin-left:calc(58.333333% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.lg\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.lg\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.lg\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(91.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(91.666667% * var(--space-y-reverse))}.lg\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(91.666667% * var(--space-x-reverse));margin-left:calc(91.666667% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(100% * var(--space-y-reverse))}.lg\:space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(100% * var(--space-x-reverse));margin-left:calc(100% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.25rem * var(--space-y-reverse))}.lg\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.25rem * var(--space-x-reverse));margin-left:calc(-.25rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.5rem * var(--space-y-reverse))}.lg\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.5rem * var(--space-x-reverse));margin-left:calc(-.5rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.75rem * var(--space-y-reverse))}.lg\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.75rem * var(--space-x-reverse));margin-left:calc(-.75rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1rem * var(--space-y-reverse))}.lg\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1rem * var(--space-x-reverse));margin-left:calc(-1rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.25rem * var(--space-y-reverse))}.lg\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.25rem * var(--space-x-reverse));margin-left:calc(-1.25rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.5rem * var(--space-y-reverse))}.lg\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.5rem * var(--space-x-reverse));margin-left:calc(-1.5rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.75rem * var(--space-y-reverse))}.lg\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.75rem * var(--space-x-reverse));margin-left:calc(-1.75rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2rem * var(--space-y-reverse))}.lg\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2rem * var(--space-x-reverse));margin-left:calc(-2rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.25rem * var(--space-y-reverse))}.lg\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.25rem * var(--space-x-reverse));margin-left:calc(-2.25rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.5rem * var(--space-y-reverse))}.lg\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.5rem * var(--space-x-reverse));margin-left:calc(-2.5rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.75rem * var(--space-y-reverse))}.lg\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.75rem * var(--space-x-reverse));margin-left:calc(-2.75rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3rem * var(--space-y-reverse))}.lg\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3rem * var(--space-x-reverse));margin-left:calc(-3rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.25rem * var(--space-y-reverse))}.lg\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.25rem * var(--space-x-reverse));margin-left:calc(-3.25rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.5rem * var(--space-y-reverse))}.lg\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.5rem * var(--space-x-reverse));margin-left:calc(-3.5rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.75rem * var(--space-y-reverse))}.lg\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.75rem * var(--space-x-reverse));margin-left:calc(-3.75rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-4rem * var(--space-y-reverse))}.lg\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-4rem * var(--space-x-reverse));margin-left:calc(-4rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-5rem * var(--space-y-reverse))}.lg\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-5rem * var(--space-x-reverse));margin-left:calc(-5rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-6rem * var(--space-y-reverse))}.lg\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-6rem * var(--space-x-reverse));margin-left:calc(-6rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-7rem * var(--space-y-reverse))}.lg\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-7rem * var(--space-x-reverse));margin-left:calc(-7rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8rem * var(--space-y-reverse))}.lg\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8rem * var(--space-x-reverse));margin-left:calc(-8rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-9rem * var(--space-y-reverse))}.lg\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-9rem * var(--space-x-reverse));margin-left:calc(-9rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-10rem * var(--space-y-reverse))}.lg\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-10rem * var(--space-x-reverse));margin-left:calc(-10rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-11rem * var(--space-y-reverse))}.lg\:-space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-11rem * var(--space-x-reverse));margin-left:calc(-11rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-12rem * var(--space-y-reverse))}.lg\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-12rem * var(--space-x-reverse));margin-left:calc(-12rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-13rem * var(--space-y-reverse))}.lg\:-space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-13rem * var(--space-x-reverse));margin-left:calc(-13rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-14rem * var(--space-y-reverse))}.lg\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-14rem * var(--space-x-reverse));margin-left:calc(-14rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-15rem * var(--space-y-reverse))}.lg\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-15rem * var(--space-x-reverse));margin-left:calc(-15rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16rem * var(--space-y-reverse))}.lg\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16rem * var(--space-x-reverse));margin-left:calc(-16rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-18rem * var(--space-y-reverse))}.lg\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-18rem * var(--space-x-reverse));margin-left:calc(-18rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20rem * var(--space-y-reverse))}.lg\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20rem * var(--space-x-reverse));margin-left:calc(-20rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-24rem * var(--space-y-reverse))}.lg\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-24rem * var(--space-x-reverse));margin-left:calc(-24rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1px * var(--space-y-reverse))}.lg\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1px * var(--space-x-reverse));margin-left:calc(-1px * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.125rem * var(--space-y-reverse))}.lg\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.125rem * var(--space-x-reverse));margin-left:calc(-.125rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.375rem * var(--space-y-reverse))}.lg\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.375rem * var(--space-x-reverse));margin-left:calc(-.375rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.625rem * var(--space-y-reverse))}.lg\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.625rem * var(--space-x-reverse));margin-left:calc(-.625rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.875rem * var(--space-y-reverse))}.lg\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.875rem * var(--space-x-reverse));margin-left:calc(-.875rem * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.lg\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.lg\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.lg\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.lg\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.lg\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.lg\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20% * var(--space-y-reverse))}.lg\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20% * var(--space-x-reverse));margin-left:calc(-20% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-40% * var(--space-y-reverse))}.lg\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-40% * var(--space-x-reverse));margin-left:calc(-40% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-60% * var(--space-y-reverse))}.lg\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-60% * var(--space-x-reverse));margin-left:calc(-60% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-80% * var(--space-y-reverse))}.lg\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-80% * var(--space-x-reverse));margin-left:calc(-80% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.lg\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.lg\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.lg\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.lg\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.lg\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8.33333% * var(--space-y-reverse))}.lg\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8.33333% * var(--space-x-reverse));margin-left:calc(-8.33333% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.lg\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.lg\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.lg\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-41.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-41.66667% * var(--space-y-reverse))}.lg\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-41.66667% * var(--space-x-reverse));margin-left:calc(-41.66667% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.lg\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-58.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-58.33333% * var(--space-y-reverse))}.lg\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-58.33333% * var(--space-x-reverse));margin-left:calc(-58.33333% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.lg\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.lg\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.lg\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-91.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-91.66667% * var(--space-y-reverse))}.lg\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-91.66667% * var(--space-x-reverse));margin-left:calc(-91.66667% * calc(1 - var(--space-x-reverse)))}.lg\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-100% * var(--space-y-reverse))}.lg\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-100% * var(--space-x-reverse));margin-left:calc(-100% * calc(1 - var(--space-x-reverse)))}.lg\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1}.lg\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1}.lg\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(0px * var(--divide-y-reverse))}.lg\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(0px * var(--divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--divide-x-reverse)))}.lg\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(2px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(2px * var(--divide-y-reverse))}.lg\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(2px * var(--divide-x-reverse));border-left-width:calc(2px * calc(1 - var(--divide-x-reverse)))}.lg\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(4px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(4px * var(--divide-y-reverse))}.lg\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(4px * var(--divide-x-reverse));border-left-width:calc(4px * calc(1 - var(--divide-x-reverse)))}.lg\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(8px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(8px * var(--divide-y-reverse))}.lg\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(8px * var(--divide-x-reverse));border-left-width:calc(8px * calc(1 - var(--divide-x-reverse)))}.lg\:divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px * var(--divide-y-reverse))}.lg\:divide-x>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}.lg\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1}.lg\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1}.lg\:divide-transparent>:not(template)~:not(template){border-color:transparent}.lg\:divide-white>:not(template)~:not(template){--divide-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--divide-opacity))}.lg\:divide-black>:not(template)~:not(template){--divide-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--divide-opacity))}.lg\:divide-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--divide-opacity))}.lg\:divide-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--divide-opacity))}.lg\:divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.lg\:divide-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--divide-opacity))}.lg\:divide-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--divide-opacity))}.lg\:divide-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--divide-opacity))}.lg\:divide-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--divide-opacity))}.lg\:divide-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--divide-opacity))}.lg\:divide-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--divide-opacity))}.lg\:divide-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--divide-opacity))}.lg\:divide-cool-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--divide-opacity))}.lg\:divide-cool-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--divide-opacity))}.lg\:divide-cool-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--divide-opacity))}.lg\:divide-cool-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--divide-opacity))}.lg\:divide-cool-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--divide-opacity))}.lg\:divide-cool-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--divide-opacity))}.lg\:divide-cool-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--divide-opacity))}.lg\:divide-cool-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--divide-opacity))}.lg\:divide-cool-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--divide-opacity))}.lg\:divide-cool-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--divide-opacity))}.lg\:divide-red-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--divide-opacity))}.lg\:divide-red-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--divide-opacity))}.lg\:divide-red-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--divide-opacity))}.lg\:divide-red-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--divide-opacity))}.lg\:divide-red-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--divide-opacity))}.lg\:divide-red-500>:not(template)~:not(template){--divide-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--divide-opacity))}.lg\:divide-red-600>:not(template)~:not(template){--divide-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--divide-opacity))}.lg\:divide-red-700>:not(template)~:not(template){--divide-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--divide-opacity))}.lg\:divide-red-800>:not(template)~:not(template){--divide-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--divide-opacity))}.lg\:divide-red-900>:not(template)~:not(template){--divide-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--divide-opacity))}.lg\:divide-orange-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--divide-opacity))}.lg\:divide-orange-100>:not(template)~:not(template){--divide-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--divide-opacity))}.lg\:divide-orange-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--divide-opacity))}.lg\:divide-orange-300>:not(template)~:not(template){--divide-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--divide-opacity))}.lg\:divide-orange-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--divide-opacity))}.lg\:divide-orange-500>:not(template)~:not(template){--divide-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--divide-opacity))}.lg\:divide-orange-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--divide-opacity))}.lg\:divide-orange-700>:not(template)~:not(template){--divide-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--divide-opacity))}.lg\:divide-orange-800>:not(template)~:not(template){--divide-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--divide-opacity))}.lg\:divide-orange-900>:not(template)~:not(template){--divide-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--divide-opacity))}.lg\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--divide-opacity))}.lg\:divide-yellow-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--divide-opacity))}.lg\:divide-yellow-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--divide-opacity))}.lg\:divide-yellow-300>:not(template)~:not(template){--divide-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--divide-opacity))}.lg\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--divide-opacity))}.lg\:divide-yellow-500>:not(template)~:not(template){--divide-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--divide-opacity))}.lg\:divide-yellow-600>:not(template)~:not(template){--divide-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--divide-opacity))}.lg\:divide-yellow-700>:not(template)~:not(template){--divide-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--divide-opacity))}.lg\:divide-yellow-800>:not(template)~:not(template){--divide-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--divide-opacity))}.lg\:divide-yellow-900>:not(template)~:not(template){--divide-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--divide-opacity))}.lg\:divide-green-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--divide-opacity))}.lg\:divide-green-100>:not(template)~:not(template){--divide-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--divide-opacity))}.lg\:divide-green-200>:not(template)~:not(template){--divide-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--divide-opacity))}.lg\:divide-green-300>:not(template)~:not(template){--divide-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--divide-opacity))}.lg\:divide-green-400>:not(template)~:not(template){--divide-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--divide-opacity))}.lg\:divide-green-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--divide-opacity))}.lg\:divide-green-600>:not(template)~:not(template){--divide-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--divide-opacity))}.lg\:divide-green-700>:not(template)~:not(template){--divide-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--divide-opacity))}.lg\:divide-green-800>:not(template)~:not(template){--divide-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--divide-opacity))}.lg\:divide-green-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--divide-opacity))}.lg\:divide-teal-50>:not(template)~:not(template){--divide-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--divide-opacity))}.lg\:divide-teal-100>:not(template)~:not(template){--divide-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--divide-opacity))}.lg\:divide-teal-200>:not(template)~:not(template){--divide-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--divide-opacity))}.lg\:divide-teal-300>:not(template)~:not(template){--divide-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--divide-opacity))}.lg\:divide-teal-400>:not(template)~:not(template){--divide-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--divide-opacity))}.lg\:divide-teal-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--divide-opacity))}.lg\:divide-teal-600>:not(template)~:not(template){--divide-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--divide-opacity))}.lg\:divide-teal-700>:not(template)~:not(template){--divide-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--divide-opacity))}.lg\:divide-teal-800>:not(template)~:not(template){--divide-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--divide-opacity))}.lg\:divide-teal-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--divide-opacity))}.lg\:divide-blue-50>:not(template)~:not(template){--divide-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--divide-opacity))}.lg\:divide-blue-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--divide-opacity))}.lg\:divide-blue-200>:not(template)~:not(template){--divide-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--divide-opacity))}.lg\:divide-blue-300>:not(template)~:not(template){--divide-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--divide-opacity))}.lg\:divide-blue-400>:not(template)~:not(template){--divide-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--divide-opacity))}.lg\:divide-blue-500>:not(template)~:not(template){--divide-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--divide-opacity))}.lg\:divide-blue-600>:not(template)~:not(template){--divide-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--divide-opacity))}.lg\:divide-blue-700>:not(template)~:not(template){--divide-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--divide-opacity))}.lg\:divide-blue-800>:not(template)~:not(template){--divide-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--divide-opacity))}.lg\:divide-blue-900>:not(template)~:not(template){--divide-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--divide-opacity))}.lg\:divide-indigo-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--divide-opacity))}.lg\:divide-indigo-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--divide-opacity))}.lg\:divide-indigo-200>:not(template)~:not(template){--divide-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--divide-opacity))}.lg\:divide-indigo-300>:not(template)~:not(template){--divide-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--divide-opacity))}.lg\:divide-indigo-400>:not(template)~:not(template){--divide-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--divide-opacity))}.lg\:divide-indigo-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--divide-opacity))}.lg\:divide-indigo-600>:not(template)~:not(template){--divide-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--divide-opacity))}.lg\:divide-indigo-700>:not(template)~:not(template){--divide-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--divide-opacity))}.lg\:divide-indigo-800>:not(template)~:not(template){--divide-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--divide-opacity))}.lg\:divide-indigo-900>:not(template)~:not(template){--divide-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--divide-opacity))}.lg\:divide-purple-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--divide-opacity))}.lg\:divide-purple-100>:not(template)~:not(template){--divide-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--divide-opacity))}.lg\:divide-purple-200>:not(template)~:not(template){--divide-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--divide-opacity))}.lg\:divide-purple-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--divide-opacity))}.lg\:divide-purple-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--divide-opacity))}.lg\:divide-purple-500>:not(template)~:not(template){--divide-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--divide-opacity))}.lg\:divide-purple-600>:not(template)~:not(template){--divide-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--divide-opacity))}.lg\:divide-purple-700>:not(template)~:not(template){--divide-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--divide-opacity))}.lg\:divide-purple-800>:not(template)~:not(template){--divide-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--divide-opacity))}.lg\:divide-purple-900>:not(template)~:not(template){--divide-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--divide-opacity))}.lg\:divide-pink-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--divide-opacity))}.lg\:divide-pink-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--divide-opacity))}.lg\:divide-pink-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--divide-opacity))}.lg\:divide-pink-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--divide-opacity))}.lg\:divide-pink-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--divide-opacity))}.lg\:divide-pink-500>:not(template)~:not(template){--divide-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--divide-opacity))}.lg\:divide-pink-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--divide-opacity))}.lg\:divide-pink-700>:not(template)~:not(template){--divide-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--divide-opacity))}.lg\:divide-pink-800>:not(template)~:not(template){--divide-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--divide-opacity))}.lg\:divide-pink-900>:not(template)~:not(template){--divide-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--divide-opacity))}.lg\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0}.lg\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25}.lg\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5}.lg\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75}.lg\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1}.lg\:sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.lg\:not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.lg\:focus\:sr-only:focus{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.lg\:focus\:not-sr-only:focus{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.lg\:appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.lg\:bg-fixed{background-attachment:fixed}.lg\:bg-local{background-attachment:local}.lg\:bg-scroll{background-attachment:scroll}.lg\:bg-transparent{background-color:transparent}.lg\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.lg\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.lg\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.lg\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.lg\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.lg\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.lg\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.lg\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.lg\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.lg\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.lg\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.lg\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.lg\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.lg\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.lg\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.lg\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.lg\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.lg\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.lg\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.lg\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.lg\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.lg\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.lg\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.lg\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.lg\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.lg\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.lg\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.lg\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.lg\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.lg\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.lg\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.lg\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.lg\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.lg\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.lg\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.lg\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.lg\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.lg\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.lg\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.lg\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.lg\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.lg\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.lg\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.lg\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.lg\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.lg\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.lg\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.lg\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.lg\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.lg\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.lg\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.lg\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.lg\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.lg\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.lg\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.lg\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.lg\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.lg\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.lg\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.lg\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.lg\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.lg\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.lg\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.lg\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.lg\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.lg\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.lg\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.lg\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.lg\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.lg\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.lg\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.lg\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.lg\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.lg\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.lg\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.lg\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.lg\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.lg\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.lg\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.lg\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.lg\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.lg\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.lg\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.lg\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.lg\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.lg\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.lg\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.lg\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.lg\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.lg\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.lg\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.lg\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.lg\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.lg\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.lg\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.lg\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.lg\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.lg\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.lg\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.lg\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.lg\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.lg\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.lg\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.lg\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.lg\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.lg\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.lg\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.lg\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.lg\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.lg\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.lg\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.lg\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-transparent{background-color:transparent}.group:hover .lg\:group-hover\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:hover .lg\:group-hover\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-transparent{background-color:transparent}.group:focus .lg\:group-focus\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:focus .lg\:group-focus\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.lg\:hover\:bg-transparent:hover{background-color:transparent}.lg\:hover\:bg-white:hover{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.lg\:hover\:bg-black:hover{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.lg\:hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.lg\:hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.lg\:hover\:bg-gray-200:hover{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.lg\:hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.lg\:hover\:bg-gray-400:hover{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.lg\:hover\:bg-gray-500:hover{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.lg\:hover\:bg-gray-600:hover{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.lg\:hover\:bg-gray-700:hover{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.lg\:hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.lg\:hover\:bg-gray-900:hover{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-50:hover{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-100:hover{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-200:hover{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-300:hover{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-400:hover{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-500:hover{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-600:hover{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-700:hover{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-800:hover{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.lg\:hover\:bg-cool-gray-900:hover{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.lg\:hover\:bg-red-50:hover{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.lg\:hover\:bg-red-100:hover{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.lg\:hover\:bg-red-200:hover{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.lg\:hover\:bg-red-300:hover{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.lg\:hover\:bg-red-400:hover{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.lg\:hover\:bg-red-500:hover{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.lg\:hover\:bg-red-600:hover{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.lg\:hover\:bg-red-700:hover{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.lg\:hover\:bg-red-800:hover{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.lg\:hover\:bg-red-900:hover{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.lg\:hover\:bg-orange-50:hover{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.lg\:hover\:bg-orange-100:hover{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.lg\:hover\:bg-orange-200:hover{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.lg\:hover\:bg-orange-300:hover{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.lg\:hover\:bg-orange-400:hover{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.lg\:hover\:bg-orange-500:hover{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.lg\:hover\:bg-orange-600:hover{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.lg\:hover\:bg-orange-700:hover{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.lg\:hover\:bg-orange-800:hover{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.lg\:hover\:bg-orange-900:hover{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.lg\:hover\:bg-yellow-50:hover{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.lg\:hover\:bg-yellow-100:hover{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.lg\:hover\:bg-yellow-200:hover{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.lg\:hover\:bg-yellow-300:hover{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.lg\:hover\:bg-yellow-400:hover{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.lg\:hover\:bg-yellow-500:hover{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.lg\:hover\:bg-yellow-600:hover{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.lg\:hover\:bg-yellow-700:hover{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.lg\:hover\:bg-yellow-800:hover{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.lg\:hover\:bg-yellow-900:hover{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.lg\:hover\:bg-green-50:hover{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.lg\:hover\:bg-green-100:hover{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.lg\:hover\:bg-green-200:hover{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.lg\:hover\:bg-green-300:hover{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.lg\:hover\:bg-green-400:hover{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.lg\:hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.lg\:hover\:bg-green-600:hover{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.lg\:hover\:bg-green-700:hover{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.lg\:hover\:bg-green-800:hover{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.lg\:hover\:bg-green-900:hover{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.lg\:hover\:bg-teal-50:hover{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.lg\:hover\:bg-teal-100:hover{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.lg\:hover\:bg-teal-200:hover{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.lg\:hover\:bg-teal-300:hover{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.lg\:hover\:bg-teal-400:hover{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.lg\:hover\:bg-teal-500:hover{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.lg\:hover\:bg-teal-600:hover{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.lg\:hover\:bg-teal-700:hover{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.lg\:hover\:bg-teal-800:hover{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.lg\:hover\:bg-teal-900:hover{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.lg\:hover\:bg-blue-50:hover{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.lg\:hover\:bg-blue-100:hover{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.lg\:hover\:bg-blue-200:hover{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.lg\:hover\:bg-blue-300:hover{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.lg\:hover\:bg-blue-400:hover{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.lg\:hover\:bg-blue-500:hover{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.lg\:hover\:bg-blue-600:hover{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.lg\:hover\:bg-blue-700:hover{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.lg\:hover\:bg-blue-800:hover{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.lg\:hover\:bg-blue-900:hover{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.lg\:hover\:bg-indigo-50:hover{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.lg\:hover\:bg-indigo-100:hover{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.lg\:hover\:bg-indigo-200:hover{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.lg\:hover\:bg-indigo-300:hover{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.lg\:hover\:bg-indigo-400:hover{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.lg\:hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.lg\:hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.lg\:hover\:bg-indigo-700:hover{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.lg\:hover\:bg-indigo-800:hover{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.lg\:hover\:bg-indigo-900:hover{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.lg\:hover\:bg-purple-50:hover{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.lg\:hover\:bg-purple-100:hover{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.lg\:hover\:bg-purple-200:hover{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.lg\:hover\:bg-purple-300:hover{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.lg\:hover\:bg-purple-400:hover{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.lg\:hover\:bg-purple-500:hover{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.lg\:hover\:bg-purple-600:hover{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.lg\:hover\:bg-purple-700:hover{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.lg\:hover\:bg-purple-800:hover{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.lg\:hover\:bg-purple-900:hover{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.lg\:hover\:bg-pink-50:hover{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.lg\:hover\:bg-pink-100:hover{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.lg\:hover\:bg-pink-200:hover{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.lg\:hover\:bg-pink-300:hover{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.lg\:hover\:bg-pink-400:hover{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.lg\:hover\:bg-pink-500:hover{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.lg\:hover\:bg-pink-600:hover{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.lg\:hover\:bg-pink-700:hover{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.lg\:hover\:bg-pink-800:hover{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.lg\:hover\:bg-pink-900:hover{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.lg\:focus\:bg-transparent:focus{background-color:transparent}.lg\:focus\:bg-white:focus{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.lg\:focus\:bg-black:focus{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.lg\:focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.lg\:focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.lg\:focus\:bg-gray-200:focus{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.lg\:focus\:bg-gray-300:focus{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.lg\:focus\:bg-gray-400:focus{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.lg\:focus\:bg-gray-500:focus{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.lg\:focus\:bg-gray-600:focus{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.lg\:focus\:bg-gray-700:focus{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.lg\:focus\:bg-gray-800:focus{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.lg\:focus\:bg-gray-900:focus{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-50:focus{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-100:focus{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-200:focus{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-300:focus{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-400:focus{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-500:focus{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-600:focus{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-700:focus{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-800:focus{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.lg\:focus\:bg-cool-gray-900:focus{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.lg\:focus\:bg-red-50:focus{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.lg\:focus\:bg-red-100:focus{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.lg\:focus\:bg-red-200:focus{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.lg\:focus\:bg-red-300:focus{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.lg\:focus\:bg-red-400:focus{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.lg\:focus\:bg-red-500:focus{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.lg\:focus\:bg-red-600:focus{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.lg\:focus\:bg-red-700:focus{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.lg\:focus\:bg-red-800:focus{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.lg\:focus\:bg-red-900:focus{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.lg\:focus\:bg-orange-50:focus{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.lg\:focus\:bg-orange-100:focus{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.lg\:focus\:bg-orange-200:focus{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.lg\:focus\:bg-orange-300:focus{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.lg\:focus\:bg-orange-400:focus{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.lg\:focus\:bg-orange-500:focus{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.lg\:focus\:bg-orange-600:focus{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.lg\:focus\:bg-orange-700:focus{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.lg\:focus\:bg-orange-800:focus{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.lg\:focus\:bg-orange-900:focus{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.lg\:focus\:bg-yellow-50:focus{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.lg\:focus\:bg-yellow-100:focus{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.lg\:focus\:bg-yellow-200:focus{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.lg\:focus\:bg-yellow-300:focus{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.lg\:focus\:bg-yellow-400:focus{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.lg\:focus\:bg-yellow-500:focus{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.lg\:focus\:bg-yellow-600:focus{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.lg\:focus\:bg-yellow-700:focus{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.lg\:focus\:bg-yellow-800:focus{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.lg\:focus\:bg-yellow-900:focus{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.lg\:focus\:bg-green-50:focus{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.lg\:focus\:bg-green-100:focus{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.lg\:focus\:bg-green-200:focus{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.lg\:focus\:bg-green-300:focus{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.lg\:focus\:bg-green-400:focus{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.lg\:focus\:bg-green-500:focus{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.lg\:focus\:bg-green-600:focus{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.lg\:focus\:bg-green-700:focus{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.lg\:focus\:bg-green-800:focus{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.lg\:focus\:bg-green-900:focus{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.lg\:focus\:bg-teal-50:focus{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.lg\:focus\:bg-teal-100:focus{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.lg\:focus\:bg-teal-200:focus{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.lg\:focus\:bg-teal-300:focus{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.lg\:focus\:bg-teal-400:focus{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.lg\:focus\:bg-teal-500:focus{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.lg\:focus\:bg-teal-600:focus{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.lg\:focus\:bg-teal-700:focus{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.lg\:focus\:bg-teal-800:focus{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.lg\:focus\:bg-teal-900:focus{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.lg\:focus\:bg-blue-50:focus{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.lg\:focus\:bg-blue-100:focus{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.lg\:focus\:bg-blue-200:focus{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.lg\:focus\:bg-blue-300:focus{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.lg\:focus\:bg-blue-400:focus{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.lg\:focus\:bg-blue-500:focus{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.lg\:focus\:bg-blue-600:focus{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.lg\:focus\:bg-blue-700:focus{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.lg\:focus\:bg-blue-800:focus{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.lg\:focus\:bg-blue-900:focus{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.lg\:focus\:bg-indigo-50:focus{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.lg\:focus\:bg-indigo-100:focus{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.lg\:focus\:bg-indigo-200:focus{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.lg\:focus\:bg-indigo-300:focus{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.lg\:focus\:bg-indigo-400:focus{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.lg\:focus\:bg-indigo-500:focus{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.lg\:focus\:bg-indigo-600:focus{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.lg\:focus\:bg-indigo-700:focus{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.lg\:focus\:bg-indigo-800:focus{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.lg\:focus\:bg-indigo-900:focus{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.lg\:focus\:bg-purple-50:focus{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.lg\:focus\:bg-purple-100:focus{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.lg\:focus\:bg-purple-200:focus{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.lg\:focus\:bg-purple-300:focus{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.lg\:focus\:bg-purple-400:focus{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.lg\:focus\:bg-purple-500:focus{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.lg\:focus\:bg-purple-600:focus{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.lg\:focus\:bg-purple-700:focus{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.lg\:focus\:bg-purple-800:focus{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.lg\:focus\:bg-purple-900:focus{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.lg\:focus\:bg-pink-50:focus{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.lg\:focus\:bg-pink-100:focus{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.lg\:focus\:bg-pink-200:focus{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.lg\:focus\:bg-pink-300:focus{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.lg\:focus\:bg-pink-400:focus{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.lg\:focus\:bg-pink-500:focus{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.lg\:focus\:bg-pink-600:focus{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.lg\:focus\:bg-pink-700:focus{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.lg\:focus\:bg-pink-800:focus{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.lg\:focus\:bg-pink-900:focus{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.lg\:active\:bg-transparent:active{background-color:transparent}.lg\:active\:bg-white:active{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.lg\:active\:bg-black:active{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.lg\:active\:bg-gray-50:active{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.lg\:active\:bg-gray-100:active{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.lg\:active\:bg-gray-200:active{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.lg\:active\:bg-gray-300:active{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.lg\:active\:bg-gray-400:active{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.lg\:active\:bg-gray-500:active{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.lg\:active\:bg-gray-600:active{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.lg\:active\:bg-gray-700:active{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.lg\:active\:bg-gray-800:active{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.lg\:active\:bg-gray-900:active{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.lg\:active\:bg-cool-gray-50:active{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.lg\:active\:bg-cool-gray-100:active{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.lg\:active\:bg-cool-gray-200:active{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.lg\:active\:bg-cool-gray-300:active{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.lg\:active\:bg-cool-gray-400:active{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.lg\:active\:bg-cool-gray-500:active{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.lg\:active\:bg-cool-gray-600:active{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.lg\:active\:bg-cool-gray-700:active{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.lg\:active\:bg-cool-gray-800:active{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.lg\:active\:bg-cool-gray-900:active{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.lg\:active\:bg-red-50:active{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.lg\:active\:bg-red-100:active{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.lg\:active\:bg-red-200:active{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.lg\:active\:bg-red-300:active{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.lg\:active\:bg-red-400:active{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.lg\:active\:bg-red-500:active{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.lg\:active\:bg-red-600:active{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.lg\:active\:bg-red-700:active{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.lg\:active\:bg-red-800:active{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.lg\:active\:bg-red-900:active{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.lg\:active\:bg-orange-50:active{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.lg\:active\:bg-orange-100:active{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.lg\:active\:bg-orange-200:active{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.lg\:active\:bg-orange-300:active{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.lg\:active\:bg-orange-400:active{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.lg\:active\:bg-orange-500:active{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.lg\:active\:bg-orange-600:active{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.lg\:active\:bg-orange-700:active{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.lg\:active\:bg-orange-800:active{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.lg\:active\:bg-orange-900:active{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.lg\:active\:bg-yellow-50:active{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.lg\:active\:bg-yellow-100:active{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.lg\:active\:bg-yellow-200:active{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.lg\:active\:bg-yellow-300:active{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.lg\:active\:bg-yellow-400:active{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.lg\:active\:bg-yellow-500:active{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.lg\:active\:bg-yellow-600:active{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.lg\:active\:bg-yellow-700:active{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.lg\:active\:bg-yellow-800:active{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.lg\:active\:bg-yellow-900:active{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.lg\:active\:bg-green-50:active{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.lg\:active\:bg-green-100:active{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.lg\:active\:bg-green-200:active{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.lg\:active\:bg-green-300:active{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.lg\:active\:bg-green-400:active{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.lg\:active\:bg-green-500:active{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.lg\:active\:bg-green-600:active{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.lg\:active\:bg-green-700:active{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.lg\:active\:bg-green-800:active{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.lg\:active\:bg-green-900:active{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.lg\:active\:bg-teal-50:active{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.lg\:active\:bg-teal-100:active{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.lg\:active\:bg-teal-200:active{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.lg\:active\:bg-teal-300:active{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.lg\:active\:bg-teal-400:active{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.lg\:active\:bg-teal-500:active{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.lg\:active\:bg-teal-600:active{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.lg\:active\:bg-teal-700:active{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.lg\:active\:bg-teal-800:active{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.lg\:active\:bg-teal-900:active{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.lg\:active\:bg-blue-50:active{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.lg\:active\:bg-blue-100:active{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.lg\:active\:bg-blue-200:active{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.lg\:active\:bg-blue-300:active{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.lg\:active\:bg-blue-400:active{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.lg\:active\:bg-blue-500:active{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.lg\:active\:bg-blue-600:active{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.lg\:active\:bg-blue-700:active{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.lg\:active\:bg-blue-800:active{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.lg\:active\:bg-blue-900:active{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.lg\:active\:bg-indigo-50:active{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.lg\:active\:bg-indigo-100:active{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.lg\:active\:bg-indigo-200:active{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.lg\:active\:bg-indigo-300:active{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.lg\:active\:bg-indigo-400:active{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.lg\:active\:bg-indigo-500:active{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.lg\:active\:bg-indigo-600:active{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.lg\:active\:bg-indigo-700:active{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.lg\:active\:bg-indigo-800:active{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.lg\:active\:bg-indigo-900:active{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.lg\:active\:bg-purple-50:active{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.lg\:active\:bg-purple-100:active{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.lg\:active\:bg-purple-200:active{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.lg\:active\:bg-purple-300:active{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.lg\:active\:bg-purple-400:active{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.lg\:active\:bg-purple-500:active{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.lg\:active\:bg-purple-600:active{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.lg\:active\:bg-purple-700:active{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.lg\:active\:bg-purple-800:active{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.lg\:active\:bg-purple-900:active{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.lg\:active\:bg-pink-50:active{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.lg\:active\:bg-pink-100:active{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.lg\:active\:bg-pink-200:active{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.lg\:active\:bg-pink-300:active{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.lg\:active\:bg-pink-400:active{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.lg\:active\:bg-pink-500:active{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.lg\:active\:bg-pink-600:active{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.lg\:active\:bg-pink-700:active{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.lg\:active\:bg-pink-800:active{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.lg\:active\:bg-pink-900:active{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.lg\:bg-opacity-0{--bg-opacity:0}.lg\:bg-opacity-25{--bg-opacity:0.25}.lg\:bg-opacity-50{--bg-opacity:0.5}.lg\:bg-opacity-75{--bg-opacity:0.75}.lg\:bg-opacity-100{--bg-opacity:1}.lg\:hover\:bg-opacity-0:hover{--bg-opacity:0}.lg\:hover\:bg-opacity-25:hover{--bg-opacity:0.25}.lg\:hover\:bg-opacity-50:hover{--bg-opacity:0.5}.lg\:hover\:bg-opacity-75:hover{--bg-opacity:0.75}.lg\:hover\:bg-opacity-100:hover{--bg-opacity:1}.lg\:focus\:bg-opacity-0:focus{--bg-opacity:0}.lg\:focus\:bg-opacity-25:focus{--bg-opacity:0.25}.lg\:focus\:bg-opacity-50:focus{--bg-opacity:0.5}.lg\:focus\:bg-opacity-75:focus{--bg-opacity:0.75}.lg\:focus\:bg-opacity-100:focus{--bg-opacity:1}.lg\:bg-bottom{background-position:bottom}.lg\:bg-center{background-position:center}.lg\:bg-left{background-position:left}.lg\:bg-left-bottom{background-position:left bottom}.lg\:bg-left-top{background-position:left top}.lg\:bg-right{background-position:right}.lg\:bg-right-bottom{background-position:right bottom}.lg\:bg-right-top{background-position:right top}.lg\:bg-top{background-position:top}.lg\:bg-repeat{background-repeat:repeat}.lg\:bg-no-repeat{background-repeat:no-repeat}.lg\:bg-repeat-x{background-repeat:repeat-x}.lg\:bg-repeat-y{background-repeat:repeat-y}.lg\:bg-repeat-round{background-repeat:round}.lg\:bg-repeat-space{background-repeat:space}.lg\:bg-auto{background-size:auto}.lg\:bg-cover{background-size:cover}.lg\:bg-contain{background-size:contain}.lg\:border-collapse{border-collapse:collapse}.lg\:border-separate{border-collapse:separate}.lg\:border-transparent{border-color:transparent}.lg\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.lg\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.lg\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.lg\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.lg\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.lg\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.lg\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.lg\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.lg\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.lg\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.lg\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.lg\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.lg\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.lg\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.lg\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.lg\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.lg\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.lg\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.lg\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.lg\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.lg\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.lg\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.lg\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.lg\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.lg\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.lg\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.lg\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.lg\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.lg\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.lg\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.lg\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.lg\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.lg\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.lg\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.lg\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.lg\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.lg\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.lg\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.lg\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.lg\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.lg\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.lg\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.lg\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.lg\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.lg\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.lg\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.lg\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.lg\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.lg\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.lg\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.lg\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.lg\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.lg\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.lg\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.lg\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.lg\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.lg\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.lg\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.lg\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.lg\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.lg\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.lg\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.lg\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.lg\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.lg\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.lg\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.lg\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.lg\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.lg\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.lg\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.lg\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.lg\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.lg\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.lg\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.lg\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.lg\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.lg\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.lg\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.lg\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.lg\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.lg\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.lg\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.lg\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.lg\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.lg\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.lg\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.lg\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.lg\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.lg\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.lg\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.lg\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.lg\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.lg\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.lg\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.lg\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.lg\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.lg\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.lg\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.lg\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.lg\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.lg\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.lg\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.lg\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.lg\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.lg\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.lg\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.lg\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.lg\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.lg\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.lg\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.lg\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.lg\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:hover .lg\:group-hover\:border-transparent{border-color:transparent}.group:hover .lg\:group-hover\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:hover .lg\:group-hover\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:hover .lg\:group-hover\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:hover .lg\:group-hover\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:hover .lg\:group-hover\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:hover .lg\:group-hover\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:hover .lg\:group-hover\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:hover .lg\:group-hover\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:hover .lg\:group-hover\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:hover .lg\:group-hover\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:hover .lg\:group-hover\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:hover .lg\:group-hover\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:hover .lg\:group-hover\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:focus .lg\:group-focus\:border-transparent{border-color:transparent}.group:focus .lg\:group-focus\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:focus .lg\:group-focus\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:focus .lg\:group-focus\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:focus .lg\:group-focus\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:focus .lg\:group-focus\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:focus .lg\:group-focus\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:focus .lg\:group-focus\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:focus .lg\:group-focus\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:focus .lg\:group-focus\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:focus .lg\:group-focus\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:focus .lg\:group-focus\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:focus .lg\:group-focus\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:focus .lg\:group-focus\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.lg\:hover\:border-transparent:hover{border-color:transparent}.lg\:hover\:border-white:hover{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.lg\:hover\:border-black:hover{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.lg\:hover\:border-gray-50:hover{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.lg\:hover\:border-gray-100:hover{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.lg\:hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.lg\:hover\:border-gray-300:hover{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.lg\:hover\:border-gray-400:hover{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.lg\:hover\:border-gray-500:hover{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.lg\:hover\:border-gray-600:hover{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.lg\:hover\:border-gray-700:hover{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.lg\:hover\:border-gray-800:hover{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.lg\:hover\:border-gray-900:hover{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.lg\:hover\:border-cool-gray-50:hover{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.lg\:hover\:border-cool-gray-100:hover{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.lg\:hover\:border-cool-gray-200:hover{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.lg\:hover\:border-cool-gray-300:hover{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.lg\:hover\:border-cool-gray-400:hover{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.lg\:hover\:border-cool-gray-500:hover{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.lg\:hover\:border-cool-gray-600:hover{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.lg\:hover\:border-cool-gray-700:hover{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.lg\:hover\:border-cool-gray-800:hover{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.lg\:hover\:border-cool-gray-900:hover{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.lg\:hover\:border-red-50:hover{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.lg\:hover\:border-red-100:hover{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.lg\:hover\:border-red-200:hover{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.lg\:hover\:border-red-300:hover{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.lg\:hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.lg\:hover\:border-red-500:hover{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.lg\:hover\:border-red-600:hover{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.lg\:hover\:border-red-700:hover{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.lg\:hover\:border-red-800:hover{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.lg\:hover\:border-red-900:hover{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.lg\:hover\:border-orange-50:hover{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.lg\:hover\:border-orange-100:hover{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.lg\:hover\:border-orange-200:hover{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.lg\:hover\:border-orange-300:hover{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.lg\:hover\:border-orange-400:hover{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.lg\:hover\:border-orange-500:hover{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.lg\:hover\:border-orange-600:hover{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.lg\:hover\:border-orange-700:hover{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.lg\:hover\:border-orange-800:hover{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.lg\:hover\:border-orange-900:hover{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.lg\:hover\:border-yellow-50:hover{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.lg\:hover\:border-yellow-100:hover{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.lg\:hover\:border-yellow-200:hover{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.lg\:hover\:border-yellow-300:hover{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.lg\:hover\:border-yellow-400:hover{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.lg\:hover\:border-yellow-500:hover{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.lg\:hover\:border-yellow-600:hover{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.lg\:hover\:border-yellow-700:hover{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.lg\:hover\:border-yellow-800:hover{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.lg\:hover\:border-yellow-900:hover{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.lg\:hover\:border-green-50:hover{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.lg\:hover\:border-green-100:hover{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.lg\:hover\:border-green-200:hover{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.lg\:hover\:border-green-300:hover{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.lg\:hover\:border-green-400:hover{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.lg\:hover\:border-green-500:hover{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.lg\:hover\:border-green-600:hover{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.lg\:hover\:border-green-700:hover{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.lg\:hover\:border-green-800:hover{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.lg\:hover\:border-green-900:hover{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.lg\:hover\:border-teal-50:hover{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.lg\:hover\:border-teal-100:hover{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.lg\:hover\:border-teal-200:hover{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.lg\:hover\:border-teal-300:hover{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.lg\:hover\:border-teal-400:hover{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.lg\:hover\:border-teal-500:hover{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.lg\:hover\:border-teal-600:hover{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.lg\:hover\:border-teal-700:hover{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.lg\:hover\:border-teal-800:hover{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.lg\:hover\:border-teal-900:hover{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.lg\:hover\:border-blue-50:hover{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.lg\:hover\:border-blue-100:hover{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.lg\:hover\:border-blue-200:hover{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.lg\:hover\:border-blue-300:hover{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.lg\:hover\:border-blue-400:hover{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.lg\:hover\:border-blue-500:hover{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.lg\:hover\:border-blue-600:hover{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.lg\:hover\:border-blue-700:hover{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.lg\:hover\:border-blue-800:hover{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.lg\:hover\:border-blue-900:hover{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.lg\:hover\:border-indigo-50:hover{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.lg\:hover\:border-indigo-100:hover{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.lg\:hover\:border-indigo-200:hover{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.lg\:hover\:border-indigo-300:hover{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.lg\:hover\:border-indigo-400:hover{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.lg\:hover\:border-indigo-500:hover{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.lg\:hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.lg\:hover\:border-indigo-700:hover{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.lg\:hover\:border-indigo-800:hover{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.lg\:hover\:border-indigo-900:hover{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.lg\:hover\:border-purple-50:hover{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.lg\:hover\:border-purple-100:hover{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.lg\:hover\:border-purple-200:hover{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.lg\:hover\:border-purple-300:hover{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.lg\:hover\:border-purple-400:hover{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.lg\:hover\:border-purple-500:hover{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.lg\:hover\:border-purple-600:hover{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.lg\:hover\:border-purple-700:hover{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.lg\:hover\:border-purple-800:hover{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.lg\:hover\:border-purple-900:hover{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.lg\:hover\:border-pink-50:hover{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.lg\:hover\:border-pink-100:hover{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.lg\:hover\:border-pink-200:hover{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.lg\:hover\:border-pink-300:hover{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.lg\:hover\:border-pink-400:hover{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.lg\:hover\:border-pink-500:hover{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.lg\:hover\:border-pink-600:hover{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.lg\:hover\:border-pink-700:hover{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.lg\:hover\:border-pink-800:hover{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.lg\:hover\:border-pink-900:hover{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.lg\:focus\:border-transparent:focus{border-color:transparent}.lg\:focus\:border-white:focus{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.lg\:focus\:border-black:focus{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.lg\:focus\:border-gray-50:focus{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.lg\:focus\:border-gray-100:focus{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.lg\:focus\:border-gray-200:focus{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.lg\:focus\:border-gray-300:focus{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.lg\:focus\:border-gray-400:focus{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.lg\:focus\:border-gray-500:focus{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.lg\:focus\:border-gray-600:focus{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.lg\:focus\:border-gray-700:focus{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.lg\:focus\:border-gray-800:focus{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.lg\:focus\:border-gray-900:focus{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.lg\:focus\:border-cool-gray-50:focus{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.lg\:focus\:border-cool-gray-100:focus{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.lg\:focus\:border-cool-gray-200:focus{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.lg\:focus\:border-cool-gray-300:focus{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.lg\:focus\:border-cool-gray-400:focus{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.lg\:focus\:border-cool-gray-500:focus{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.lg\:focus\:border-cool-gray-600:focus{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.lg\:focus\:border-cool-gray-700:focus{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.lg\:focus\:border-cool-gray-800:focus{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.lg\:focus\:border-cool-gray-900:focus{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.lg\:focus\:border-red-50:focus{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.lg\:focus\:border-red-100:focus{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.lg\:focus\:border-red-200:focus{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.lg\:focus\:border-red-300:focus{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.lg\:focus\:border-red-400:focus{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.lg\:focus\:border-red-500:focus{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.lg\:focus\:border-red-600:focus{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.lg\:focus\:border-red-700:focus{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.lg\:focus\:border-red-800:focus{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.lg\:focus\:border-red-900:focus{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.lg\:focus\:border-orange-50:focus{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.lg\:focus\:border-orange-100:focus{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.lg\:focus\:border-orange-200:focus{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.lg\:focus\:border-orange-300:focus{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.lg\:focus\:border-orange-400:focus{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.lg\:focus\:border-orange-500:focus{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.lg\:focus\:border-orange-600:focus{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.lg\:focus\:border-orange-700:focus{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.lg\:focus\:border-orange-800:focus{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.lg\:focus\:border-orange-900:focus{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.lg\:focus\:border-yellow-50:focus{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.lg\:focus\:border-yellow-100:focus{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.lg\:focus\:border-yellow-200:focus{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.lg\:focus\:border-yellow-300:focus{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.lg\:focus\:border-yellow-400:focus{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.lg\:focus\:border-yellow-500:focus{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.lg\:focus\:border-yellow-600:focus{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.lg\:focus\:border-yellow-700:focus{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.lg\:focus\:border-yellow-800:focus{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.lg\:focus\:border-yellow-900:focus{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.lg\:focus\:border-green-50:focus{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.lg\:focus\:border-green-100:focus{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.lg\:focus\:border-green-200:focus{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.lg\:focus\:border-green-300:focus{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.lg\:focus\:border-green-400:focus{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.lg\:focus\:border-green-500:focus{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.lg\:focus\:border-green-600:focus{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.lg\:focus\:border-green-700:focus{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.lg\:focus\:border-green-800:focus{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.lg\:focus\:border-green-900:focus{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.lg\:focus\:border-teal-50:focus{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.lg\:focus\:border-teal-100:focus{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.lg\:focus\:border-teal-200:focus{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.lg\:focus\:border-teal-300:focus{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.lg\:focus\:border-teal-400:focus{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.lg\:focus\:border-teal-500:focus{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.lg\:focus\:border-teal-600:focus{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.lg\:focus\:border-teal-700:focus{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.lg\:focus\:border-teal-800:focus{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.lg\:focus\:border-teal-900:focus{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.lg\:focus\:border-blue-50:focus{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.lg\:focus\:border-blue-100:focus{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.lg\:focus\:border-blue-200:focus{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.lg\:focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.lg\:focus\:border-blue-400:focus{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.lg\:focus\:border-blue-500:focus{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.lg\:focus\:border-blue-600:focus{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.lg\:focus\:border-blue-700:focus{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.lg\:focus\:border-blue-800:focus{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.lg\:focus\:border-blue-900:focus{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.lg\:focus\:border-indigo-50:focus{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.lg\:focus\:border-indigo-100:focus{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.lg\:focus\:border-indigo-200:focus{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.lg\:focus\:border-indigo-300:focus{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.lg\:focus\:border-indigo-400:focus{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.lg\:focus\:border-indigo-500:focus{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.lg\:focus\:border-indigo-600:focus{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.lg\:focus\:border-indigo-700:focus{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.lg\:focus\:border-indigo-800:focus{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.lg\:focus\:border-indigo-900:focus{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.lg\:focus\:border-purple-50:focus{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.lg\:focus\:border-purple-100:focus{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.lg\:focus\:border-purple-200:focus{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.lg\:focus\:border-purple-300:focus{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.lg\:focus\:border-purple-400:focus{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.lg\:focus\:border-purple-500:focus{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.lg\:focus\:border-purple-600:focus{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.lg\:focus\:border-purple-700:focus{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.lg\:focus\:border-purple-800:focus{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.lg\:focus\:border-purple-900:focus{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.lg\:focus\:border-pink-50:focus{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.lg\:focus\:border-pink-100:focus{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.lg\:focus\:border-pink-200:focus{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.lg\:focus\:border-pink-300:focus{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.lg\:focus\:border-pink-400:focus{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.lg\:focus\:border-pink-500:focus{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.lg\:focus\:border-pink-600:focus{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.lg\:focus\:border-pink-700:focus{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.lg\:focus\:border-pink-800:focus{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.lg\:focus\:border-pink-900:focus{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.lg\:border-opacity-0{--border-opacity:0}.lg\:border-opacity-25{--border-opacity:0.25}.lg\:border-opacity-50{--border-opacity:0.5}.lg\:border-opacity-75{--border-opacity:0.75}.lg\:border-opacity-100{--border-opacity:1}.lg\:hover\:border-opacity-0:hover{--border-opacity:0}.lg\:hover\:border-opacity-25:hover{--border-opacity:0.25}.lg\:hover\:border-opacity-50:hover{--border-opacity:0.5}.lg\:hover\:border-opacity-75:hover{--border-opacity:0.75}.lg\:hover\:border-opacity-100:hover{--border-opacity:1}.lg\:focus\:border-opacity-0:focus{--border-opacity:0}.lg\:focus\:border-opacity-25:focus{--border-opacity:0.25}.lg\:focus\:border-opacity-50:focus{--border-opacity:0.5}.lg\:focus\:border-opacity-75:focus{--border-opacity:0.75}.lg\:focus\:border-opacity-100:focus{--border-opacity:1}.lg\:rounded-none{border-radius:0}.lg\:rounded-sm{border-radius:.125rem}.lg\:rounded{border-radius:.25rem}.lg\:rounded-md{border-radius:.375rem}.lg\:rounded-lg{border-radius:.5rem}.lg\:rounded-full{border-radius:9999px}.lg\:rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.lg\:rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.lg\:rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.lg\:rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.lg\:rounded-t-sm{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.lg\:rounded-r-sm{border-top-right-radius:.125rem;border-bottom-right-radius:.125rem}.lg\:rounded-b-sm{border-bottom-right-radius:.125rem;border-bottom-left-radius:.125rem}.lg\:rounded-l-sm{border-top-left-radius:.125rem;border-bottom-left-radius:.125rem}.lg\:rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.lg\:rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.lg\:rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.lg\:rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.lg\:rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.lg\:rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.lg\:rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.lg\:rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.lg\:rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.lg\:rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.lg\:rounded-b-lg{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.lg\:rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.lg\:rounded-t-full{border-top-left-radius:9999px;border-top-right-radius:9999px}.lg\:rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.lg\:rounded-b-full{border-bottom-right-radius:9999px;border-bottom-left-radius:9999px}.lg\:rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.lg\:rounded-tl-none{border-top-left-radius:0}.lg\:rounded-tr-none{border-top-right-radius:0}.lg\:rounded-br-none{border-bottom-right-radius:0}.lg\:rounded-bl-none{border-bottom-left-radius:0}.lg\:rounded-tl-sm{border-top-left-radius:.125rem}.lg\:rounded-tr-sm{border-top-right-radius:.125rem}.lg\:rounded-br-sm{border-bottom-right-radius:.125rem}.lg\:rounded-bl-sm{border-bottom-left-radius:.125rem}.lg\:rounded-tl{border-top-left-radius:.25rem}.lg\:rounded-tr{border-top-right-radius:.25rem}.lg\:rounded-br{border-bottom-right-radius:.25rem}.lg\:rounded-bl{border-bottom-left-radius:.25rem}.lg\:rounded-tl-md{border-top-left-radius:.375rem}.lg\:rounded-tr-md{border-top-right-radius:.375rem}.lg\:rounded-br-md{border-bottom-right-radius:.375rem}.lg\:rounded-bl-md{border-bottom-left-radius:.375rem}.lg\:rounded-tl-lg{border-top-left-radius:.5rem}.lg\:rounded-tr-lg{border-top-right-radius:.5rem}.lg\:rounded-br-lg{border-bottom-right-radius:.5rem}.lg\:rounded-bl-lg{border-bottom-left-radius:.5rem}.lg\:rounded-tl-full{border-top-left-radius:9999px}.lg\:rounded-tr-full{border-top-right-radius:9999px}.lg\:rounded-br-full{border-bottom-right-radius:9999px}.lg\:rounded-bl-full{border-bottom-left-radius:9999px}.lg\:border-solid{border-style:solid}.lg\:border-dashed{border-style:dashed}.lg\:border-dotted{border-style:dotted}.lg\:border-double{border-style:double}.lg\:border-none{border-style:none}.lg\:border-0{border-width:0}.lg\:border-2{border-width:2px}.lg\:border-4{border-width:4px}.lg\:border-8{border-width:8px}.lg\:border{border-width:1px}.lg\:border-t-0{border-top-width:0}.lg\:border-r-0{border-right-width:0}.lg\:border-b-0{border-bottom-width:0}.lg\:border-l-0{border-left-width:0}.lg\:border-t-2{border-top-width:2px}.lg\:border-r-2{border-right-width:2px}.lg\:border-b-2{border-bottom-width:2px}.lg\:border-l-2{border-left-width:2px}.lg\:border-t-4{border-top-width:4px}.lg\:border-r-4{border-right-width:4px}.lg\:border-b-4{border-bottom-width:4px}.lg\:border-l-4{border-left-width:4px}.lg\:border-t-8{border-top-width:8px}.lg\:border-r-8{border-right-width:8px}.lg\:border-b-8{border-bottom-width:8px}.lg\:border-l-8{border-left-width:8px}.lg\:border-t{border-top-width:1px}.lg\:border-r{border-right-width:1px}.lg\:border-b{border-bottom-width:1px}.lg\:border-l{border-left-width:1px}.lg\:box-border{box-sizing:border-box}.lg\:box-content{box-sizing:content-box}.lg\:cursor-auto{cursor:auto}.lg\:cursor-default{cursor:default}.lg\:cursor-pointer{cursor:pointer}.lg\:cursor-wait{cursor:wait}.lg\:cursor-text{cursor:text}.lg\:cursor-move{cursor:move}.lg\:cursor-not-allowed{cursor:not-allowed}.lg\:block{display:block}.lg\:inline-block{display:inline-block}.lg\:inline{display:inline}.lg\:flex{display:flex}.lg\:inline-flex{display:inline-flex}.lg\:table{display:table}.lg\:table-caption{display:table-caption}.lg\:table-cell{display:table-cell}.lg\:table-column{display:table-column}.lg\:table-column-group{display:table-column-group}.lg\:table-footer-group{display:table-footer-group}.lg\:table-header-group{display:table-header-group}.lg\:table-row-group{display:table-row-group}.lg\:table-row{display:table-row}.lg\:flow-root{display:flow-root}.lg\:grid{display:grid}.lg\:inline-grid{display:inline-grid}.lg\:hidden{display:none}.lg\:flex-row{flex-direction:row}.lg\:flex-row-reverse{flex-direction:row-reverse}.lg\:flex-col{flex-direction:column}.lg\:flex-col-reverse{flex-direction:column-reverse}.lg\:flex-wrap{flex-wrap:wrap}.lg\:flex-wrap-reverse{flex-wrap:wrap-reverse}.lg\:flex-no-wrap{flex-wrap:nowrap}.lg\:items-start{align-items:flex-start}.lg\:items-end{align-items:flex-end}.lg\:items-center{align-items:center}.lg\:items-baseline{align-items:baseline}.lg\:items-stretch{align-items:stretch}.lg\:self-auto{align-self:auto}.lg\:self-start{align-self:flex-start}.lg\:self-end{align-self:flex-end}.lg\:self-center{align-self:center}.lg\:self-stretch{align-self:stretch}.lg\:justify-start{justify-content:flex-start}.lg\:justify-end{justify-content:flex-end}.lg\:justify-center{justify-content:center}.lg\:justify-between{justify-content:space-between}.lg\:justify-around{justify-content:space-around}.lg\:justify-evenly{justify-content:space-evenly}.lg\:content-center{align-content:center}.lg\:content-start{align-content:flex-start}.lg\:content-end{align-content:flex-end}.lg\:content-between{align-content:space-between}.lg\:content-around{align-content:space-around}.lg\:flex-1{flex:1 1 0%}.lg\:flex-auto{flex:1 1 auto}.lg\:flex-initial{flex:0 1 auto}.lg\:flex-none{flex:none}.lg\:flex-grow-0{flex-grow:0}.lg\:flex-grow{flex-grow:1}.lg\:flex-shrink-0{flex-shrink:0}.lg\:flex-shrink{flex-shrink:1}.lg\:order-1{order:1}.lg\:order-2{order:2}.lg\:order-3{order:3}.lg\:order-4{order:4}.lg\:order-5{order:5}.lg\:order-6{order:6}.lg\:order-7{order:7}.lg\:order-8{order:8}.lg\:order-9{order:9}.lg\:order-10{order:10}.lg\:order-11{order:11}.lg\:order-12{order:12}.lg\:order-first{order:-9999}.lg\:order-last{order:9999}.lg\:order-none{order:0}.lg\:float-right{float:right}.lg\:float-left{float:left}.lg\:float-none{float:none}.lg\:clearfix:after{content:"";display:table;clear:both}.lg\:clear-left{clear:left}.lg\:clear-right{clear:right}.lg\:clear-both{clear:both}.lg\:clear-none{clear:none}.lg\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.lg\:font-serif{font-family:Georgia,Cambria,"Times New Roman",Times,serif}.lg\:font-mono{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.lg\:font-hairline{font-weight:100}.lg\:font-thin{font-weight:200}.lg\:font-light{font-weight:300}.lg\:font-normal{font-weight:400}.lg\:font-medium{font-weight:500}.lg\:font-semibold{font-weight:600}.lg\:font-bold{font-weight:700}.lg\:font-extrabold{font-weight:800}.lg\:font-black{font-weight:900}.lg\:hover\:font-hairline:hover{font-weight:100}.lg\:hover\:font-thin:hover{font-weight:200}.lg\:hover\:font-light:hover{font-weight:300}.lg\:hover\:font-normal:hover{font-weight:400}.lg\:hover\:font-medium:hover{font-weight:500}.lg\:hover\:font-semibold:hover{font-weight:600}.lg\:hover\:font-bold:hover{font-weight:700}.lg\:hover\:font-extrabold:hover{font-weight:800}.lg\:hover\:font-black:hover{font-weight:900}.lg\:focus\:font-hairline:focus{font-weight:100}.lg\:focus\:font-thin:focus{font-weight:200}.lg\:focus\:font-light:focus{font-weight:300}.lg\:focus\:font-normal:focus{font-weight:400}.lg\:focus\:font-medium:focus{font-weight:500}.lg\:focus\:font-semibold:focus{font-weight:600}.lg\:focus\:font-bold:focus{font-weight:700}.lg\:focus\:font-extrabold:focus{font-weight:800}.lg\:focus\:font-black:focus{font-weight:900}.lg\:h-0{height:0}.lg\:h-1{height:.25rem}.lg\:h-2{height:.5rem}.lg\:h-3{height:.75rem}.lg\:h-4{height:1rem}.lg\:h-5{height:1.25rem}.lg\:h-6{height:1.5rem}.lg\:h-7{height:1.75rem}.lg\:h-8{height:2rem}.lg\:h-9{height:2.25rem}.lg\:h-10{height:2.5rem}.lg\:h-11{height:2.75rem}.lg\:h-12{height:3rem}.lg\:h-13{height:3.25rem}.lg\:h-14{height:3.5rem}.lg\:h-15{height:3.75rem}.lg\:h-16{height:4rem}.lg\:h-20{height:5rem}.lg\:h-24{height:6rem}.lg\:h-28{height:7rem}.lg\:h-32{height:8rem}.lg\:h-36{height:9rem}.lg\:h-40{height:10rem}.lg\:h-44{height:11rem}.lg\:h-48{height:12rem}.lg\:h-52{height:13rem}.lg\:h-56{height:14rem}.lg\:h-60{height:15rem}.lg\:h-64{height:16rem}.lg\:h-72{height:18rem}.lg\:h-80{height:20rem}.lg\:h-96{height:24rem}.lg\:h-auto{height:auto}.lg\:h-px{height:1px}.lg\:h-0\.5{height:.125rem}.lg\:h-1\.5{height:.375rem}.lg\:h-2\.5{height:.625rem}.lg\:h-3\.5{height:.875rem}.lg\:h-1\/2{height:50%}.lg\:h-1\/3{height:33.333333%}.lg\:h-2\/3{height:66.666667%}.lg\:h-1\/4{height:25%}.lg\:h-2\/4{height:50%}.lg\:h-3\/4{height:75%}.lg\:h-1\/5{height:20%}.lg\:h-2\/5{height:40%}.lg\:h-3\/5{height:60%}.lg\:h-4\/5{height:80%}.lg\:h-1\/6{height:16.666667%}.lg\:h-2\/6{height:33.333333%}.lg\:h-3\/6{height:50%}.lg\:h-4\/6{height:66.666667%}.lg\:h-5\/6{height:83.333333%}.lg\:h-1\/12{height:8.333333%}.lg\:h-2\/12{height:16.666667%}.lg\:h-3\/12{height:25%}.lg\:h-4\/12{height:33.333333%}.lg\:h-5\/12{height:41.666667%}.lg\:h-6\/12{height:50%}.lg\:h-7\/12{height:58.333333%}.lg\:h-8\/12{height:66.666667%}.lg\:h-9\/12{height:75%}.lg\:h-10\/12{height:83.333333%}.lg\:h-11\/12{height:91.666667%}.lg\:h-full{height:100%}.lg\:h-screen{height:100vh}.lg\:text-xs{font-size:.75rem}.lg\:text-sm{font-size:.875rem}.lg\:text-base{font-size:1rem}.lg\:text-lg{font-size:1.125rem}.lg\:text-xl{font-size:1.25rem}.lg\:text-2xl{font-size:1.5rem}.lg\:text-3xl{font-size:1.875rem}.lg\:text-4xl{font-size:2.25rem}.lg\:text-5xl{font-size:3rem}.lg\:text-6xl{font-size:4rem}.lg\:leading-3{line-height:.75rem}.lg\:leading-4{line-height:1rem}.lg\:leading-5{line-height:1.25rem}.lg\:leading-6{line-height:1.5rem}.lg\:leading-7{line-height:1.75rem}.lg\:leading-8{line-height:2rem}.lg\:leading-9{line-height:2.25rem}.lg\:leading-10{line-height:2.5rem}.lg\:leading-none{line-height:1}.lg\:leading-tight{line-height:1.25}.lg\:leading-snug{line-height:1.375}.lg\:leading-normal{line-height:1.5}.lg\:leading-relaxed{line-height:1.625}.lg\:leading-loose{line-height:2}.lg\:list-inside{list-style-position:inside}.lg\:list-outside{list-style-position:outside}.lg\:list-none{list-style-type:none}.lg\:list-disc{list-style-type:disc}.lg\:list-decimal{list-style-type:decimal}.lg\:m-0{margin:0}.lg\:m-1{margin:.25rem}.lg\:m-2{margin:.5rem}.lg\:m-3{margin:.75rem}.lg\:m-4{margin:1rem}.lg\:m-5{margin:1.25rem}.lg\:m-6{margin:1.5rem}.lg\:m-7{margin:1.75rem}.lg\:m-8{margin:2rem}.lg\:m-9{margin:2.25rem}.lg\:m-10{margin:2.5rem}.lg\:m-11{margin:2.75rem}.lg\:m-12{margin:3rem}.lg\:m-13{margin:3.25rem}.lg\:m-14{margin:3.5rem}.lg\:m-15{margin:3.75rem}.lg\:m-16{margin:4rem}.lg\:m-20{margin:5rem}.lg\:m-24{margin:6rem}.lg\:m-28{margin:7rem}.lg\:m-32{margin:8rem}.lg\:m-36{margin:9rem}.lg\:m-40{margin:10rem}.lg\:m-44{margin:11rem}.lg\:m-48{margin:12rem}.lg\:m-52{margin:13rem}.lg\:m-56{margin:14rem}.lg\:m-60{margin:15rem}.lg\:m-64{margin:16rem}.lg\:m-72{margin:18rem}.lg\:m-80{margin:20rem}.lg\:m-96{margin:24rem}.lg\:m-auto{margin:auto}.lg\:m-px{margin:1px}.lg\:m-0\.5{margin:.125rem}.lg\:m-1\.5{margin:.375rem}.lg\:m-2\.5{margin:.625rem}.lg\:m-3\.5{margin:.875rem}.lg\:m-1\/2{margin:50%}.lg\:m-1\/3{margin:33.333333%}.lg\:m-2\/3{margin:66.666667%}.lg\:m-1\/4{margin:25%}.lg\:m-2\/4{margin:50%}.lg\:m-3\/4{margin:75%}.lg\:m-1\/5{margin:20%}.lg\:m-2\/5{margin:40%}.lg\:m-3\/5{margin:60%}.lg\:m-4\/5{margin:80%}.lg\:m-1\/6{margin:16.666667%}.lg\:m-2\/6{margin:33.333333%}.lg\:m-3\/6{margin:50%}.lg\:m-4\/6{margin:66.666667%}.lg\:m-5\/6{margin:83.333333%}.lg\:m-1\/12{margin:8.333333%}.lg\:m-2\/12{margin:16.666667%}.lg\:m-3\/12{margin:25%}.lg\:m-4\/12{margin:33.333333%}.lg\:m-5\/12{margin:41.666667%}.lg\:m-6\/12{margin:50%}.lg\:m-7\/12{margin:58.333333%}.lg\:m-8\/12{margin:66.666667%}.lg\:m-9\/12{margin:75%}.lg\:m-10\/12{margin:83.333333%}.lg\:m-11\/12{margin:91.666667%}.lg\:m-full{margin:100%}.lg\:-m-1{margin:-.25rem}.lg\:-m-2{margin:-.5rem}.lg\:-m-3{margin:-.75rem}.lg\:-m-4{margin:-1rem}.lg\:-m-5{margin:-1.25rem}.lg\:-m-6{margin:-1.5rem}.lg\:-m-7{margin:-1.75rem}.lg\:-m-8{margin:-2rem}.lg\:-m-9{margin:-2.25rem}.lg\:-m-10{margin:-2.5rem}.lg\:-m-11{margin:-2.75rem}.lg\:-m-12{margin:-3rem}.lg\:-m-13{margin:-3.25rem}.lg\:-m-14{margin:-3.5rem}.lg\:-m-15{margin:-3.75rem}.lg\:-m-16{margin:-4rem}.lg\:-m-20{margin:-5rem}.lg\:-m-24{margin:-6rem}.lg\:-m-28{margin:-7rem}.lg\:-m-32{margin:-8rem}.lg\:-m-36{margin:-9rem}.lg\:-m-40{margin:-10rem}.lg\:-m-44{margin:-11rem}.lg\:-m-48{margin:-12rem}.lg\:-m-52{margin:-13rem}.lg\:-m-56{margin:-14rem}.lg\:-m-60{margin:-15rem}.lg\:-m-64{margin:-16rem}.lg\:-m-72{margin:-18rem}.lg\:-m-80{margin:-20rem}.lg\:-m-96{margin:-24rem}.lg\:-m-px{margin:-1px}.lg\:-m-0\.5{margin:-.125rem}.lg\:-m-1\.5{margin:-.375rem}.lg\:-m-2\.5{margin:-.625rem}.lg\:-m-3\.5{margin:-.875rem}.lg\:-m-1\/2{margin:-50%}.lg\:-m-1\/3{margin:-33.33333%}.lg\:-m-2\/3{margin:-66.66667%}.lg\:-m-1\/4{margin:-25%}.lg\:-m-2\/4{margin:-50%}.lg\:-m-3\/4{margin:-75%}.lg\:-m-1\/5{margin:-20%}.lg\:-m-2\/5{margin:-40%}.lg\:-m-3\/5{margin:-60%}.lg\:-m-4\/5{margin:-80%}.lg\:-m-1\/6{margin:-16.66667%}.lg\:-m-2\/6{margin:-33.33333%}.lg\:-m-3\/6{margin:-50%}.lg\:-m-4\/6{margin:-66.66667%}.lg\:-m-5\/6{margin:-83.33333%}.lg\:-m-1\/12{margin:-8.33333%}.lg\:-m-2\/12{margin:-16.66667%}.lg\:-m-3\/12{margin:-25%}.lg\:-m-4\/12{margin:-33.33333%}.lg\:-m-5\/12{margin:-41.66667%}.lg\:-m-6\/12{margin:-50%}.lg\:-m-7\/12{margin:-58.33333%}.lg\:-m-8\/12{margin:-66.66667%}.lg\:-m-9\/12{margin:-75%}.lg\:-m-10\/12{margin:-83.33333%}.lg\:-m-11\/12{margin:-91.66667%}.lg\:-m-full{margin:-100%}.lg\:my-0{margin-top:0;margin-bottom:0}.lg\:mx-0{margin-left:0;margin-right:0}.lg\:my-1{margin-top:.25rem;margin-bottom:.25rem}.lg\:mx-1{margin-left:.25rem;margin-right:.25rem}.lg\:my-2{margin-top:.5rem;margin-bottom:.5rem}.lg\:mx-2{margin-left:.5rem;margin-right:.5rem}.lg\:my-3{margin-top:.75rem;margin-bottom:.75rem}.lg\:mx-3{margin-left:.75rem;margin-right:.75rem}.lg\:my-4{margin-top:1rem;margin-bottom:1rem}.lg\:mx-4{margin-left:1rem;margin-right:1rem}.lg\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.lg\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.lg\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.lg\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.lg\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.lg\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.lg\:my-8{margin-top:2rem;margin-bottom:2rem}.lg\:mx-8{margin-left:2rem;margin-right:2rem}.lg\:my-9{margin-top:2.25rem;margin-bottom:2.25rem}.lg\:mx-9{margin-left:2.25rem;margin-right:2.25rem}.lg\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.lg\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.lg\:my-11{margin-top:2.75rem;margin-bottom:2.75rem}.lg\:mx-11{margin-left:2.75rem;margin-right:2.75rem}.lg\:my-12{margin-top:3rem;margin-bottom:3rem}.lg\:mx-12{margin-left:3rem;margin-right:3rem}.lg\:my-13{margin-top:3.25rem;margin-bottom:3.25rem}.lg\:mx-13{margin-left:3.25rem;margin-right:3.25rem}.lg\:my-14{margin-top:3.5rem;margin-bottom:3.5rem}.lg\:mx-14{margin-left:3.5rem;margin-right:3.5rem}.lg\:my-15{margin-top:3.75rem;margin-bottom:3.75rem}.lg\:mx-15{margin-left:3.75rem;margin-right:3.75rem}.lg\:my-16{margin-top:4rem;margin-bottom:4rem}.lg\:mx-16{margin-left:4rem;margin-right:4rem}.lg\:my-20{margin-top:5rem;margin-bottom:5rem}.lg\:mx-20{margin-left:5rem;margin-right:5rem}.lg\:my-24{margin-top:6rem;margin-bottom:6rem}.lg\:mx-24{margin-left:6rem;margin-right:6rem}.lg\:my-28{margin-top:7rem;margin-bottom:7rem}.lg\:mx-28{margin-left:7rem;margin-right:7rem}.lg\:my-32{margin-top:8rem;margin-bottom:8rem}.lg\:mx-32{margin-left:8rem;margin-right:8rem}.lg\:my-36{margin-top:9rem;margin-bottom:9rem}.lg\:mx-36{margin-left:9rem;margin-right:9rem}.lg\:my-40{margin-top:10rem;margin-bottom:10rem}.lg\:mx-40{margin-left:10rem;margin-right:10rem}.lg\:my-44{margin-top:11rem;margin-bottom:11rem}.lg\:mx-44{margin-left:11rem;margin-right:11rem}.lg\:my-48{margin-top:12rem;margin-bottom:12rem}.lg\:mx-48{margin-left:12rem;margin-right:12rem}.lg\:my-52{margin-top:13rem;margin-bottom:13rem}.lg\:mx-52{margin-left:13rem;margin-right:13rem}.lg\:my-56{margin-top:14rem;margin-bottom:14rem}.lg\:mx-56{margin-left:14rem;margin-right:14rem}.lg\:my-60{margin-top:15rem;margin-bottom:15rem}.lg\:mx-60{margin-left:15rem;margin-right:15rem}.lg\:my-64{margin-top:16rem;margin-bottom:16rem}.lg\:mx-64{margin-left:16rem;margin-right:16rem}.lg\:my-72{margin-top:18rem;margin-bottom:18rem}.lg\:mx-72{margin-left:18rem;margin-right:18rem}.lg\:my-80{margin-top:20rem;margin-bottom:20rem}.lg\:mx-80{margin-left:20rem;margin-right:20rem}.lg\:my-96{margin-top:24rem;margin-bottom:24rem}.lg\:mx-96{margin-left:24rem;margin-right:24rem}.lg\:my-auto{margin-top:auto;margin-bottom:auto}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:my-px{margin-top:1px;margin-bottom:1px}.lg\:mx-px{margin-left:1px;margin-right:1px}.lg\:my-0\.5{margin-top:.125rem;margin-bottom:.125rem}.lg\:mx-0\.5{margin-left:.125rem;margin-right:.125rem}.lg\:my-1\.5{margin-top:.375rem;margin-bottom:.375rem}.lg\:mx-1\.5{margin-left:.375rem;margin-right:.375rem}.lg\:my-2\.5{margin-top:.625rem;margin-bottom:.625rem}.lg\:mx-2\.5{margin-left:.625rem;margin-right:.625rem}.lg\:my-3\.5{margin-top:.875rem;margin-bottom:.875rem}.lg\:mx-3\.5{margin-left:.875rem;margin-right:.875rem}.lg\:my-1\/2{margin-top:50%;margin-bottom:50%}.lg\:mx-1\/2{margin-left:50%;margin-right:50%}.lg\:my-1\/3{margin-top:33.333333%;margin-bottom:33.333333%}.lg\:mx-1\/3{margin-left:33.333333%;margin-right:33.333333%}.lg\:my-2\/3{margin-top:66.666667%;margin-bottom:66.666667%}.lg\:mx-2\/3{margin-left:66.666667%;margin-right:66.666667%}.lg\:my-1\/4{margin-top:25%;margin-bottom:25%}.lg\:mx-1\/4{margin-left:25%;margin-right:25%}.lg\:my-2\/4{margin-top:50%;margin-bottom:50%}.lg\:mx-2\/4{margin-left:50%;margin-right:50%}.lg\:my-3\/4{margin-top:75%;margin-bottom:75%}.lg\:mx-3\/4{margin-left:75%;margin-right:75%}.lg\:my-1\/5{margin-top:20%;margin-bottom:20%}.lg\:mx-1\/5{margin-left:20%;margin-right:20%}.lg\:my-2\/5{margin-top:40%;margin-bottom:40%}.lg\:mx-2\/5{margin-left:40%;margin-right:40%}.lg\:my-3\/5{margin-top:60%;margin-bottom:60%}.lg\:mx-3\/5{margin-left:60%;margin-right:60%}.lg\:my-4\/5{margin-top:80%;margin-bottom:80%}.lg\:mx-4\/5{margin-left:80%;margin-right:80%}.lg\:my-1\/6{margin-top:16.666667%;margin-bottom:16.666667%}.lg\:mx-1\/6{margin-left:16.666667%;margin-right:16.666667%}.lg\:my-2\/6{margin-top:33.333333%;margin-bottom:33.333333%}.lg\:mx-2\/6{margin-left:33.333333%;margin-right:33.333333%}.lg\:my-3\/6{margin-top:50%;margin-bottom:50%}.lg\:mx-3\/6{margin-left:50%;margin-right:50%}.lg\:my-4\/6{margin-top:66.666667%;margin-bottom:66.666667%}.lg\:mx-4\/6{margin-left:66.666667%;margin-right:66.666667%}.lg\:my-5\/6{margin-top:83.333333%;margin-bottom:83.333333%}.lg\:mx-5\/6{margin-left:83.333333%;margin-right:83.333333%}.lg\:my-1\/12{margin-top:8.333333%;margin-bottom:8.333333%}.lg\:mx-1\/12{margin-left:8.333333%;margin-right:8.333333%}.lg\:my-2\/12{margin-top:16.666667%;margin-bottom:16.666667%}.lg\:mx-2\/12{margin-left:16.666667%;margin-right:16.666667%}.lg\:my-3\/12{margin-top:25%;margin-bottom:25%}.lg\:mx-3\/12{margin-left:25%;margin-right:25%}.lg\:my-4\/12{margin-top:33.333333%;margin-bottom:33.333333%}.lg\:mx-4\/12{margin-left:33.333333%;margin-right:33.333333%}.lg\:my-5\/12{margin-top:41.666667%;margin-bottom:41.666667%}.lg\:mx-5\/12{margin-left:41.666667%;margin-right:41.666667%}.lg\:my-6\/12{margin-top:50%;margin-bottom:50%}.lg\:mx-6\/12{margin-left:50%;margin-right:50%}.lg\:my-7\/12{margin-top:58.333333%;margin-bottom:58.333333%}.lg\:mx-7\/12{margin-left:58.333333%;margin-right:58.333333%}.lg\:my-8\/12{margin-top:66.666667%;margin-bottom:66.666667%}.lg\:mx-8\/12{margin-left:66.666667%;margin-right:66.666667%}.lg\:my-9\/12{margin-top:75%;margin-bottom:75%}.lg\:mx-9\/12{margin-left:75%;margin-right:75%}.lg\:my-10\/12{margin-top:83.333333%;margin-bottom:83.333333%}.lg\:mx-10\/12{margin-left:83.333333%;margin-right:83.333333%}.lg\:my-11\/12{margin-top:91.666667%;margin-bottom:91.666667%}.lg\:mx-11\/12{margin-left:91.666667%;margin-right:91.666667%}.lg\:my-full{margin-top:100%;margin-bottom:100%}.lg\:mx-full{margin-left:100%;margin-right:100%}.lg\:-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.lg\:-mx-1{margin-left:-.25rem;margin-right:-.25rem}.lg\:-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.lg\:-mx-2{margin-left:-.5rem;margin-right:-.5rem}.lg\:-my-3{margin-top:-.75rem;margin-bottom:-.75rem}.lg\:-mx-3{margin-left:-.75rem;margin-right:-.75rem}.lg\:-my-4{margin-top:-1rem;margin-bottom:-1rem}.lg\:-mx-4{margin-left:-1rem;margin-right:-1rem}.lg\:-my-5{margin-top:-1.25rem;margin-bottom:-1.25rem}.lg\:-mx-5{margin-left:-1.25rem;margin-right:-1.25rem}.lg\:-my-6{margin-top:-1.5rem;margin-bottom:-1.5rem}.lg\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.lg\:-my-7{margin-top:-1.75rem;margin-bottom:-1.75rem}.lg\:-mx-7{margin-left:-1.75rem;margin-right:-1.75rem}.lg\:-my-8{margin-top:-2rem;margin-bottom:-2rem}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:-my-9{margin-top:-2.25rem;margin-bottom:-2.25rem}.lg\:-mx-9{margin-left:-2.25rem;margin-right:-2.25rem}.lg\:-my-10{margin-top:-2.5rem;margin-bottom:-2.5rem}.lg\:-mx-10{margin-left:-2.5rem;margin-right:-2.5rem}.lg\:-my-11{margin-top:-2.75rem;margin-bottom:-2.75rem}.lg\:-mx-11{margin-left:-2.75rem;margin-right:-2.75rem}.lg\:-my-12{margin-top:-3rem;margin-bottom:-3rem}.lg\:-mx-12{margin-left:-3rem;margin-right:-3rem}.lg\:-my-13{margin-top:-3.25rem;margin-bottom:-3.25rem}.lg\:-mx-13{margin-left:-3.25rem;margin-right:-3.25rem}.lg\:-my-14{margin-top:-3.5rem;margin-bottom:-3.5rem}.lg\:-mx-14{margin-left:-3.5rem;margin-right:-3.5rem}.lg\:-my-15{margin-top:-3.75rem;margin-bottom:-3.75rem}.lg\:-mx-15{margin-left:-3.75rem;margin-right:-3.75rem}.lg\:-my-16{margin-top:-4rem;margin-bottom:-4rem}.lg\:-mx-16{margin-left:-4rem;margin-right:-4rem}.lg\:-my-20{margin-top:-5rem;margin-bottom:-5rem}.lg\:-mx-20{margin-left:-5rem;margin-right:-5rem}.lg\:-my-24{margin-top:-6rem;margin-bottom:-6rem}.lg\:-mx-24{margin-left:-6rem;margin-right:-6rem}.lg\:-my-28{margin-top:-7rem;margin-bottom:-7rem}.lg\:-mx-28{margin-left:-7rem;margin-right:-7rem}.lg\:-my-32{margin-top:-8rem;margin-bottom:-8rem}.lg\:-mx-32{margin-left:-8rem;margin-right:-8rem}.lg\:-my-36{margin-top:-9rem;margin-bottom:-9rem}.lg\:-mx-36{margin-left:-9rem;margin-right:-9rem}.lg\:-my-40{margin-top:-10rem;margin-bottom:-10rem}.lg\:-mx-40{margin-left:-10rem;margin-right:-10rem}.lg\:-my-44{margin-top:-11rem;margin-bottom:-11rem}.lg\:-mx-44{margin-left:-11rem;margin-right:-11rem}.lg\:-my-48{margin-top:-12rem;margin-bottom:-12rem}.lg\:-mx-48{margin-left:-12rem;margin-right:-12rem}.lg\:-my-52{margin-top:-13rem;margin-bottom:-13rem}.lg\:-mx-52{margin-left:-13rem;margin-right:-13rem}.lg\:-my-56{margin-top:-14rem;margin-bottom:-14rem}.lg\:-mx-56{margin-left:-14rem;margin-right:-14rem}.lg\:-my-60{margin-top:-15rem;margin-bottom:-15rem}.lg\:-mx-60{margin-left:-15rem;margin-right:-15rem}.lg\:-my-64{margin-top:-16rem;margin-bottom:-16rem}.lg\:-mx-64{margin-left:-16rem;margin-right:-16rem}.lg\:-my-72{margin-top:-18rem;margin-bottom:-18rem}.lg\:-mx-72{margin-left:-18rem;margin-right:-18rem}.lg\:-my-80{margin-top:-20rem;margin-bottom:-20rem}.lg\:-mx-80{margin-left:-20rem;margin-right:-20rem}.lg\:-my-96{margin-top:-24rem;margin-bottom:-24rem}.lg\:-mx-96{margin-left:-24rem;margin-right:-24rem}.lg\:-my-px{margin-top:-1px;margin-bottom:-1px}.lg\:-mx-px{margin-left:-1px;margin-right:-1px}.lg\:-my-0\.5{margin-top:-.125rem;margin-bottom:-.125rem}.lg\:-mx-0\.5{margin-left:-.125rem;margin-right:-.125rem}.lg\:-my-1\.5{margin-top:-.375rem;margin-bottom:-.375rem}.lg\:-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.lg\:-my-2\.5{margin-top:-.625rem;margin-bottom:-.625rem}.lg\:-mx-2\.5{margin-left:-.625rem;margin-right:-.625rem}.lg\:-my-3\.5{margin-top:-.875rem;margin-bottom:-.875rem}.lg\:-mx-3\.5{margin-left:-.875rem;margin-right:-.875rem}.lg\:-my-1\/2{margin-top:-50%;margin-bottom:-50%}.lg\:-mx-1\/2{margin-left:-50%;margin-right:-50%}.lg\:-my-1\/3{margin-top:-33.33333%;margin-bottom:-33.33333%}.lg\:-mx-1\/3{margin-left:-33.33333%;margin-right:-33.33333%}.lg\:-my-2\/3{margin-top:-66.66667%;margin-bottom:-66.66667%}.lg\:-mx-2\/3{margin-left:-66.66667%;margin-right:-66.66667%}.lg\:-my-1\/4{margin-top:-25%;margin-bottom:-25%}.lg\:-mx-1\/4{margin-left:-25%;margin-right:-25%}.lg\:-my-2\/4{margin-top:-50%;margin-bottom:-50%}.lg\:-mx-2\/4{margin-left:-50%;margin-right:-50%}.lg\:-my-3\/4{margin-top:-75%;margin-bottom:-75%}.lg\:-mx-3\/4{margin-left:-75%;margin-right:-75%}.lg\:-my-1\/5{margin-top:-20%;margin-bottom:-20%}.lg\:-mx-1\/5{margin-left:-20%;margin-right:-20%}.lg\:-my-2\/5{margin-top:-40%;margin-bottom:-40%}.lg\:-mx-2\/5{margin-left:-40%;margin-right:-40%}.lg\:-my-3\/5{margin-top:-60%;margin-bottom:-60%}.lg\:-mx-3\/5{margin-left:-60%;margin-right:-60%}.lg\:-my-4\/5{margin-top:-80%;margin-bottom:-80%}.lg\:-mx-4\/5{margin-left:-80%;margin-right:-80%}.lg\:-my-1\/6{margin-top:-16.66667%;margin-bottom:-16.66667%}.lg\:-mx-1\/6{margin-left:-16.66667%;margin-right:-16.66667%}.lg\:-my-2\/6{margin-top:-33.33333%;margin-bottom:-33.33333%}.lg\:-mx-2\/6{margin-left:-33.33333%;margin-right:-33.33333%}.lg\:-my-3\/6{margin-top:-50%;margin-bottom:-50%}.lg\:-mx-3\/6{margin-left:-50%;margin-right:-50%}.lg\:-my-4\/6{margin-top:-66.66667%;margin-bottom:-66.66667%}.lg\:-mx-4\/6{margin-left:-66.66667%;margin-right:-66.66667%}.lg\:-my-5\/6{margin-top:-83.33333%;margin-bottom:-83.33333%}.lg\:-mx-5\/6{margin-left:-83.33333%;margin-right:-83.33333%}.lg\:-my-1\/12{margin-top:-8.33333%;margin-bottom:-8.33333%}.lg\:-mx-1\/12{margin-left:-8.33333%;margin-right:-8.33333%}.lg\:-my-2\/12{margin-top:-16.66667%;margin-bottom:-16.66667%}.lg\:-mx-2\/12{margin-left:-16.66667%;margin-right:-16.66667%}.lg\:-my-3\/12{margin-top:-25%;margin-bottom:-25%}.lg\:-mx-3\/12{margin-left:-25%;margin-right:-25%}.lg\:-my-4\/12{margin-top:-33.33333%;margin-bottom:-33.33333%}.lg\:-mx-4\/12{margin-left:-33.33333%;margin-right:-33.33333%}.lg\:-my-5\/12{margin-top:-41.66667%;margin-bottom:-41.66667%}.lg\:-mx-5\/12{margin-left:-41.66667%;margin-right:-41.66667%}.lg\:-my-6\/12{margin-top:-50%;margin-bottom:-50%}.lg\:-mx-6\/12{margin-left:-50%;margin-right:-50%}.lg\:-my-7\/12{margin-top:-58.33333%;margin-bottom:-58.33333%}.lg\:-mx-7\/12{margin-left:-58.33333%;margin-right:-58.33333%}.lg\:-my-8\/12{margin-top:-66.66667%;margin-bottom:-66.66667%}.lg\:-mx-8\/12{margin-left:-66.66667%;margin-right:-66.66667%}.lg\:-my-9\/12{margin-top:-75%;margin-bottom:-75%}.lg\:-mx-9\/12{margin-left:-75%;margin-right:-75%}.lg\:-my-10\/12{margin-top:-83.33333%;margin-bottom:-83.33333%}.lg\:-mx-10\/12{margin-left:-83.33333%;margin-right:-83.33333%}.lg\:-my-11\/12{margin-top:-91.66667%;margin-bottom:-91.66667%}.lg\:-mx-11\/12{margin-left:-91.66667%;margin-right:-91.66667%}.lg\:-my-full{margin-top:-100%;margin-bottom:-100%}.lg\:-mx-full{margin-left:-100%;margin-right:-100%}.lg\:mt-0{margin-top:0}.lg\:mr-0{margin-right:0}.lg\:mb-0{margin-bottom:0}.lg\:ml-0{margin-left:0}.lg\:mt-1{margin-top:.25rem}.lg\:mr-1{margin-right:.25rem}.lg\:mb-1{margin-bottom:.25rem}.lg\:ml-1{margin-left:.25rem}.lg\:mt-2{margin-top:.5rem}.lg\:mr-2{margin-right:.5rem}.lg\:mb-2{margin-bottom:.5rem}.lg\:ml-2{margin-left:.5rem}.lg\:mt-3{margin-top:.75rem}.lg\:mr-3{margin-right:.75rem}.lg\:mb-3{margin-bottom:.75rem}.lg\:ml-3{margin-left:.75rem}.lg\:mt-4{margin-top:1rem}.lg\:mr-4{margin-right:1rem}.lg\:mb-4{margin-bottom:1rem}.lg\:ml-4{margin-left:1rem}.lg\:mt-5{margin-top:1.25rem}.lg\:mr-5{margin-right:1.25rem}.lg\:mb-5{margin-bottom:1.25rem}.lg\:ml-5{margin-left:1.25rem}.lg\:mt-6{margin-top:1.5rem}.lg\:mr-6{margin-right:1.5rem}.lg\:mb-6{margin-bottom:1.5rem}.lg\:ml-6{margin-left:1.5rem}.lg\:mt-7{margin-top:1.75rem}.lg\:mr-7{margin-right:1.75rem}.lg\:mb-7{margin-bottom:1.75rem}.lg\:ml-7{margin-left:1.75rem}.lg\:mt-8{margin-top:2rem}.lg\:mr-8{margin-right:2rem}.lg\:mb-8{margin-bottom:2rem}.lg\:ml-8{margin-left:2rem}.lg\:mt-9{margin-top:2.25rem}.lg\:mr-9{margin-right:2.25rem}.lg\:mb-9{margin-bottom:2.25rem}.lg\:ml-9{margin-left:2.25rem}.lg\:mt-10{margin-top:2.5rem}.lg\:mr-10{margin-right:2.5rem}.lg\:mb-10{margin-bottom:2.5rem}.lg\:ml-10{margin-left:2.5rem}.lg\:mt-11{margin-top:2.75rem}.lg\:mr-11{margin-right:2.75rem}.lg\:mb-11{margin-bottom:2.75rem}.lg\:ml-11{margin-left:2.75rem}.lg\:mt-12{margin-top:3rem}.lg\:mr-12{margin-right:3rem}.lg\:mb-12{margin-bottom:3rem}.lg\:ml-12{margin-left:3rem}.lg\:mt-13{margin-top:3.25rem}.lg\:mr-13{margin-right:3.25rem}.lg\:mb-13{margin-bottom:3.25rem}.lg\:ml-13{margin-left:3.25rem}.lg\:mt-14{margin-top:3.5rem}.lg\:mr-14{margin-right:3.5rem}.lg\:mb-14{margin-bottom:3.5rem}.lg\:ml-14{margin-left:3.5rem}.lg\:mt-15{margin-top:3.75rem}.lg\:mr-15{margin-right:3.75rem}.lg\:mb-15{margin-bottom:3.75rem}.lg\:ml-15{margin-left:3.75rem}.lg\:mt-16{margin-top:4rem}.lg\:mr-16{margin-right:4rem}.lg\:mb-16{margin-bottom:4rem}.lg\:ml-16{margin-left:4rem}.lg\:mt-20{margin-top:5rem}.lg\:mr-20{margin-right:5rem}.lg\:mb-20{margin-bottom:5rem}.lg\:ml-20{margin-left:5rem}.lg\:mt-24{margin-top:6rem}.lg\:mr-24{margin-right:6rem}.lg\:mb-24{margin-bottom:6rem}.lg\:ml-24{margin-left:6rem}.lg\:mt-28{margin-top:7rem}.lg\:mr-28{margin-right:7rem}.lg\:mb-28{margin-bottom:7rem}.lg\:ml-28{margin-left:7rem}.lg\:mt-32{margin-top:8rem}.lg\:mr-32{margin-right:8rem}.lg\:mb-32{margin-bottom:8rem}.lg\:ml-32{margin-left:8rem}.lg\:mt-36{margin-top:9rem}.lg\:mr-36{margin-right:9rem}.lg\:mb-36{margin-bottom:9rem}.lg\:ml-36{margin-left:9rem}.lg\:mt-40{margin-top:10rem}.lg\:mr-40{margin-right:10rem}.lg\:mb-40{margin-bottom:10rem}.lg\:ml-40{margin-left:10rem}.lg\:mt-44{margin-top:11rem}.lg\:mr-44{margin-right:11rem}.lg\:mb-44{margin-bottom:11rem}.lg\:ml-44{margin-left:11rem}.lg\:mt-48{margin-top:12rem}.lg\:mr-48{margin-right:12rem}.lg\:mb-48{margin-bottom:12rem}.lg\:ml-48{margin-left:12rem}.lg\:mt-52{margin-top:13rem}.lg\:mr-52{margin-right:13rem}.lg\:mb-52{margin-bottom:13rem}.lg\:ml-52{margin-left:13rem}.lg\:mt-56{margin-top:14rem}.lg\:mr-56{margin-right:14rem}.lg\:mb-56{margin-bottom:14rem}.lg\:ml-56{margin-left:14rem}.lg\:mt-60{margin-top:15rem}.lg\:mr-60{margin-right:15rem}.lg\:mb-60{margin-bottom:15rem}.lg\:ml-60{margin-left:15rem}.lg\:mt-64{margin-top:16rem}.lg\:mr-64{margin-right:16rem}.lg\:mb-64{margin-bottom:16rem}.lg\:ml-64{margin-left:16rem}.lg\:mt-72{margin-top:18rem}.lg\:mr-72{margin-right:18rem}.lg\:mb-72{margin-bottom:18rem}.lg\:ml-72{margin-left:18rem}.lg\:mt-80{margin-top:20rem}.lg\:mr-80{margin-right:20rem}.lg\:mb-80{margin-bottom:20rem}.lg\:ml-80{margin-left:20rem}.lg\:mt-96{margin-top:24rem}.lg\:mr-96{margin-right:24rem}.lg\:mb-96{margin-bottom:24rem}.lg\:ml-96{margin-left:24rem}.lg\:mt-auto{margin-top:auto}.lg\:mr-auto{margin-right:auto}.lg\:mb-auto{margin-bottom:auto}.lg\:ml-auto{margin-left:auto}.lg\:mt-px{margin-top:1px}.lg\:mr-px{margin-right:1px}.lg\:mb-px{margin-bottom:1px}.lg\:ml-px{margin-left:1px}.lg\:mt-0\.5{margin-top:.125rem}.lg\:mr-0\.5{margin-right:.125rem}.lg\:mb-0\.5{margin-bottom:.125rem}.lg\:ml-0\.5{margin-left:.125rem}.lg\:mt-1\.5{margin-top:.375rem}.lg\:mr-1\.5{margin-right:.375rem}.lg\:mb-1\.5{margin-bottom:.375rem}.lg\:ml-1\.5{margin-left:.375rem}.lg\:mt-2\.5{margin-top:.625rem}.lg\:mr-2\.5{margin-right:.625rem}.lg\:mb-2\.5{margin-bottom:.625rem}.lg\:ml-2\.5{margin-left:.625rem}.lg\:mt-3\.5{margin-top:.875rem}.lg\:mr-3\.5{margin-right:.875rem}.lg\:mb-3\.5{margin-bottom:.875rem}.lg\:ml-3\.5{margin-left:.875rem}.lg\:mt-1\/2{margin-top:50%}.lg\:mr-1\/2{margin-right:50%}.lg\:mb-1\/2{margin-bottom:50%}.lg\:ml-1\/2{margin-left:50%}.lg\:mt-1\/3{margin-top:33.333333%}.lg\:mr-1\/3{margin-right:33.333333%}.lg\:mb-1\/3{margin-bottom:33.333333%}.lg\:ml-1\/3{margin-left:33.333333%}.lg\:mt-2\/3{margin-top:66.666667%}.lg\:mr-2\/3{margin-right:66.666667%}.lg\:mb-2\/3{margin-bottom:66.666667%}.lg\:ml-2\/3{margin-left:66.666667%}.lg\:mt-1\/4{margin-top:25%}.lg\:mr-1\/4{margin-right:25%}.lg\:mb-1\/4{margin-bottom:25%}.lg\:ml-1\/4{margin-left:25%}.lg\:mt-2\/4{margin-top:50%}.lg\:mr-2\/4{margin-right:50%}.lg\:mb-2\/4{margin-bottom:50%}.lg\:ml-2\/4{margin-left:50%}.lg\:mt-3\/4{margin-top:75%}.lg\:mr-3\/4{margin-right:75%}.lg\:mb-3\/4{margin-bottom:75%}.lg\:ml-3\/4{margin-left:75%}.lg\:mt-1\/5{margin-top:20%}.lg\:mr-1\/5{margin-right:20%}.lg\:mb-1\/5{margin-bottom:20%}.lg\:ml-1\/5{margin-left:20%}.lg\:mt-2\/5{margin-top:40%}.lg\:mr-2\/5{margin-right:40%}.lg\:mb-2\/5{margin-bottom:40%}.lg\:ml-2\/5{margin-left:40%}.lg\:mt-3\/5{margin-top:60%}.lg\:mr-3\/5{margin-right:60%}.lg\:mb-3\/5{margin-bottom:60%}.lg\:ml-3\/5{margin-left:60%}.lg\:mt-4\/5{margin-top:80%}.lg\:mr-4\/5{margin-right:80%}.lg\:mb-4\/5{margin-bottom:80%}.lg\:ml-4\/5{margin-left:80%}.lg\:mt-1\/6{margin-top:16.666667%}.lg\:mr-1\/6{margin-right:16.666667%}.lg\:mb-1\/6{margin-bottom:16.666667%}.lg\:ml-1\/6{margin-left:16.666667%}.lg\:mt-2\/6{margin-top:33.333333%}.lg\:mr-2\/6{margin-right:33.333333%}.lg\:mb-2\/6{margin-bottom:33.333333%}.lg\:ml-2\/6{margin-left:33.333333%}.lg\:mt-3\/6{margin-top:50%}.lg\:mr-3\/6{margin-right:50%}.lg\:mb-3\/6{margin-bottom:50%}.lg\:ml-3\/6{margin-left:50%}.lg\:mt-4\/6{margin-top:66.666667%}.lg\:mr-4\/6{margin-right:66.666667%}.lg\:mb-4\/6{margin-bottom:66.666667%}.lg\:ml-4\/6{margin-left:66.666667%}.lg\:mt-5\/6{margin-top:83.333333%}.lg\:mr-5\/6{margin-right:83.333333%}.lg\:mb-5\/6{margin-bottom:83.333333%}.lg\:ml-5\/6{margin-left:83.333333%}.lg\:mt-1\/12{margin-top:8.333333%}.lg\:mr-1\/12{margin-right:8.333333%}.lg\:mb-1\/12{margin-bottom:8.333333%}.lg\:ml-1\/12{margin-left:8.333333%}.lg\:mt-2\/12{margin-top:16.666667%}.lg\:mr-2\/12{margin-right:16.666667%}.lg\:mb-2\/12{margin-bottom:16.666667%}.lg\:ml-2\/12{margin-left:16.666667%}.lg\:mt-3\/12{margin-top:25%}.lg\:mr-3\/12{margin-right:25%}.lg\:mb-3\/12{margin-bottom:25%}.lg\:ml-3\/12{margin-left:25%}.lg\:mt-4\/12{margin-top:33.333333%}.lg\:mr-4\/12{margin-right:33.333333%}.lg\:mb-4\/12{margin-bottom:33.333333%}.lg\:ml-4\/12{margin-left:33.333333%}.lg\:mt-5\/12{margin-top:41.666667%}.lg\:mr-5\/12{margin-right:41.666667%}.lg\:mb-5\/12{margin-bottom:41.666667%}.lg\:ml-5\/12{margin-left:41.666667%}.lg\:mt-6\/12{margin-top:50%}.lg\:mr-6\/12{margin-right:50%}.lg\:mb-6\/12{margin-bottom:50%}.lg\:ml-6\/12{margin-left:50%}.lg\:mt-7\/12{margin-top:58.333333%}.lg\:mr-7\/12{margin-right:58.333333%}.lg\:mb-7\/12{margin-bottom:58.333333%}.lg\:ml-7\/12{margin-left:58.333333%}.lg\:mt-8\/12{margin-top:66.666667%}.lg\:mr-8\/12{margin-right:66.666667%}.lg\:mb-8\/12{margin-bottom:66.666667%}.lg\:ml-8\/12{margin-left:66.666667%}.lg\:mt-9\/12{margin-top:75%}.lg\:mr-9\/12{margin-right:75%}.lg\:mb-9\/12{margin-bottom:75%}.lg\:ml-9\/12{margin-left:75%}.lg\:mt-10\/12{margin-top:83.333333%}.lg\:mr-10\/12{margin-right:83.333333%}.lg\:mb-10\/12{margin-bottom:83.333333%}.lg\:ml-10\/12{margin-left:83.333333%}.lg\:mt-11\/12{margin-top:91.666667%}.lg\:mr-11\/12{margin-right:91.666667%}.lg\:mb-11\/12{margin-bottom:91.666667%}.lg\:ml-11\/12{margin-left:91.666667%}.lg\:mt-full{margin-top:100%}.lg\:mr-full{margin-right:100%}.lg\:mb-full{margin-bottom:100%}.lg\:ml-full{margin-left:100%}.lg\:-mt-1{margin-top:-.25rem}.lg\:-mr-1{margin-right:-.25rem}.lg\:-mb-1{margin-bottom:-.25rem}.lg\:-ml-1{margin-left:-.25rem}.lg\:-mt-2{margin-top:-.5rem}.lg\:-mr-2{margin-right:-.5rem}.lg\:-mb-2{margin-bottom:-.5rem}.lg\:-ml-2{margin-left:-.5rem}.lg\:-mt-3{margin-top:-.75rem}.lg\:-mr-3{margin-right:-.75rem}.lg\:-mb-3{margin-bottom:-.75rem}.lg\:-ml-3{margin-left:-.75rem}.lg\:-mt-4{margin-top:-1rem}.lg\:-mr-4{margin-right:-1rem}.lg\:-mb-4{margin-bottom:-1rem}.lg\:-ml-4{margin-left:-1rem}.lg\:-mt-5{margin-top:-1.25rem}.lg\:-mr-5{margin-right:-1.25rem}.lg\:-mb-5{margin-bottom:-1.25rem}.lg\:-ml-5{margin-left:-1.25rem}.lg\:-mt-6{margin-top:-1.5rem}.lg\:-mr-6{margin-right:-1.5rem}.lg\:-mb-6{margin-bottom:-1.5rem}.lg\:-ml-6{margin-left:-1.5rem}.lg\:-mt-7{margin-top:-1.75rem}.lg\:-mr-7{margin-right:-1.75rem}.lg\:-mb-7{margin-bottom:-1.75rem}.lg\:-ml-7{margin-left:-1.75rem}.lg\:-mt-8{margin-top:-2rem}.lg\:-mr-8{margin-right:-2rem}.lg\:-mb-8{margin-bottom:-2rem}.lg\:-ml-8{margin-left:-2rem}.lg\:-mt-9{margin-top:-2.25rem}.lg\:-mr-9{margin-right:-2.25rem}.lg\:-mb-9{margin-bottom:-2.25rem}.lg\:-ml-9{margin-left:-2.25rem}.lg\:-mt-10{margin-top:-2.5rem}.lg\:-mr-10{margin-right:-2.5rem}.lg\:-mb-10{margin-bottom:-2.5rem}.lg\:-ml-10{margin-left:-2.5rem}.lg\:-mt-11{margin-top:-2.75rem}.lg\:-mr-11{margin-right:-2.75rem}.lg\:-mb-11{margin-bottom:-2.75rem}.lg\:-ml-11{margin-left:-2.75rem}.lg\:-mt-12{margin-top:-3rem}.lg\:-mr-12{margin-right:-3rem}.lg\:-mb-12{margin-bottom:-3rem}.lg\:-ml-12{margin-left:-3rem}.lg\:-mt-13{margin-top:-3.25rem}.lg\:-mr-13{margin-right:-3.25rem}.lg\:-mb-13{margin-bottom:-3.25rem}.lg\:-ml-13{margin-left:-3.25rem}.lg\:-mt-14{margin-top:-3.5rem}.lg\:-mr-14{margin-right:-3.5rem}.lg\:-mb-14{margin-bottom:-3.5rem}.lg\:-ml-14{margin-left:-3.5rem}.lg\:-mt-15{margin-top:-3.75rem}.lg\:-mr-15{margin-right:-3.75rem}.lg\:-mb-15{margin-bottom:-3.75rem}.lg\:-ml-15{margin-left:-3.75rem}.lg\:-mt-16{margin-top:-4rem}.lg\:-mr-16{margin-right:-4rem}.lg\:-mb-16{margin-bottom:-4rem}.lg\:-ml-16{margin-left:-4rem}.lg\:-mt-20{margin-top:-5rem}.lg\:-mr-20{margin-right:-5rem}.lg\:-mb-20{margin-bottom:-5rem}.lg\:-ml-20{margin-left:-5rem}.lg\:-mt-24{margin-top:-6rem}.lg\:-mr-24{margin-right:-6rem}.lg\:-mb-24{margin-bottom:-6rem}.lg\:-ml-24{margin-left:-6rem}.lg\:-mt-28{margin-top:-7rem}.lg\:-mr-28{margin-right:-7rem}.lg\:-mb-28{margin-bottom:-7rem}.lg\:-ml-28{margin-left:-7rem}.lg\:-mt-32{margin-top:-8rem}.lg\:-mr-32{margin-right:-8rem}.lg\:-mb-32{margin-bottom:-8rem}.lg\:-ml-32{margin-left:-8rem}.lg\:-mt-36{margin-top:-9rem}.lg\:-mr-36{margin-right:-9rem}.lg\:-mb-36{margin-bottom:-9rem}.lg\:-ml-36{margin-left:-9rem}.lg\:-mt-40{margin-top:-10rem}.lg\:-mr-40{margin-right:-10rem}.lg\:-mb-40{margin-bottom:-10rem}.lg\:-ml-40{margin-left:-10rem}.lg\:-mt-44{margin-top:-11rem}.lg\:-mr-44{margin-right:-11rem}.lg\:-mb-44{margin-bottom:-11rem}.lg\:-ml-44{margin-left:-11rem}.lg\:-mt-48{margin-top:-12rem}.lg\:-mr-48{margin-right:-12rem}.lg\:-mb-48{margin-bottom:-12rem}.lg\:-ml-48{margin-left:-12rem}.lg\:-mt-52{margin-top:-13rem}.lg\:-mr-52{margin-right:-13rem}.lg\:-mb-52{margin-bottom:-13rem}.lg\:-ml-52{margin-left:-13rem}.lg\:-mt-56{margin-top:-14rem}.lg\:-mr-56{margin-right:-14rem}.lg\:-mb-56{margin-bottom:-14rem}.lg\:-ml-56{margin-left:-14rem}.lg\:-mt-60{margin-top:-15rem}.lg\:-mr-60{margin-right:-15rem}.lg\:-mb-60{margin-bottom:-15rem}.lg\:-ml-60{margin-left:-15rem}.lg\:-mt-64{margin-top:-16rem}.lg\:-mr-64{margin-right:-16rem}.lg\:-mb-64{margin-bottom:-16rem}.lg\:-ml-64{margin-left:-16rem}.lg\:-mt-72{margin-top:-18rem}.lg\:-mr-72{margin-right:-18rem}.lg\:-mb-72{margin-bottom:-18rem}.lg\:-ml-72{margin-left:-18rem}.lg\:-mt-80{margin-top:-20rem}.lg\:-mr-80{margin-right:-20rem}.lg\:-mb-80{margin-bottom:-20rem}.lg\:-ml-80{margin-left:-20rem}.lg\:-mt-96{margin-top:-24rem}.lg\:-mr-96{margin-right:-24rem}.lg\:-mb-96{margin-bottom:-24rem}.lg\:-ml-96{margin-left:-24rem}.lg\:-mt-px{margin-top:-1px}.lg\:-mr-px{margin-right:-1px}.lg\:-mb-px{margin-bottom:-1px}.lg\:-ml-px{margin-left:-1px}.lg\:-mt-0\.5{margin-top:-.125rem}.lg\:-mr-0\.5{margin-right:-.125rem}.lg\:-mb-0\.5{margin-bottom:-.125rem}.lg\:-ml-0\.5{margin-left:-.125rem}.lg\:-mt-1\.5{margin-top:-.375rem}.lg\:-mr-1\.5{margin-right:-.375rem}.lg\:-mb-1\.5{margin-bottom:-.375rem}.lg\:-ml-1\.5{margin-left:-.375rem}.lg\:-mt-2\.5{margin-top:-.625rem}.lg\:-mr-2\.5{margin-right:-.625rem}.lg\:-mb-2\.5{margin-bottom:-.625rem}.lg\:-ml-2\.5{margin-left:-.625rem}.lg\:-mt-3\.5{margin-top:-.875rem}.lg\:-mr-3\.5{margin-right:-.875rem}.lg\:-mb-3\.5{margin-bottom:-.875rem}.lg\:-ml-3\.5{margin-left:-.875rem}.lg\:-mt-1\/2{margin-top:-50%}.lg\:-mr-1\/2{margin-right:-50%}.lg\:-mb-1\/2{margin-bottom:-50%}.lg\:-ml-1\/2{margin-left:-50%}.lg\:-mt-1\/3{margin-top:-33.33333%}.lg\:-mr-1\/3{margin-right:-33.33333%}.lg\:-mb-1\/3{margin-bottom:-33.33333%}.lg\:-ml-1\/3{margin-left:-33.33333%}.lg\:-mt-2\/3{margin-top:-66.66667%}.lg\:-mr-2\/3{margin-right:-66.66667%}.lg\:-mb-2\/3{margin-bottom:-66.66667%}.lg\:-ml-2\/3{margin-left:-66.66667%}.lg\:-mt-1\/4{margin-top:-25%}.lg\:-mr-1\/4{margin-right:-25%}.lg\:-mb-1\/4{margin-bottom:-25%}.lg\:-ml-1\/4{margin-left:-25%}.lg\:-mt-2\/4{margin-top:-50%}.lg\:-mr-2\/4{margin-right:-50%}.lg\:-mb-2\/4{margin-bottom:-50%}.lg\:-ml-2\/4{margin-left:-50%}.lg\:-mt-3\/4{margin-top:-75%}.lg\:-mr-3\/4{margin-right:-75%}.lg\:-mb-3\/4{margin-bottom:-75%}.lg\:-ml-3\/4{margin-left:-75%}.lg\:-mt-1\/5{margin-top:-20%}.lg\:-mr-1\/5{margin-right:-20%}.lg\:-mb-1\/5{margin-bottom:-20%}.lg\:-ml-1\/5{margin-left:-20%}.lg\:-mt-2\/5{margin-top:-40%}.lg\:-mr-2\/5{margin-right:-40%}.lg\:-mb-2\/5{margin-bottom:-40%}.lg\:-ml-2\/5{margin-left:-40%}.lg\:-mt-3\/5{margin-top:-60%}.lg\:-mr-3\/5{margin-right:-60%}.lg\:-mb-3\/5{margin-bottom:-60%}.lg\:-ml-3\/5{margin-left:-60%}.lg\:-mt-4\/5{margin-top:-80%}.lg\:-mr-4\/5{margin-right:-80%}.lg\:-mb-4\/5{margin-bottom:-80%}.lg\:-ml-4\/5{margin-left:-80%}.lg\:-mt-1\/6{margin-top:-16.66667%}.lg\:-mr-1\/6{margin-right:-16.66667%}.lg\:-mb-1\/6{margin-bottom:-16.66667%}.lg\:-ml-1\/6{margin-left:-16.66667%}.lg\:-mt-2\/6{margin-top:-33.33333%}.lg\:-mr-2\/6{margin-right:-33.33333%}.lg\:-mb-2\/6{margin-bottom:-33.33333%}.lg\:-ml-2\/6{margin-left:-33.33333%}.lg\:-mt-3\/6{margin-top:-50%}.lg\:-mr-3\/6{margin-right:-50%}.lg\:-mb-3\/6{margin-bottom:-50%}.lg\:-ml-3\/6{margin-left:-50%}.lg\:-mt-4\/6{margin-top:-66.66667%}.lg\:-mr-4\/6{margin-right:-66.66667%}.lg\:-mb-4\/6{margin-bottom:-66.66667%}.lg\:-ml-4\/6{margin-left:-66.66667%}.lg\:-mt-5\/6{margin-top:-83.33333%}.lg\:-mr-5\/6{margin-right:-83.33333%}.lg\:-mb-5\/6{margin-bottom:-83.33333%}.lg\:-ml-5\/6{margin-left:-83.33333%}.lg\:-mt-1\/12{margin-top:-8.33333%}.lg\:-mr-1\/12{margin-right:-8.33333%}.lg\:-mb-1\/12{margin-bottom:-8.33333%}.lg\:-ml-1\/12{margin-left:-8.33333%}.lg\:-mt-2\/12{margin-top:-16.66667%}.lg\:-mr-2\/12{margin-right:-16.66667%}.lg\:-mb-2\/12{margin-bottom:-16.66667%}.lg\:-ml-2\/12{margin-left:-16.66667%}.lg\:-mt-3\/12{margin-top:-25%}.lg\:-mr-3\/12{margin-right:-25%}.lg\:-mb-3\/12{margin-bottom:-25%}.lg\:-ml-3\/12{margin-left:-25%}.lg\:-mt-4\/12{margin-top:-33.33333%}.lg\:-mr-4\/12{margin-right:-33.33333%}.lg\:-mb-4\/12{margin-bottom:-33.33333%}.lg\:-ml-4\/12{margin-left:-33.33333%}.lg\:-mt-5\/12{margin-top:-41.66667%}.lg\:-mr-5\/12{margin-right:-41.66667%}.lg\:-mb-5\/12{margin-bottom:-41.66667%}.lg\:-ml-5\/12{margin-left:-41.66667%}.lg\:-mt-6\/12{margin-top:-50%}.lg\:-mr-6\/12{margin-right:-50%}.lg\:-mb-6\/12{margin-bottom:-50%}.lg\:-ml-6\/12{margin-left:-50%}.lg\:-mt-7\/12{margin-top:-58.33333%}.lg\:-mr-7\/12{margin-right:-58.33333%}.lg\:-mb-7\/12{margin-bottom:-58.33333%}.lg\:-ml-7\/12{margin-left:-58.33333%}.lg\:-mt-8\/12{margin-top:-66.66667%}.lg\:-mr-8\/12{margin-right:-66.66667%}.lg\:-mb-8\/12{margin-bottom:-66.66667%}.lg\:-ml-8\/12{margin-left:-66.66667%}.lg\:-mt-9\/12{margin-top:-75%}.lg\:-mr-9\/12{margin-right:-75%}.lg\:-mb-9\/12{margin-bottom:-75%}.lg\:-ml-9\/12{margin-left:-75%}.lg\:-mt-10\/12{margin-top:-83.33333%}.lg\:-mr-10\/12{margin-right:-83.33333%}.lg\:-mb-10\/12{margin-bottom:-83.33333%}.lg\:-ml-10\/12{margin-left:-83.33333%}.lg\:-mt-11\/12{margin-top:-91.66667%}.lg\:-mr-11\/12{margin-right:-91.66667%}.lg\:-mb-11\/12{margin-bottom:-91.66667%}.lg\:-ml-11\/12{margin-left:-91.66667%}.lg\:-mt-full{margin-top:-100%}.lg\:-mr-full{margin-right:-100%}.lg\:-mb-full{margin-bottom:-100%}.lg\:-ml-full{margin-left:-100%}.lg\:max-h-0{max-height:0}.lg\:max-h-1{max-height:.25rem}.lg\:max-h-2{max-height:.5rem}.lg\:max-h-3{max-height:.75rem}.lg\:max-h-4{max-height:1rem}.lg\:max-h-5{max-height:1.25rem}.lg\:max-h-6{max-height:1.5rem}.lg\:max-h-7{max-height:1.75rem}.lg\:max-h-8{max-height:2rem}.lg\:max-h-9{max-height:2.25rem}.lg\:max-h-10{max-height:2.5rem}.lg\:max-h-11{max-height:2.75rem}.lg\:max-h-12{max-height:3rem}.lg\:max-h-13{max-height:3.25rem}.lg\:max-h-14{max-height:3.5rem}.lg\:max-h-15{max-height:3.75rem}.lg\:max-h-16{max-height:4rem}.lg\:max-h-20{max-height:5rem}.lg\:max-h-24{max-height:6rem}.lg\:max-h-28{max-height:7rem}.lg\:max-h-32{max-height:8rem}.lg\:max-h-36{max-height:9rem}.lg\:max-h-40{max-height:10rem}.lg\:max-h-44{max-height:11rem}.lg\:max-h-48{max-height:12rem}.lg\:max-h-52{max-height:13rem}.lg\:max-h-56{max-height:14rem}.lg\:max-h-60{max-height:15rem}.lg\:max-h-64{max-height:16rem}.lg\:max-h-72{max-height:18rem}.lg\:max-h-80{max-height:20rem}.lg\:max-h-96{max-height:24rem}.lg\:max-h-screen{max-height:100vh}.lg\:max-h-px{max-height:1px}.lg\:max-h-0\.5{max-height:.125rem}.lg\:max-h-1\.5{max-height:.375rem}.lg\:max-h-2\.5{max-height:.625rem}.lg\:max-h-3\.5{max-height:.875rem}.lg\:max-h-1\/2{max-height:50%}.lg\:max-h-1\/3{max-height:33.333333%}.lg\:max-h-2\/3{max-height:66.666667%}.lg\:max-h-1\/4{max-height:25%}.lg\:max-h-2\/4{max-height:50%}.lg\:max-h-3\/4{max-height:75%}.lg\:max-h-1\/5{max-height:20%}.lg\:max-h-2\/5{max-height:40%}.lg\:max-h-3\/5{max-height:60%}.lg\:max-h-4\/5{max-height:80%}.lg\:max-h-1\/6{max-height:16.666667%}.lg\:max-h-2\/6{max-height:33.333333%}.lg\:max-h-3\/6{max-height:50%}.lg\:max-h-4\/6{max-height:66.666667%}.lg\:max-h-5\/6{max-height:83.333333%}.lg\:max-h-1\/12{max-height:8.333333%}.lg\:max-h-2\/12{max-height:16.666667%}.lg\:max-h-3\/12{max-height:25%}.lg\:max-h-4\/12{max-height:33.333333%}.lg\:max-h-5\/12{max-height:41.666667%}.lg\:max-h-6\/12{max-height:50%}.lg\:max-h-7\/12{max-height:58.333333%}.lg\:max-h-8\/12{max-height:66.666667%}.lg\:max-h-9\/12{max-height:75%}.lg\:max-h-10\/12{max-height:83.333333%}.lg\:max-h-11\/12{max-height:91.666667%}.lg\:max-h-full{max-height:100%}.lg\:max-w-0{max-width:0}.lg\:max-w-none{max-width:none}.lg\:max-w-xs{max-width:20rem}.lg\:max-w-sm{max-width:24rem}.lg\:max-w-md{max-width:28rem}.lg\:max-w-lg{max-width:32rem}.lg\:max-w-xl{max-width:36rem}.lg\:max-w-2xl{max-width:42rem}.lg\:max-w-3xl{max-width:48rem}.lg\:max-w-4xl{max-width:56rem}.lg\:max-w-5xl{max-width:64rem}.lg\:max-w-6xl{max-width:72rem}.lg\:max-w-7xl{max-width:80rem}.lg\:max-w-full{max-width:100%}.lg\:max-w-min-content{max-width:-webkit-min-content;max-width:-moz-min-content;max-width:min-content}.lg\:max-w-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.lg\:max-w-prose{max-width:65ch}.lg\:max-w-screen-sm{max-width:640px}.lg\:max-w-screen-md{max-width:768px}.lg\:max-w-screen-lg{max-width:1024px}.lg\:max-w-screen-xl{max-width:1280px}.lg\:min-h-0{min-height:0}.lg\:min-h-full{min-height:100%}.lg\:min-h-screen{min-height:100vh}.lg\:min-w-0{min-width:0}.lg\:min-w-full{min-width:100%}.lg\:min-w-min-content{min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.lg\:min-w-max-content{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.lg\:object-contain{-o-object-fit:contain;object-fit:contain}.lg\:object-cover{-o-object-fit:cover;object-fit:cover}.lg\:object-fill{-o-object-fit:fill;object-fit:fill}.lg\:object-none{-o-object-fit:none;object-fit:none}.lg\:object-scale-down{-o-object-fit:scale-down;object-fit:scale-down}.lg\:object-bottom{-o-object-position:bottom;object-position:bottom}.lg\:object-center{-o-object-position:center;object-position:center}.lg\:object-left{-o-object-position:left;object-position:left}.lg\:object-left-bottom{-o-object-position:left bottom;object-position:left bottom}.lg\:object-left-top{-o-object-position:left top;object-position:left top}.lg\:object-right{-o-object-position:right;object-position:right}.lg\:object-right-bottom{-o-object-position:right bottom;object-position:right bottom}.lg\:object-right-top{-o-object-position:right top;object-position:right top}.lg\:object-top{-o-object-position:top;object-position:top}.lg\:opacity-0{opacity:0}.lg\:opacity-25{opacity:.25}.lg\:opacity-50{opacity:.5}.lg\:opacity-75{opacity:.75}.lg\:opacity-100{opacity:1}.lg\:hover\:opacity-0:hover{opacity:0}.lg\:hover\:opacity-25:hover{opacity:.25}.lg\:hover\:opacity-50:hover{opacity:.5}.lg\:hover\:opacity-75:hover{opacity:.75}.lg\:hover\:opacity-100:hover{opacity:1}.lg\:focus\:opacity-0:focus{opacity:0}.lg\:focus\:opacity-25:focus{opacity:.25}.lg\:focus\:opacity-50:focus{opacity:.5}.lg\:focus\:opacity-75:focus{opacity:.75}.lg\:focus\:opacity-100:focus{opacity:1}.lg\:outline-none{outline:0}.lg\:focus\:outline-none:focus{outline:0}.lg\:overflow-auto{overflow:auto}.lg\:overflow-hidden{overflow:hidden}.lg\:overflow-visible{overflow:visible}.lg\:overflow-scroll{overflow:scroll}.lg\:overflow-x-auto{overflow-x:auto}.lg\:overflow-y-auto{overflow-y:auto}.lg\:overflow-x-hidden{overflow-x:hidden}.lg\:overflow-y-hidden{overflow-y:hidden}.lg\:overflow-x-visible{overflow-x:visible}.lg\:overflow-y-visible{overflow-y:visible}.lg\:overflow-x-scroll{overflow-x:scroll}.lg\:overflow-y-scroll{overflow-y:scroll}.lg\:scrolling-touch{-webkit-overflow-scrolling:touch}.lg\:scrolling-auto{-webkit-overflow-scrolling:auto}.lg\:p-0{padding:0}.lg\:p-1{padding:.25rem}.lg\:p-2{padding:.5rem}.lg\:p-3{padding:.75rem}.lg\:p-4{padding:1rem}.lg\:p-5{padding:1.25rem}.lg\:p-6{padding:1.5rem}.lg\:p-7{padding:1.75rem}.lg\:p-8{padding:2rem}.lg\:p-9{padding:2.25rem}.lg\:p-10{padding:2.5rem}.lg\:p-11{padding:2.75rem}.lg\:p-12{padding:3rem}.lg\:p-13{padding:3.25rem}.lg\:p-14{padding:3.5rem}.lg\:p-15{padding:3.75rem}.lg\:p-16{padding:4rem}.lg\:p-20{padding:5rem}.lg\:p-24{padding:6rem}.lg\:p-28{padding:7rem}.lg\:p-32{padding:8rem}.lg\:p-36{padding:9rem}.lg\:p-40{padding:10rem}.lg\:p-44{padding:11rem}.lg\:p-48{padding:12rem}.lg\:p-52{padding:13rem}.lg\:p-56{padding:14rem}.lg\:p-60{padding:15rem}.lg\:p-64{padding:16rem}.lg\:p-72{padding:18rem}.lg\:p-80{padding:20rem}.lg\:p-96{padding:24rem}.lg\:p-px{padding:1px}.lg\:p-0\.5{padding:.125rem}.lg\:p-1\.5{padding:.375rem}.lg\:p-2\.5{padding:.625rem}.lg\:p-3\.5{padding:.875rem}.lg\:p-1\/2{padding:50%}.lg\:p-1\/3{padding:33.333333%}.lg\:p-2\/3{padding:66.666667%}.lg\:p-1\/4{padding:25%}.lg\:p-2\/4{padding:50%}.lg\:p-3\/4{padding:75%}.lg\:p-1\/5{padding:20%}.lg\:p-2\/5{padding:40%}.lg\:p-3\/5{padding:60%}.lg\:p-4\/5{padding:80%}.lg\:p-1\/6{padding:16.666667%}.lg\:p-2\/6{padding:33.333333%}.lg\:p-3\/6{padding:50%}.lg\:p-4\/6{padding:66.666667%}.lg\:p-5\/6{padding:83.333333%}.lg\:p-1\/12{padding:8.333333%}.lg\:p-2\/12{padding:16.666667%}.lg\:p-3\/12{padding:25%}.lg\:p-4\/12{padding:33.333333%}.lg\:p-5\/12{padding:41.666667%}.lg\:p-6\/12{padding:50%}.lg\:p-7\/12{padding:58.333333%}.lg\:p-8\/12{padding:66.666667%}.lg\:p-9\/12{padding:75%}.lg\:p-10\/12{padding:83.333333%}.lg\:p-11\/12{padding:91.666667%}.lg\:p-full{padding:100%}.lg\:py-0{padding-top:0;padding-bottom:0}.lg\:px-0{padding-left:0;padding-right:0}.lg\:py-1{padding-top:.25rem;padding-bottom:.25rem}.lg\:px-1{padding-left:.25rem;padding-right:.25rem}.lg\:py-2{padding-top:.5rem;padding-bottom:.5rem}.lg\:px-2{padding-left:.5rem;padding-right:.5rem}.lg\:py-3{padding-top:.75rem;padding-bottom:.75rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:py-4{padding-top:1rem;padding-bottom:1rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.lg\:px-5{padding-left:1.25rem;padding-right:1.25rem}.lg\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.lg\:px-6{padding-left:1.5rem;padding-right:1.5rem}.lg\:py-7{padding-top:1.75rem;padding-bottom:1.75rem}.lg\:px-7{padding-left:1.75rem;padding-right:1.75rem}.lg\:py-8{padding-top:2rem;padding-bottom:2rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:py-9{padding-top:2.25rem;padding-bottom:2.25rem}.lg\:px-9{padding-left:2.25rem;padding-right:2.25rem}.lg\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.lg\:px-10{padding-left:2.5rem;padding-right:2.5rem}.lg\:py-11{padding-top:2.75rem;padding-bottom:2.75rem}.lg\:px-11{padding-left:2.75rem;padding-right:2.75rem}.lg\:py-12{padding-top:3rem;padding-bottom:3rem}.lg\:px-12{padding-left:3rem;padding-right:3rem}.lg\:py-13{padding-top:3.25rem;padding-bottom:3.25rem}.lg\:px-13{padding-left:3.25rem;padding-right:3.25rem}.lg\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}.lg\:px-14{padding-left:3.5rem;padding-right:3.5rem}.lg\:py-15{padding-top:3.75rem;padding-bottom:3.75rem}.lg\:px-15{padding-left:3.75rem;padding-right:3.75rem}.lg\:py-16{padding-top:4rem;padding-bottom:4rem}.lg\:px-16{padding-left:4rem;padding-right:4rem}.lg\:py-20{padding-top:5rem;padding-bottom:5rem}.lg\:px-20{padding-left:5rem;padding-right:5rem}.lg\:py-24{padding-top:6rem;padding-bottom:6rem}.lg\:px-24{padding-left:6rem;padding-right:6rem}.lg\:py-28{padding-top:7rem;padding-bottom:7rem}.lg\:px-28{padding-left:7rem;padding-right:7rem}.lg\:py-32{padding-top:8rem;padding-bottom:8rem}.lg\:px-32{padding-left:8rem;padding-right:8rem}.lg\:py-36{padding-top:9rem;padding-bottom:9rem}.lg\:px-36{padding-left:9rem;padding-right:9rem}.lg\:py-40{padding-top:10rem;padding-bottom:10rem}.lg\:px-40{padding-left:10rem;padding-right:10rem}.lg\:py-44{padding-top:11rem;padding-bottom:11rem}.lg\:px-44{padding-left:11rem;padding-right:11rem}.lg\:py-48{padding-top:12rem;padding-bottom:12rem}.lg\:px-48{padding-left:12rem;padding-right:12rem}.lg\:py-52{padding-top:13rem;padding-bottom:13rem}.lg\:px-52{padding-left:13rem;padding-right:13rem}.lg\:py-56{padding-top:14rem;padding-bottom:14rem}.lg\:px-56{padding-left:14rem;padding-right:14rem}.lg\:py-60{padding-top:15rem;padding-bottom:15rem}.lg\:px-60{padding-left:15rem;padding-right:15rem}.lg\:py-64{padding-top:16rem;padding-bottom:16rem}.lg\:px-64{padding-left:16rem;padding-right:16rem}.lg\:py-72{padding-top:18rem;padding-bottom:18rem}.lg\:px-72{padding-left:18rem;padding-right:18rem}.lg\:py-80{padding-top:20rem;padding-bottom:20rem}.lg\:px-80{padding-left:20rem;padding-right:20rem}.lg\:py-96{padding-top:24rem;padding-bottom:24rem}.lg\:px-96{padding-left:24rem;padding-right:24rem}.lg\:py-px{padding-top:1px;padding-bottom:1px}.lg\:px-px{padding-left:1px;padding-right:1px}.lg\:py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.lg\:px-0\.5{padding-left:.125rem;padding-right:.125rem}.lg\:py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.lg\:px-1\.5{padding-left:.375rem;padding-right:.375rem}.lg\:py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.lg\:px-2\.5{padding-left:.625rem;padding-right:.625rem}.lg\:py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.lg\:px-3\.5{padding-left:.875rem;padding-right:.875rem}.lg\:py-1\/2{padding-top:50%;padding-bottom:50%}.lg\:px-1\/2{padding-left:50%;padding-right:50%}.lg\:py-1\/3{padding-top:33.333333%;padding-bottom:33.333333%}.lg\:px-1\/3{padding-left:33.333333%;padding-right:33.333333%}.lg\:py-2\/3{padding-top:66.666667%;padding-bottom:66.666667%}.lg\:px-2\/3{padding-left:66.666667%;padding-right:66.666667%}.lg\:py-1\/4{padding-top:25%;padding-bottom:25%}.lg\:px-1\/4{padding-left:25%;padding-right:25%}.lg\:py-2\/4{padding-top:50%;padding-bottom:50%}.lg\:px-2\/4{padding-left:50%;padding-right:50%}.lg\:py-3\/4{padding-top:75%;padding-bottom:75%}.lg\:px-3\/4{padding-left:75%;padding-right:75%}.lg\:py-1\/5{padding-top:20%;padding-bottom:20%}.lg\:px-1\/5{padding-left:20%;padding-right:20%}.lg\:py-2\/5{padding-top:40%;padding-bottom:40%}.lg\:px-2\/5{padding-left:40%;padding-right:40%}.lg\:py-3\/5{padding-top:60%;padding-bottom:60%}.lg\:px-3\/5{padding-left:60%;padding-right:60%}.lg\:py-4\/5{padding-top:80%;padding-bottom:80%}.lg\:px-4\/5{padding-left:80%;padding-right:80%}.lg\:py-1\/6{padding-top:16.666667%;padding-bottom:16.666667%}.lg\:px-1\/6{padding-left:16.666667%;padding-right:16.666667%}.lg\:py-2\/6{padding-top:33.333333%;padding-bottom:33.333333%}.lg\:px-2\/6{padding-left:33.333333%;padding-right:33.333333%}.lg\:py-3\/6{padding-top:50%;padding-bottom:50%}.lg\:px-3\/6{padding-left:50%;padding-right:50%}.lg\:py-4\/6{padding-top:66.666667%;padding-bottom:66.666667%}.lg\:px-4\/6{padding-left:66.666667%;padding-right:66.666667%}.lg\:py-5\/6{padding-top:83.333333%;padding-bottom:83.333333%}.lg\:px-5\/6{padding-left:83.333333%;padding-right:83.333333%}.lg\:py-1\/12{padding-top:8.333333%;padding-bottom:8.333333%}.lg\:px-1\/12{padding-left:8.333333%;padding-right:8.333333%}.lg\:py-2\/12{padding-top:16.666667%;padding-bottom:16.666667%}.lg\:px-2\/12{padding-left:16.666667%;padding-right:16.666667%}.lg\:py-3\/12{padding-top:25%;padding-bottom:25%}.lg\:px-3\/12{padding-left:25%;padding-right:25%}.lg\:py-4\/12{padding-top:33.333333%;padding-bottom:33.333333%}.lg\:px-4\/12{padding-left:33.333333%;padding-right:33.333333%}.lg\:py-5\/12{padding-top:41.666667%;padding-bottom:41.666667%}.lg\:px-5\/12{padding-left:41.666667%;padding-right:41.666667%}.lg\:py-6\/12{padding-top:50%;padding-bottom:50%}.lg\:px-6\/12{padding-left:50%;padding-right:50%}.lg\:py-7\/12{padding-top:58.333333%;padding-bottom:58.333333%}.lg\:px-7\/12{padding-left:58.333333%;padding-right:58.333333%}.lg\:py-8\/12{padding-top:66.666667%;padding-bottom:66.666667%}.lg\:px-8\/12{padding-left:66.666667%;padding-right:66.666667%}.lg\:py-9\/12{padding-top:75%;padding-bottom:75%}.lg\:px-9\/12{padding-left:75%;padding-right:75%}.lg\:py-10\/12{padding-top:83.333333%;padding-bottom:83.333333%}.lg\:px-10\/12{padding-left:83.333333%;padding-right:83.333333%}.lg\:py-11\/12{padding-top:91.666667%;padding-bottom:91.666667%}.lg\:px-11\/12{padding-left:91.666667%;padding-right:91.666667%}.lg\:py-full{padding-top:100%;padding-bottom:100%}.lg\:px-full{padding-left:100%;padding-right:100%}.lg\:pt-0{padding-top:0}.lg\:pr-0{padding-right:0}.lg\:pb-0{padding-bottom:0}.lg\:pl-0{padding-left:0}.lg\:pt-1{padding-top:.25rem}.lg\:pr-1{padding-right:.25rem}.lg\:pb-1{padding-bottom:.25rem}.lg\:pl-1{padding-left:.25rem}.lg\:pt-2{padding-top:.5rem}.lg\:pr-2{padding-right:.5rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pl-2{padding-left:.5rem}.lg\:pt-3{padding-top:.75rem}.lg\:pr-3{padding-right:.75rem}.lg\:pb-3{padding-bottom:.75rem}.lg\:pl-3{padding-left:.75rem}.lg\:pt-4{padding-top:1rem}.lg\:pr-4{padding-right:1rem}.lg\:pb-4{padding-bottom:1rem}.lg\:pl-4{padding-left:1rem}.lg\:pt-5{padding-top:1.25rem}.lg\:pr-5{padding-right:1.25rem}.lg\:pb-5{padding-bottom:1.25rem}.lg\:pl-5{padding-left:1.25rem}.lg\:pt-6{padding-top:1.5rem}.lg\:pr-6{padding-right:1.5rem}.lg\:pb-6{padding-bottom:1.5rem}.lg\:pl-6{padding-left:1.5rem}.lg\:pt-7{padding-top:1.75rem}.lg\:pr-7{padding-right:1.75rem}.lg\:pb-7{padding-bottom:1.75rem}.lg\:pl-7{padding-left:1.75rem}.lg\:pt-8{padding-top:2rem}.lg\:pr-8{padding-right:2rem}.lg\:pb-8{padding-bottom:2rem}.lg\:pl-8{padding-left:2rem}.lg\:pt-9{padding-top:2.25rem}.lg\:pr-9{padding-right:2.25rem}.lg\:pb-9{padding-bottom:2.25rem}.lg\:pl-9{padding-left:2.25rem}.lg\:pt-10{padding-top:2.5rem}.lg\:pr-10{padding-right:2.5rem}.lg\:pb-10{padding-bottom:2.5rem}.lg\:pl-10{padding-left:2.5rem}.lg\:pt-11{padding-top:2.75rem}.lg\:pr-11{padding-right:2.75rem}.lg\:pb-11{padding-bottom:2.75rem}.lg\:pl-11{padding-left:2.75rem}.lg\:pt-12{padding-top:3rem}.lg\:pr-12{padding-right:3rem}.lg\:pb-12{padding-bottom:3rem}.lg\:pl-12{padding-left:3rem}.lg\:pt-13{padding-top:3.25rem}.lg\:pr-13{padding-right:3.25rem}.lg\:pb-13{padding-bottom:3.25rem}.lg\:pl-13{padding-left:3.25rem}.lg\:pt-14{padding-top:3.5rem}.lg\:pr-14{padding-right:3.5rem}.lg\:pb-14{padding-bottom:3.5rem}.lg\:pl-14{padding-left:3.5rem}.lg\:pt-15{padding-top:3.75rem}.lg\:pr-15{padding-right:3.75rem}.lg\:pb-15{padding-bottom:3.75rem}.lg\:pl-15{padding-left:3.75rem}.lg\:pt-16{padding-top:4rem}.lg\:pr-16{padding-right:4rem}.lg\:pb-16{padding-bottom:4rem}.lg\:pl-16{padding-left:4rem}.lg\:pt-20{padding-top:5rem}.lg\:pr-20{padding-right:5rem}.lg\:pb-20{padding-bottom:5rem}.lg\:pl-20{padding-left:5rem}.lg\:pt-24{padding-top:6rem}.lg\:pr-24{padding-right:6rem}.lg\:pb-24{padding-bottom:6rem}.lg\:pl-24{padding-left:6rem}.lg\:pt-28{padding-top:7rem}.lg\:pr-28{padding-right:7rem}.lg\:pb-28{padding-bottom:7rem}.lg\:pl-28{padding-left:7rem}.lg\:pt-32{padding-top:8rem}.lg\:pr-32{padding-right:8rem}.lg\:pb-32{padding-bottom:8rem}.lg\:pl-32{padding-left:8rem}.lg\:pt-36{padding-top:9rem}.lg\:pr-36{padding-right:9rem}.lg\:pb-36{padding-bottom:9rem}.lg\:pl-36{padding-left:9rem}.lg\:pt-40{padding-top:10rem}.lg\:pr-40{padding-right:10rem}.lg\:pb-40{padding-bottom:10rem}.lg\:pl-40{padding-left:10rem}.lg\:pt-44{padding-top:11rem}.lg\:pr-44{padding-right:11rem}.lg\:pb-44{padding-bottom:11rem}.lg\:pl-44{padding-left:11rem}.lg\:pt-48{padding-top:12rem}.lg\:pr-48{padding-right:12rem}.lg\:pb-48{padding-bottom:12rem}.lg\:pl-48{padding-left:12rem}.lg\:pt-52{padding-top:13rem}.lg\:pr-52{padding-right:13rem}.lg\:pb-52{padding-bottom:13rem}.lg\:pl-52{padding-left:13rem}.lg\:pt-56{padding-top:14rem}.lg\:pr-56{padding-right:14rem}.lg\:pb-56{padding-bottom:14rem}.lg\:pl-56{padding-left:14rem}.lg\:pt-60{padding-top:15rem}.lg\:pr-60{padding-right:15rem}.lg\:pb-60{padding-bottom:15rem}.lg\:pl-60{padding-left:15rem}.lg\:pt-64{padding-top:16rem}.lg\:pr-64{padding-right:16rem}.lg\:pb-64{padding-bottom:16rem}.lg\:pl-64{padding-left:16rem}.lg\:pt-72{padding-top:18rem}.lg\:pr-72{padding-right:18rem}.lg\:pb-72{padding-bottom:18rem}.lg\:pl-72{padding-left:18rem}.lg\:pt-80{padding-top:20rem}.lg\:pr-80{padding-right:20rem}.lg\:pb-80{padding-bottom:20rem}.lg\:pl-80{padding-left:20rem}.lg\:pt-96{padding-top:24rem}.lg\:pr-96{padding-right:24rem}.lg\:pb-96{padding-bottom:24rem}.lg\:pl-96{padding-left:24rem}.lg\:pt-px{padding-top:1px}.lg\:pr-px{padding-right:1px}.lg\:pb-px{padding-bottom:1px}.lg\:pl-px{padding-left:1px}.lg\:pt-0\.5{padding-top:.125rem}.lg\:pr-0\.5{padding-right:.125rem}.lg\:pb-0\.5{padding-bottom:.125rem}.lg\:pl-0\.5{padding-left:.125rem}.lg\:pt-1\.5{padding-top:.375rem}.lg\:pr-1\.5{padding-right:.375rem}.lg\:pb-1\.5{padding-bottom:.375rem}.lg\:pl-1\.5{padding-left:.375rem}.lg\:pt-2\.5{padding-top:.625rem}.lg\:pr-2\.5{padding-right:.625rem}.lg\:pb-2\.5{padding-bottom:.625rem}.lg\:pl-2\.5{padding-left:.625rem}.lg\:pt-3\.5{padding-top:.875rem}.lg\:pr-3\.5{padding-right:.875rem}.lg\:pb-3\.5{padding-bottom:.875rem}.lg\:pl-3\.5{padding-left:.875rem}.lg\:pt-1\/2{padding-top:50%}.lg\:pr-1\/2{padding-right:50%}.lg\:pb-1\/2{padding-bottom:50%}.lg\:pl-1\/2{padding-left:50%}.lg\:pt-1\/3{padding-top:33.333333%}.lg\:pr-1\/3{padding-right:33.333333%}.lg\:pb-1\/3{padding-bottom:33.333333%}.lg\:pl-1\/3{padding-left:33.333333%}.lg\:pt-2\/3{padding-top:66.666667%}.lg\:pr-2\/3{padding-right:66.666667%}.lg\:pb-2\/3{padding-bottom:66.666667%}.lg\:pl-2\/3{padding-left:66.666667%}.lg\:pt-1\/4{padding-top:25%}.lg\:pr-1\/4{padding-right:25%}.lg\:pb-1\/4{padding-bottom:25%}.lg\:pl-1\/4{padding-left:25%}.lg\:pt-2\/4{padding-top:50%}.lg\:pr-2\/4{padding-right:50%}.lg\:pb-2\/4{padding-bottom:50%}.lg\:pl-2\/4{padding-left:50%}.lg\:pt-3\/4{padding-top:75%}.lg\:pr-3\/4{padding-right:75%}.lg\:pb-3\/4{padding-bottom:75%}.lg\:pl-3\/4{padding-left:75%}.lg\:pt-1\/5{padding-top:20%}.lg\:pr-1\/5{padding-right:20%}.lg\:pb-1\/5{padding-bottom:20%}.lg\:pl-1\/5{padding-left:20%}.lg\:pt-2\/5{padding-top:40%}.lg\:pr-2\/5{padding-right:40%}.lg\:pb-2\/5{padding-bottom:40%}.lg\:pl-2\/5{padding-left:40%}.lg\:pt-3\/5{padding-top:60%}.lg\:pr-3\/5{padding-right:60%}.lg\:pb-3\/5{padding-bottom:60%}.lg\:pl-3\/5{padding-left:60%}.lg\:pt-4\/5{padding-top:80%}.lg\:pr-4\/5{padding-right:80%}.lg\:pb-4\/5{padding-bottom:80%}.lg\:pl-4\/5{padding-left:80%}.lg\:pt-1\/6{padding-top:16.666667%}.lg\:pr-1\/6{padding-right:16.666667%}.lg\:pb-1\/6{padding-bottom:16.666667%}.lg\:pl-1\/6{padding-left:16.666667%}.lg\:pt-2\/6{padding-top:33.333333%}.lg\:pr-2\/6{padding-right:33.333333%}.lg\:pb-2\/6{padding-bottom:33.333333%}.lg\:pl-2\/6{padding-left:33.333333%}.lg\:pt-3\/6{padding-top:50%}.lg\:pr-3\/6{padding-right:50%}.lg\:pb-3\/6{padding-bottom:50%}.lg\:pl-3\/6{padding-left:50%}.lg\:pt-4\/6{padding-top:66.666667%}.lg\:pr-4\/6{padding-right:66.666667%}.lg\:pb-4\/6{padding-bottom:66.666667%}.lg\:pl-4\/6{padding-left:66.666667%}.lg\:pt-5\/6{padding-top:83.333333%}.lg\:pr-5\/6{padding-right:83.333333%}.lg\:pb-5\/6{padding-bottom:83.333333%}.lg\:pl-5\/6{padding-left:83.333333%}.lg\:pt-1\/12{padding-top:8.333333%}.lg\:pr-1\/12{padding-right:8.333333%}.lg\:pb-1\/12{padding-bottom:8.333333%}.lg\:pl-1\/12{padding-left:8.333333%}.lg\:pt-2\/12{padding-top:16.666667%}.lg\:pr-2\/12{padding-right:16.666667%}.lg\:pb-2\/12{padding-bottom:16.666667%}.lg\:pl-2\/12{padding-left:16.666667%}.lg\:pt-3\/12{padding-top:25%}.lg\:pr-3\/12{padding-right:25%}.lg\:pb-3\/12{padding-bottom:25%}.lg\:pl-3\/12{padding-left:25%}.lg\:pt-4\/12{padding-top:33.333333%}.lg\:pr-4\/12{padding-right:33.333333%}.lg\:pb-4\/12{padding-bottom:33.333333%}.lg\:pl-4\/12{padding-left:33.333333%}.lg\:pt-5\/12{padding-top:41.666667%}.lg\:pr-5\/12{padding-right:41.666667%}.lg\:pb-5\/12{padding-bottom:41.666667%}.lg\:pl-5\/12{padding-left:41.666667%}.lg\:pt-6\/12{padding-top:50%}.lg\:pr-6\/12{padding-right:50%}.lg\:pb-6\/12{padding-bottom:50%}.lg\:pl-6\/12{padding-left:50%}.lg\:pt-7\/12{padding-top:58.333333%}.lg\:pr-7\/12{padding-right:58.333333%}.lg\:pb-7\/12{padding-bottom:58.333333%}.lg\:pl-7\/12{padding-left:58.333333%}.lg\:pt-8\/12{padding-top:66.666667%}.lg\:pr-8\/12{padding-right:66.666667%}.lg\:pb-8\/12{padding-bottom:66.666667%}.lg\:pl-8\/12{padding-left:66.666667%}.lg\:pt-9\/12{padding-top:75%}.lg\:pr-9\/12{padding-right:75%}.lg\:pb-9\/12{padding-bottom:75%}.lg\:pl-9\/12{padding-left:75%}.lg\:pt-10\/12{padding-top:83.333333%}.lg\:pr-10\/12{padding-right:83.333333%}.lg\:pb-10\/12{padding-bottom:83.333333%}.lg\:pl-10\/12{padding-left:83.333333%}.lg\:pt-11\/12{padding-top:91.666667%}.lg\:pr-11\/12{padding-right:91.666667%}.lg\:pb-11\/12{padding-bottom:91.666667%}.lg\:pl-11\/12{padding-left:91.666667%}.lg\:pt-full{padding-top:100%}.lg\:pr-full{padding-right:100%}.lg\:pb-full{padding-bottom:100%}.lg\:pl-full{padding-left:100%}.lg\:placeholder-transparent::-moz-placeholder{color:transparent}.lg\:placeholder-transparent:-ms-input-placeholder{color:transparent}.lg\:placeholder-transparent::-ms-input-placeholder{color:transparent}.lg\:placeholder-transparent::placeholder{color:transparent}.lg\:placeholder-white::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:placeholder-white:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:placeholder-white::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:placeholder-white::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:placeholder-black::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:placeholder-black:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:placeholder-black::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:placeholder-black::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:placeholder-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:placeholder-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:placeholder-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:placeholder-gray-50::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:placeholder-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:placeholder-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:placeholder-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:placeholder-gray-100::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:placeholder-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:placeholder-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:placeholder-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:placeholder-gray-200::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:placeholder-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:placeholder-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:placeholder-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:placeholder-gray-300::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:placeholder-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:placeholder-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:placeholder-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:placeholder-gray-400::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:placeholder-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:placeholder-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:placeholder-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:placeholder-gray-500::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:placeholder-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:placeholder-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:placeholder-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:placeholder-gray-600::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:placeholder-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:placeholder-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:placeholder-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:placeholder-gray-700::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:placeholder-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:placeholder-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:placeholder-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:placeholder-gray-800::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:placeholder-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:placeholder-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:placeholder-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:placeholder-gray-900::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-50::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-100::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-200::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-300::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-400::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-500::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-600::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-700::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-800::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:placeholder-cool-gray-900::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:placeholder-red-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:placeholder-red-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:placeholder-red-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:placeholder-red-50::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:placeholder-red-100::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:placeholder-red-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:placeholder-red-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:placeholder-red-100::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:placeholder-red-200::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:placeholder-red-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:placeholder-red-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:placeholder-red-200::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:placeholder-red-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:placeholder-red-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:placeholder-red-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:placeholder-red-300::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:placeholder-red-400::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:placeholder-red-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:placeholder-red-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:placeholder-red-400::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:placeholder-red-500::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:placeholder-red-500:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:placeholder-red-500::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:placeholder-red-500::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:placeholder-red-600::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:placeholder-red-600:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:placeholder-red-600::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:placeholder-red-600::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:placeholder-red-700::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:placeholder-red-700:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:placeholder-red-700::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:placeholder-red-700::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:placeholder-red-800::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:placeholder-red-800:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:placeholder-red-800::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:placeholder-red-800::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:placeholder-red-900::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:placeholder-red-900:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:placeholder-red-900::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:placeholder-red-900::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:placeholder-orange-50::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:placeholder-orange-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:placeholder-orange-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:placeholder-orange-50::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:placeholder-orange-100::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:placeholder-orange-100:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:placeholder-orange-100::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:placeholder-orange-100::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:placeholder-orange-200::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:placeholder-orange-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:placeholder-orange-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:placeholder-orange-200::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:placeholder-orange-300::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:placeholder-orange-300:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:placeholder-orange-300::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:placeholder-orange-300::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:placeholder-orange-400::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:placeholder-orange-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:placeholder-orange-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:placeholder-orange-400::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:placeholder-orange-500::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:placeholder-orange-500:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:placeholder-orange-500::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:placeholder-orange-500::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:placeholder-orange-600::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:placeholder-orange-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:placeholder-orange-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:placeholder-orange-600::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:placeholder-orange-700::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:placeholder-orange-700:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:placeholder-orange-700::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:placeholder-orange-700::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:placeholder-orange-800::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:placeholder-orange-800:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:placeholder-orange-800::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:placeholder-orange-800::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:placeholder-orange-900::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:placeholder-orange-900:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:placeholder-orange-900::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:placeholder-orange-900::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:placeholder-yellow-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:placeholder-yellow-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:placeholder-yellow-50::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:placeholder-yellow-100::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:placeholder-yellow-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:placeholder-yellow-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:placeholder-yellow-100::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:placeholder-yellow-200::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:placeholder-yellow-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:placeholder-yellow-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:placeholder-yellow-200::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:placeholder-yellow-300::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:placeholder-yellow-300:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:placeholder-yellow-300::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:placeholder-yellow-300::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:placeholder-yellow-400:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:placeholder-yellow-400::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:placeholder-yellow-400::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:placeholder-yellow-500::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:placeholder-yellow-500:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:placeholder-yellow-500::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:placeholder-yellow-500::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:placeholder-yellow-600::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:placeholder-yellow-600:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:placeholder-yellow-600::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:placeholder-yellow-600::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:placeholder-yellow-700::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:placeholder-yellow-700:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:placeholder-yellow-700::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:placeholder-yellow-700::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:placeholder-yellow-800::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:placeholder-yellow-800:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:placeholder-yellow-800::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:placeholder-yellow-800::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:placeholder-yellow-900::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:placeholder-yellow-900:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:placeholder-yellow-900::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:placeholder-yellow-900::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:placeholder-green-50::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:placeholder-green-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:placeholder-green-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:placeholder-green-50::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:placeholder-green-100::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:placeholder-green-100:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:placeholder-green-100::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:placeholder-green-100::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:placeholder-green-200::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:placeholder-green-200:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:placeholder-green-200::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:placeholder-green-200::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:placeholder-green-300::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:placeholder-green-300:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:placeholder-green-300::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:placeholder-green-300::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:placeholder-green-400::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:placeholder-green-400:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:placeholder-green-400::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:placeholder-green-400::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:placeholder-green-500::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:placeholder-green-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:placeholder-green-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:placeholder-green-500::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:placeholder-green-600::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:placeholder-green-600:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:placeholder-green-600::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:placeholder-green-600::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:placeholder-green-700::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:placeholder-green-700:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:placeholder-green-700::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:placeholder-green-700::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:placeholder-green-800::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:placeholder-green-800:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:placeholder-green-800::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:placeholder-green-800::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:placeholder-green-900::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:placeholder-green-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:placeholder-green-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:placeholder-green-900::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:placeholder-teal-50::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:placeholder-teal-50:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:placeholder-teal-50::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:placeholder-teal-50::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:placeholder-teal-100::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:placeholder-teal-100:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:placeholder-teal-100::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:placeholder-teal-100::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:placeholder-teal-200::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:placeholder-teal-200:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:placeholder-teal-200::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:placeholder-teal-200::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:placeholder-teal-300::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:placeholder-teal-300:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:placeholder-teal-300::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:placeholder-teal-300::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:placeholder-teal-400::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:placeholder-teal-400:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:placeholder-teal-400::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:placeholder-teal-400::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:placeholder-teal-500::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:placeholder-teal-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:placeholder-teal-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:placeholder-teal-500::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:placeholder-teal-600::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:placeholder-teal-600:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:placeholder-teal-600::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:placeholder-teal-600::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:placeholder-teal-700::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:placeholder-teal-700:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:placeholder-teal-700::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:placeholder-teal-700::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:placeholder-teal-800::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:placeholder-teal-800:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:placeholder-teal-800::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:placeholder-teal-800::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:placeholder-teal-900::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:placeholder-teal-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:placeholder-teal-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:placeholder-teal-900::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:placeholder-blue-50::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:placeholder-blue-50:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:placeholder-blue-50::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:placeholder-blue-50::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:placeholder-blue-100::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:placeholder-blue-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:placeholder-blue-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:placeholder-blue-100::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:placeholder-blue-200::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:placeholder-blue-200:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:placeholder-blue-200::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:placeholder-blue-200::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:placeholder-blue-300::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:placeholder-blue-300:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:placeholder-blue-300::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:placeholder-blue-300::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:placeholder-blue-400::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:placeholder-blue-400:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:placeholder-blue-400::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:placeholder-blue-400::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:placeholder-blue-500::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:placeholder-blue-500:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:placeholder-blue-500::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:placeholder-blue-500::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:placeholder-blue-600::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:placeholder-blue-600:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:placeholder-blue-600::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:placeholder-blue-600::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:placeholder-blue-700::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:placeholder-blue-700:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:placeholder-blue-700::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:placeholder-blue-700::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:placeholder-blue-800::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:placeholder-blue-800:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:placeholder-blue-800::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:placeholder-blue-800::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:placeholder-blue-900::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:placeholder-blue-900:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:placeholder-blue-900::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:placeholder-blue-900::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:placeholder-indigo-50::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-50::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-100::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-100::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:placeholder-indigo-200::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:placeholder-indigo-200:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:placeholder-indigo-200::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:placeholder-indigo-200::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:placeholder-indigo-300::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:placeholder-indigo-300:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:placeholder-indigo-300::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:placeholder-indigo-300::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:placeholder-indigo-400::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:placeholder-indigo-400:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:placeholder-indigo-400::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:placeholder-indigo-400::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:placeholder-indigo-500::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:placeholder-indigo-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:placeholder-indigo-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:placeholder-indigo-500::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:placeholder-indigo-600::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:placeholder-indigo-600:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:placeholder-indigo-600::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:placeholder-indigo-600::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:placeholder-indigo-700::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:placeholder-indigo-700:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:placeholder-indigo-700::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:placeholder-indigo-700::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:placeholder-indigo-800::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:placeholder-indigo-800:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:placeholder-indigo-800::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:placeholder-indigo-800::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:placeholder-indigo-900::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:placeholder-indigo-900:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:placeholder-indigo-900::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:placeholder-indigo-900::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:placeholder-purple-50::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:placeholder-purple-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:placeholder-purple-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:placeholder-purple-50::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:placeholder-purple-100::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:placeholder-purple-100:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:placeholder-purple-100::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:placeholder-purple-100::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:placeholder-purple-200::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:placeholder-purple-200:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:placeholder-purple-200::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:placeholder-purple-200::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:placeholder-purple-300::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:placeholder-purple-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:placeholder-purple-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:placeholder-purple-300::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:placeholder-purple-400::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:placeholder-purple-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:placeholder-purple-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:placeholder-purple-400::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:placeholder-purple-500::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:placeholder-purple-500:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:placeholder-purple-500::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:placeholder-purple-500::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:placeholder-purple-600::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:placeholder-purple-600:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:placeholder-purple-600::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:placeholder-purple-600::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:placeholder-purple-700::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:placeholder-purple-700:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:placeholder-purple-700::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:placeholder-purple-700::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:placeholder-purple-800::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:placeholder-purple-800:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:placeholder-purple-800::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:placeholder-purple-800::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:placeholder-purple-900::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:placeholder-purple-900:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:placeholder-purple-900::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:placeholder-purple-900::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:placeholder-pink-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:placeholder-pink-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:placeholder-pink-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:placeholder-pink-50::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:placeholder-pink-100::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:placeholder-pink-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:placeholder-pink-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:placeholder-pink-100::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:placeholder-pink-200::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:placeholder-pink-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:placeholder-pink-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:placeholder-pink-200::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:placeholder-pink-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:placeholder-pink-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:placeholder-pink-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:placeholder-pink-300::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:placeholder-pink-400::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:placeholder-pink-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:placeholder-pink-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:placeholder-pink-400::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:placeholder-pink-500::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:placeholder-pink-500:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:placeholder-pink-500::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:placeholder-pink-500::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:placeholder-pink-600::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:placeholder-pink-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:placeholder-pink-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:placeholder-pink-600::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:placeholder-pink-700::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:placeholder-pink-700:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:placeholder-pink-700::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:placeholder-pink-700::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:placeholder-pink-800::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:placeholder-pink-800:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:placeholder-pink-800::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:placeholder-pink-800::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:placeholder-pink-900::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:placeholder-pink-900:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:placeholder-pink-900::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:placeholder-pink-900::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent}.lg\:focus\:placeholder-transparent:focus:-ms-input-placeholder{color:transparent}.lg\:focus\:placeholder-transparent:focus::-ms-input-placeholder{color:transparent}.lg\:focus\:placeholder-transparent:focus::placeholder{color:transparent}.lg\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-white:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-white:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:focus\:placeholder-black:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:focus\:placeholder-black:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-300:focus::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-400:focus::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-500:focus::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-600:focus::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-700:focus::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-800:focus::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-gray-900:focus::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-300:focus::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-400:focus::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-500:focus::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-600:focus::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-700:focus::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-800:focus::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-cool-gray-900:focus::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-100:focus::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-200:focus::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-400:focus::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-500:focus::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-600:focus::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-700:focus::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-800:focus::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:focus\:placeholder-red-900:focus::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-50:focus::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-100:focus::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-200:focus::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-300:focus::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-400:focus::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-500:focus::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-600:focus::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-700:focus::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-800:focus::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-orange-900:focus::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-100:focus::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-200:focus::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-300:focus::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-500:focus::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-600:focus::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-700:focus::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-800:focus::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:focus\:placeholder-yellow-900:focus::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-50:focus::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-100:focus::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-200:focus::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-300:focus::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-400:focus::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-500:focus::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-600:focus::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-700:focus::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-800:focus::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:focus\:placeholder-green-900:focus::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-50:focus::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-100:focus::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-200:focus::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-300:focus::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-400:focus::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-500:focus::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-600:focus::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-700:focus::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-800:focus::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-teal-900:focus::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-50:focus::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-100:focus::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-200:focus::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-300:focus::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-400:focus::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-500:focus::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-600:focus::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-700:focus::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-800:focus::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:focus\:placeholder-blue-900:focus::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-50:focus::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-100:focus::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-200:focus::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-300:focus::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-400:focus::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-500:focus::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-600:focus::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-700:focus::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-800:focus::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:focus\:placeholder-indigo-900:focus::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-50:focus::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-100:focus::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-200:focus::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-300:focus::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-400:focus::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-500:focus::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-600:focus::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-700:focus::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-800:focus::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:focus\:placeholder-purple-900:focus::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-100:focus::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-200:focus::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-400:focus::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-500:focus::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-600:focus::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-700:focus::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-800:focus::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:focus\:placeholder-pink-900:focus::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.lg\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0}.lg\:placeholder-opacity-0:-ms-input-placeholder{--placeholder-opacity:0}.lg\:placeholder-opacity-0::-ms-input-placeholder{--placeholder-opacity:0}.lg\:placeholder-opacity-0::placeholder{--placeholder-opacity:0}.lg\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25}.lg\:placeholder-opacity-25:-ms-input-placeholder{--placeholder-opacity:0.25}.lg\:placeholder-opacity-25::-ms-input-placeholder{--placeholder-opacity:0.25}.lg\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25}.lg\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5}.lg\:placeholder-opacity-50:-ms-input-placeholder{--placeholder-opacity:0.5}.lg\:placeholder-opacity-50::-ms-input-placeholder{--placeholder-opacity:0.5}.lg\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5}.lg\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75}.lg\:placeholder-opacity-75:-ms-input-placeholder{--placeholder-opacity:0.75}.lg\:placeholder-opacity-75::-ms-input-placeholder{--placeholder-opacity:0.75}.lg\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75}.lg\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1}.lg\:placeholder-opacity-100:-ms-input-placeholder{--placeholder-opacity:1}.lg\:placeholder-opacity-100::-ms-input-placeholder{--placeholder-opacity:1}.lg\:placeholder-opacity-100::placeholder{--placeholder-opacity:1}.lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0}.lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{--placeholder-opacity:0}.lg\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{--placeholder-opacity:0}.lg\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0}.lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25}.lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{--placeholder-opacity:0.25}.lg\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{--placeholder-opacity:0.25}.lg\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25}.lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5}.lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{--placeholder-opacity:0.5}.lg\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{--placeholder-opacity:0.5}.lg\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5}.lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75}.lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{--placeholder-opacity:0.75}.lg\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{--placeholder-opacity:0.75}.lg\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75}.lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1}.lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{--placeholder-opacity:1}.lg\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{--placeholder-opacity:1}.lg\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1}.lg\:pointer-events-none{pointer-events:none}.lg\:pointer-events-auto{pointer-events:auto}.lg\:static{position:static}.lg\:fixed{position:fixed}.lg\:absolute{position:absolute}.lg\:relative{position:relative}.lg\:sticky{position:-webkit-sticky;position:sticky}.lg\:inset-0{top:0;right:0;bottom:0;left:0}.lg\:inset-1{top:.25rem;right:.25rem;bottom:.25rem;left:.25rem}.lg\:inset-2{top:.5rem;right:.5rem;bottom:.5rem;left:.5rem}.lg\:inset-3{top:.75rem;right:.75rem;bottom:.75rem;left:.75rem}.lg\:inset-4{top:1rem;right:1rem;bottom:1rem;left:1rem}.lg\:inset-5{top:1.25rem;right:1.25rem;bottom:1.25rem;left:1.25rem}.lg\:inset-6{top:1.5rem;right:1.5rem;bottom:1.5rem;left:1.5rem}.lg\:inset-7{top:1.75rem;right:1.75rem;bottom:1.75rem;left:1.75rem}.lg\:inset-8{top:2rem;right:2rem;bottom:2rem;left:2rem}.lg\:inset-9{top:2.25rem;right:2.25rem;bottom:2.25rem;left:2.25rem}.lg\:inset-10{top:2.5rem;right:2.5rem;bottom:2.5rem;left:2.5rem}.lg\:inset-11{top:2.75rem;right:2.75rem;bottom:2.75rem;left:2.75rem}.lg\:inset-12{top:3rem;right:3rem;bottom:3rem;left:3rem}.lg\:inset-13{top:3.25rem;right:3.25rem;bottom:3.25rem;left:3.25rem}.lg\:inset-14{top:3.5rem;right:3.5rem;bottom:3.5rem;left:3.5rem}.lg\:inset-15{top:3.75rem;right:3.75rem;bottom:3.75rem;left:3.75rem}.lg\:inset-16{top:4rem;right:4rem;bottom:4rem;left:4rem}.lg\:inset-20{top:5rem;right:5rem;bottom:5rem;left:5rem}.lg\:inset-24{top:6rem;right:6rem;bottom:6rem;left:6rem}.lg\:inset-28{top:7rem;right:7rem;bottom:7rem;left:7rem}.lg\:inset-32{top:8rem;right:8rem;bottom:8rem;left:8rem}.lg\:inset-36{top:9rem;right:9rem;bottom:9rem;left:9rem}.lg\:inset-40{top:10rem;right:10rem;bottom:10rem;left:10rem}.lg\:inset-44{top:11rem;right:11rem;bottom:11rem;left:11rem}.lg\:inset-48{top:12rem;right:12rem;bottom:12rem;left:12rem}.lg\:inset-52{top:13rem;right:13rem;bottom:13rem;left:13rem}.lg\:inset-56{top:14rem;right:14rem;bottom:14rem;left:14rem}.lg\:inset-60{top:15rem;right:15rem;bottom:15rem;left:15rem}.lg\:inset-64{top:16rem;right:16rem;bottom:16rem;left:16rem}.lg\:inset-72{top:18rem;right:18rem;bottom:18rem;left:18rem}.lg\:inset-80{top:20rem;right:20rem;bottom:20rem;left:20rem}.lg\:inset-96{top:24rem;right:24rem;bottom:24rem;left:24rem}.lg\:inset-auto{top:auto;right:auto;bottom:auto;left:auto}.lg\:inset-px{top:1px;right:1px;bottom:1px;left:1px}.lg\:inset-0\.5{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.lg\:inset-1\.5{top:.375rem;right:.375rem;bottom:.375rem;left:.375rem}.lg\:inset-2\.5{top:.625rem;right:.625rem;bottom:.625rem;left:.625rem}.lg\:inset-3\.5{top:.875rem;right:.875rem;bottom:.875rem;left:.875rem}.lg\:inset-1\/2{top:50%;right:50%;bottom:50%;left:50%}.lg\:inset-1\/3{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.lg\:inset-2\/3{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.lg\:inset-1\/4{top:25%;right:25%;bottom:25%;left:25%}.lg\:inset-2\/4{top:50%;right:50%;bottom:50%;left:50%}.lg\:inset-3\/4{top:75%;right:75%;bottom:75%;left:75%}.lg\:inset-1\/5{top:20%;right:20%;bottom:20%;left:20%}.lg\:inset-2\/5{top:40%;right:40%;bottom:40%;left:40%}.lg\:inset-3\/5{top:60%;right:60%;bottom:60%;left:60%}.lg\:inset-4\/5{top:80%;right:80%;bottom:80%;left:80%}.lg\:inset-1\/6{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.lg\:inset-2\/6{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.lg\:inset-3\/6{top:50%;right:50%;bottom:50%;left:50%}.lg\:inset-4\/6{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.lg\:inset-5\/6{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.lg\:inset-1\/12{top:8.333333%;right:8.333333%;bottom:8.333333%;left:8.333333%}.lg\:inset-2\/12{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.lg\:inset-3\/12{top:25%;right:25%;bottom:25%;left:25%}.lg\:inset-4\/12{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.lg\:inset-5\/12{top:41.666667%;right:41.666667%;bottom:41.666667%;left:41.666667%}.lg\:inset-6\/12{top:50%;right:50%;bottom:50%;left:50%}.lg\:inset-7\/12{top:58.333333%;right:58.333333%;bottom:58.333333%;left:58.333333%}.lg\:inset-8\/12{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.lg\:inset-9\/12{top:75%;right:75%;bottom:75%;left:75%}.lg\:inset-10\/12{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.lg\:inset-11\/12{top:91.666667%;right:91.666667%;bottom:91.666667%;left:91.666667%}.lg\:inset-full{top:100%;right:100%;bottom:100%;left:100%}.lg\:inset-y-0{top:0;bottom:0}.lg\:inset-x-0{right:0;left:0}.lg\:inset-y-1{top:.25rem;bottom:.25rem}.lg\:inset-x-1{right:.25rem;left:.25rem}.lg\:inset-y-2{top:.5rem;bottom:.5rem}.lg\:inset-x-2{right:.5rem;left:.5rem}.lg\:inset-y-3{top:.75rem;bottom:.75rem}.lg\:inset-x-3{right:.75rem;left:.75rem}.lg\:inset-y-4{top:1rem;bottom:1rem}.lg\:inset-x-4{right:1rem;left:1rem}.lg\:inset-y-5{top:1.25rem;bottom:1.25rem}.lg\:inset-x-5{right:1.25rem;left:1.25rem}.lg\:inset-y-6{top:1.5rem;bottom:1.5rem}.lg\:inset-x-6{right:1.5rem;left:1.5rem}.lg\:inset-y-7{top:1.75rem;bottom:1.75rem}.lg\:inset-x-7{right:1.75rem;left:1.75rem}.lg\:inset-y-8{top:2rem;bottom:2rem}.lg\:inset-x-8{right:2rem;left:2rem}.lg\:inset-y-9{top:2.25rem;bottom:2.25rem}.lg\:inset-x-9{right:2.25rem;left:2.25rem}.lg\:inset-y-10{top:2.5rem;bottom:2.5rem}.lg\:inset-x-10{right:2.5rem;left:2.5rem}.lg\:inset-y-11{top:2.75rem;bottom:2.75rem}.lg\:inset-x-11{right:2.75rem;left:2.75rem}.lg\:inset-y-12{top:3rem;bottom:3rem}.lg\:inset-x-12{right:3rem;left:3rem}.lg\:inset-y-13{top:3.25rem;bottom:3.25rem}.lg\:inset-x-13{right:3.25rem;left:3.25rem}.lg\:inset-y-14{top:3.5rem;bottom:3.5rem}.lg\:inset-x-14{right:3.5rem;left:3.5rem}.lg\:inset-y-15{top:3.75rem;bottom:3.75rem}.lg\:inset-x-15{right:3.75rem;left:3.75rem}.lg\:inset-y-16{top:4rem;bottom:4rem}.lg\:inset-x-16{right:4rem;left:4rem}.lg\:inset-y-20{top:5rem;bottom:5rem}.lg\:inset-x-20{right:5rem;left:5rem}.lg\:inset-y-24{top:6rem;bottom:6rem}.lg\:inset-x-24{right:6rem;left:6rem}.lg\:inset-y-28{top:7rem;bottom:7rem}.lg\:inset-x-28{right:7rem;left:7rem}.lg\:inset-y-32{top:8rem;bottom:8rem}.lg\:inset-x-32{right:8rem;left:8rem}.lg\:inset-y-36{top:9rem;bottom:9rem}.lg\:inset-x-36{right:9rem;left:9rem}.lg\:inset-y-40{top:10rem;bottom:10rem}.lg\:inset-x-40{right:10rem;left:10rem}.lg\:inset-y-44{top:11rem;bottom:11rem}.lg\:inset-x-44{right:11rem;left:11rem}.lg\:inset-y-48{top:12rem;bottom:12rem}.lg\:inset-x-48{right:12rem;left:12rem}.lg\:inset-y-52{top:13rem;bottom:13rem}.lg\:inset-x-52{right:13rem;left:13rem}.lg\:inset-y-56{top:14rem;bottom:14rem}.lg\:inset-x-56{right:14rem;left:14rem}.lg\:inset-y-60{top:15rem;bottom:15rem}.lg\:inset-x-60{right:15rem;left:15rem}.lg\:inset-y-64{top:16rem;bottom:16rem}.lg\:inset-x-64{right:16rem;left:16rem}.lg\:inset-y-72{top:18rem;bottom:18rem}.lg\:inset-x-72{right:18rem;left:18rem}.lg\:inset-y-80{top:20rem;bottom:20rem}.lg\:inset-x-80{right:20rem;left:20rem}.lg\:inset-y-96{top:24rem;bottom:24rem}.lg\:inset-x-96{right:24rem;left:24rem}.lg\:inset-y-auto{top:auto;bottom:auto}.lg\:inset-x-auto{right:auto;left:auto}.lg\:inset-y-px{top:1px;bottom:1px}.lg\:inset-x-px{right:1px;left:1px}.lg\:inset-y-0\.5{top:.125rem;bottom:.125rem}.lg\:inset-x-0\.5{right:.125rem;left:.125rem}.lg\:inset-y-1\.5{top:.375rem;bottom:.375rem}.lg\:inset-x-1\.5{right:.375rem;left:.375rem}.lg\:inset-y-2\.5{top:.625rem;bottom:.625rem}.lg\:inset-x-2\.5{right:.625rem;left:.625rem}.lg\:inset-y-3\.5{top:.875rem;bottom:.875rem}.lg\:inset-x-3\.5{right:.875rem;left:.875rem}.lg\:inset-y-1\/2{top:50%;bottom:50%}.lg\:inset-x-1\/2{right:50%;left:50%}.lg\:inset-y-1\/3{top:33.333333%;bottom:33.333333%}.lg\:inset-x-1\/3{right:33.333333%;left:33.333333%}.lg\:inset-y-2\/3{top:66.666667%;bottom:66.666667%}.lg\:inset-x-2\/3{right:66.666667%;left:66.666667%}.lg\:inset-y-1\/4{top:25%;bottom:25%}.lg\:inset-x-1\/4{right:25%;left:25%}.lg\:inset-y-2\/4{top:50%;bottom:50%}.lg\:inset-x-2\/4{right:50%;left:50%}.lg\:inset-y-3\/4{top:75%;bottom:75%}.lg\:inset-x-3\/4{right:75%;left:75%}.lg\:inset-y-1\/5{top:20%;bottom:20%}.lg\:inset-x-1\/5{right:20%;left:20%}.lg\:inset-y-2\/5{top:40%;bottom:40%}.lg\:inset-x-2\/5{right:40%;left:40%}.lg\:inset-y-3\/5{top:60%;bottom:60%}.lg\:inset-x-3\/5{right:60%;left:60%}.lg\:inset-y-4\/5{top:80%;bottom:80%}.lg\:inset-x-4\/5{right:80%;left:80%}.lg\:inset-y-1\/6{top:16.666667%;bottom:16.666667%}.lg\:inset-x-1\/6{right:16.666667%;left:16.666667%}.lg\:inset-y-2\/6{top:33.333333%;bottom:33.333333%}.lg\:inset-x-2\/6{right:33.333333%;left:33.333333%}.lg\:inset-y-3\/6{top:50%;bottom:50%}.lg\:inset-x-3\/6{right:50%;left:50%}.lg\:inset-y-4\/6{top:66.666667%;bottom:66.666667%}.lg\:inset-x-4\/6{right:66.666667%;left:66.666667%}.lg\:inset-y-5\/6{top:83.333333%;bottom:83.333333%}.lg\:inset-x-5\/6{right:83.333333%;left:83.333333%}.lg\:inset-y-1\/12{top:8.333333%;bottom:8.333333%}.lg\:inset-x-1\/12{right:8.333333%;left:8.333333%}.lg\:inset-y-2\/12{top:16.666667%;bottom:16.666667%}.lg\:inset-x-2\/12{right:16.666667%;left:16.666667%}.lg\:inset-y-3\/12{top:25%;bottom:25%}.lg\:inset-x-3\/12{right:25%;left:25%}.lg\:inset-y-4\/12{top:33.333333%;bottom:33.333333%}.lg\:inset-x-4\/12{right:33.333333%;left:33.333333%}.lg\:inset-y-5\/12{top:41.666667%;bottom:41.666667%}.lg\:inset-x-5\/12{right:41.666667%;left:41.666667%}.lg\:inset-y-6\/12{top:50%;bottom:50%}.lg\:inset-x-6\/12{right:50%;left:50%}.lg\:inset-y-7\/12{top:58.333333%;bottom:58.333333%}.lg\:inset-x-7\/12{right:58.333333%;left:58.333333%}.lg\:inset-y-8\/12{top:66.666667%;bottom:66.666667%}.lg\:inset-x-8\/12{right:66.666667%;left:66.666667%}.lg\:inset-y-9\/12{top:75%;bottom:75%}.lg\:inset-x-9\/12{right:75%;left:75%}.lg\:inset-y-10\/12{top:83.333333%;bottom:83.333333%}.lg\:inset-x-10\/12{right:83.333333%;left:83.333333%}.lg\:inset-y-11\/12{top:91.666667%;bottom:91.666667%}.lg\:inset-x-11\/12{right:91.666667%;left:91.666667%}.lg\:inset-y-full{top:100%;bottom:100%}.lg\:inset-x-full{right:100%;left:100%}.lg\:top-0{top:0}.lg\:right-0{right:0}.lg\:bottom-0{bottom:0}.lg\:left-0{left:0}.lg\:top-1{top:.25rem}.lg\:right-1{right:.25rem}.lg\:bottom-1{bottom:.25rem}.lg\:left-1{left:.25rem}.lg\:top-2{top:.5rem}.lg\:right-2{right:.5rem}.lg\:bottom-2{bottom:.5rem}.lg\:left-2{left:.5rem}.lg\:top-3{top:.75rem}.lg\:right-3{right:.75rem}.lg\:bottom-3{bottom:.75rem}.lg\:left-3{left:.75rem}.lg\:top-4{top:1rem}.lg\:right-4{right:1rem}.lg\:bottom-4{bottom:1rem}.lg\:left-4{left:1rem}.lg\:top-5{top:1.25rem}.lg\:right-5{right:1.25rem}.lg\:bottom-5{bottom:1.25rem}.lg\:left-5{left:1.25rem}.lg\:top-6{top:1.5rem}.lg\:right-6{right:1.5rem}.lg\:bottom-6{bottom:1.5rem}.lg\:left-6{left:1.5rem}.lg\:top-7{top:1.75rem}.lg\:right-7{right:1.75rem}.lg\:bottom-7{bottom:1.75rem}.lg\:left-7{left:1.75rem}.lg\:top-8{top:2rem}.lg\:right-8{right:2rem}.lg\:bottom-8{bottom:2rem}.lg\:left-8{left:2rem}.lg\:top-9{top:2.25rem}.lg\:right-9{right:2.25rem}.lg\:bottom-9{bottom:2.25rem}.lg\:left-9{left:2.25rem}.lg\:top-10{top:2.5rem}.lg\:right-10{right:2.5rem}.lg\:bottom-10{bottom:2.5rem}.lg\:left-10{left:2.5rem}.lg\:top-11{top:2.75rem}.lg\:right-11{right:2.75rem}.lg\:bottom-11{bottom:2.75rem}.lg\:left-11{left:2.75rem}.lg\:top-12{top:3rem}.lg\:right-12{right:3rem}.lg\:bottom-12{bottom:3rem}.lg\:left-12{left:3rem}.lg\:top-13{top:3.25rem}.lg\:right-13{right:3.25rem}.lg\:bottom-13{bottom:3.25rem}.lg\:left-13{left:3.25rem}.lg\:top-14{top:3.5rem}.lg\:right-14{right:3.5rem}.lg\:bottom-14{bottom:3.5rem}.lg\:left-14{left:3.5rem}.lg\:top-15{top:3.75rem}.lg\:right-15{right:3.75rem}.lg\:bottom-15{bottom:3.75rem}.lg\:left-15{left:3.75rem}.lg\:top-16{top:4rem}.lg\:right-16{right:4rem}.lg\:bottom-16{bottom:4rem}.lg\:left-16{left:4rem}.lg\:top-20{top:5rem}.lg\:right-20{right:5rem}.lg\:bottom-20{bottom:5rem}.lg\:left-20{left:5rem}.lg\:top-24{top:6rem}.lg\:right-24{right:6rem}.lg\:bottom-24{bottom:6rem}.lg\:left-24{left:6rem}.lg\:top-28{top:7rem}.lg\:right-28{right:7rem}.lg\:bottom-28{bottom:7rem}.lg\:left-28{left:7rem}.lg\:top-32{top:8rem}.lg\:right-32{right:8rem}.lg\:bottom-32{bottom:8rem}.lg\:left-32{left:8rem}.lg\:top-36{top:9rem}.lg\:right-36{right:9rem}.lg\:bottom-36{bottom:9rem}.lg\:left-36{left:9rem}.lg\:top-40{top:10rem}.lg\:right-40{right:10rem}.lg\:bottom-40{bottom:10rem}.lg\:left-40{left:10rem}.lg\:top-44{top:11rem}.lg\:right-44{right:11rem}.lg\:bottom-44{bottom:11rem}.lg\:left-44{left:11rem}.lg\:top-48{top:12rem}.lg\:right-48{right:12rem}.lg\:bottom-48{bottom:12rem}.lg\:left-48{left:12rem}.lg\:top-52{top:13rem}.lg\:right-52{right:13rem}.lg\:bottom-52{bottom:13rem}.lg\:left-52{left:13rem}.lg\:top-56{top:14rem}.lg\:right-56{right:14rem}.lg\:bottom-56{bottom:14rem}.lg\:left-56{left:14rem}.lg\:top-60{top:15rem}.lg\:right-60{right:15rem}.lg\:bottom-60{bottom:15rem}.lg\:left-60{left:15rem}.lg\:top-64{top:16rem}.lg\:right-64{right:16rem}.lg\:bottom-64{bottom:16rem}.lg\:left-64{left:16rem}.lg\:top-72{top:18rem}.lg\:right-72{right:18rem}.lg\:bottom-72{bottom:18rem}.lg\:left-72{left:18rem}.lg\:top-80{top:20rem}.lg\:right-80{right:20rem}.lg\:bottom-80{bottom:20rem}.lg\:left-80{left:20rem}.lg\:top-96{top:24rem}.lg\:right-96{right:24rem}.lg\:bottom-96{bottom:24rem}.lg\:left-96{left:24rem}.lg\:top-auto{top:auto}.lg\:right-auto{right:auto}.lg\:bottom-auto{bottom:auto}.lg\:left-auto{left:auto}.lg\:top-px{top:1px}.lg\:right-px{right:1px}.lg\:bottom-px{bottom:1px}.lg\:left-px{left:1px}.lg\:top-0\.5{top:.125rem}.lg\:right-0\.5{right:.125rem}.lg\:bottom-0\.5{bottom:.125rem}.lg\:left-0\.5{left:.125rem}.lg\:top-1\.5{top:.375rem}.lg\:right-1\.5{right:.375rem}.lg\:bottom-1\.5{bottom:.375rem}.lg\:left-1\.5{left:.375rem}.lg\:top-2\.5{top:.625rem}.lg\:right-2\.5{right:.625rem}.lg\:bottom-2\.5{bottom:.625rem}.lg\:left-2\.5{left:.625rem}.lg\:top-3\.5{top:.875rem}.lg\:right-3\.5{right:.875rem}.lg\:bottom-3\.5{bottom:.875rem}.lg\:left-3\.5{left:.875rem}.lg\:top-1\/2{top:50%}.lg\:right-1\/2{right:50%}.lg\:bottom-1\/2{bottom:50%}.lg\:left-1\/2{left:50%}.lg\:top-1\/3{top:33.333333%}.lg\:right-1\/3{right:33.333333%}.lg\:bottom-1\/3{bottom:33.333333%}.lg\:left-1\/3{left:33.333333%}.lg\:top-2\/3{top:66.666667%}.lg\:right-2\/3{right:66.666667%}.lg\:bottom-2\/3{bottom:66.666667%}.lg\:left-2\/3{left:66.666667%}.lg\:top-1\/4{top:25%}.lg\:right-1\/4{right:25%}.lg\:bottom-1\/4{bottom:25%}.lg\:left-1\/4{left:25%}.lg\:top-2\/4{top:50%}.lg\:right-2\/4{right:50%}.lg\:bottom-2\/4{bottom:50%}.lg\:left-2\/4{left:50%}.lg\:top-3\/4{top:75%}.lg\:right-3\/4{right:75%}.lg\:bottom-3\/4{bottom:75%}.lg\:left-3\/4{left:75%}.lg\:top-1\/5{top:20%}.lg\:right-1\/5{right:20%}.lg\:bottom-1\/5{bottom:20%}.lg\:left-1\/5{left:20%}.lg\:top-2\/5{top:40%}.lg\:right-2\/5{right:40%}.lg\:bottom-2\/5{bottom:40%}.lg\:left-2\/5{left:40%}.lg\:top-3\/5{top:60%}.lg\:right-3\/5{right:60%}.lg\:bottom-3\/5{bottom:60%}.lg\:left-3\/5{left:60%}.lg\:top-4\/5{top:80%}.lg\:right-4\/5{right:80%}.lg\:bottom-4\/5{bottom:80%}.lg\:left-4\/5{left:80%}.lg\:top-1\/6{top:16.666667%}.lg\:right-1\/6{right:16.666667%}.lg\:bottom-1\/6{bottom:16.666667%}.lg\:left-1\/6{left:16.666667%}.lg\:top-2\/6{top:33.333333%}.lg\:right-2\/6{right:33.333333%}.lg\:bottom-2\/6{bottom:33.333333%}.lg\:left-2\/6{left:33.333333%}.lg\:top-3\/6{top:50%}.lg\:right-3\/6{right:50%}.lg\:bottom-3\/6{bottom:50%}.lg\:left-3\/6{left:50%}.lg\:top-4\/6{top:66.666667%}.lg\:right-4\/6{right:66.666667%}.lg\:bottom-4\/6{bottom:66.666667%}.lg\:left-4\/6{left:66.666667%}.lg\:top-5\/6{top:83.333333%}.lg\:right-5\/6{right:83.333333%}.lg\:bottom-5\/6{bottom:83.333333%}.lg\:left-5\/6{left:83.333333%}.lg\:top-1\/12{top:8.333333%}.lg\:right-1\/12{right:8.333333%}.lg\:bottom-1\/12{bottom:8.333333%}.lg\:left-1\/12{left:8.333333%}.lg\:top-2\/12{top:16.666667%}.lg\:right-2\/12{right:16.666667%}.lg\:bottom-2\/12{bottom:16.666667%}.lg\:left-2\/12{left:16.666667%}.lg\:top-3\/12{top:25%}.lg\:right-3\/12{right:25%}.lg\:bottom-3\/12{bottom:25%}.lg\:left-3\/12{left:25%}.lg\:top-4\/12{top:33.333333%}.lg\:right-4\/12{right:33.333333%}.lg\:bottom-4\/12{bottom:33.333333%}.lg\:left-4\/12{left:33.333333%}.lg\:top-5\/12{top:41.666667%}.lg\:right-5\/12{right:41.666667%}.lg\:bottom-5\/12{bottom:41.666667%}.lg\:left-5\/12{left:41.666667%}.lg\:top-6\/12{top:50%}.lg\:right-6\/12{right:50%}.lg\:bottom-6\/12{bottom:50%}.lg\:left-6\/12{left:50%}.lg\:top-7\/12{top:58.333333%}.lg\:right-7\/12{right:58.333333%}.lg\:bottom-7\/12{bottom:58.333333%}.lg\:left-7\/12{left:58.333333%}.lg\:top-8\/12{top:66.666667%}.lg\:right-8\/12{right:66.666667%}.lg\:bottom-8\/12{bottom:66.666667%}.lg\:left-8\/12{left:66.666667%}.lg\:top-9\/12{top:75%}.lg\:right-9\/12{right:75%}.lg\:bottom-9\/12{bottom:75%}.lg\:left-9\/12{left:75%}.lg\:top-10\/12{top:83.333333%}.lg\:right-10\/12{right:83.333333%}.lg\:bottom-10\/12{bottom:83.333333%}.lg\:left-10\/12{left:83.333333%}.lg\:top-11\/12{top:91.666667%}.lg\:right-11\/12{right:91.666667%}.lg\:bottom-11\/12{bottom:91.666667%}.lg\:left-11\/12{left:91.666667%}.lg\:top-full{top:100%}.lg\:right-full{right:100%}.lg\:bottom-full{bottom:100%}.lg\:left-full{left:100%}.lg\:resize-none{resize:none}.lg\:resize-y{resize:vertical}.lg\:resize-x{resize:horizontal}.lg\:resize{resize:both}.lg\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.lg\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.lg\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.lg\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.lg\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.lg\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.lg\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.lg\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.lg\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.lg\:shadow-none{box-shadow:none}.lg\:shadow-solid{box-shadow:0 0 0 2px currentColor}.lg\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.lg\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.lg\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.lg\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.lg\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.lg\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.lg\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.lg\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.lg\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.lg\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.group:focus .lg\:group-focus\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.group:focus .lg\:group-focus\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.group:focus .lg\:group-focus\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.group:focus .lg\:group-focus\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.group:focus .lg\:group-focus\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.group:focus .lg\:group-focus\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.group:focus .lg\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.group:focus .lg\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.group:focus .lg\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.group:focus .lg\:group-focus\:shadow-none{box-shadow:none}.group:focus .lg\:group-focus\:shadow-solid{box-shadow:0 0 0 2px currentColor}.group:focus .lg\:group-focus\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.group:focus .lg\:group-focus\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.group:focus .lg\:group-focus\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.group:focus .lg\:group-focus\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.group:focus .lg\:group-focus\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.group:focus .lg\:group-focus\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.group:focus .lg\:group-focus\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.group:focus .lg\:group-focus\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.group:focus .lg\:group-focus\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.group:focus .lg\:group-focus\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.lg\:hover\:shadow-xs:hover{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.lg\:hover\:shadow-sm:hover{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.lg\:hover\:shadow:hover{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.lg\:hover\:shadow-md:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.lg\:hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.lg\:hover\:shadow-xl:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.lg\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.lg\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.lg\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.lg\:hover\:shadow-none:hover{box-shadow:none}.lg\:hover\:shadow-solid:hover{box-shadow:0 0 0 2px currentColor}.lg\:hover\:shadow-outline-gray:hover{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.lg\:hover\:shadow-outline-blue:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.lg\:hover\:shadow-outline-teal:hover{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.lg\:hover\:shadow-outline-green:hover{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.lg\:hover\:shadow-outline-yellow:hover{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.lg\:hover\:shadow-outline-orange:hover{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.lg\:hover\:shadow-outline-red:hover{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.lg\:hover\:shadow-outline-pink:hover{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.lg\:hover\:shadow-outline-purple:hover{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.lg\:hover\:shadow-outline-indigo:hover{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.lg\:focus\:shadow-xs:focus{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.lg\:focus\:shadow-sm:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.lg\:focus\:shadow:focus{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.lg\:focus\:shadow-md:focus{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.lg\:focus\:shadow-lg:focus{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.lg\:focus\:shadow-xl:focus{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.lg\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.lg\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.lg\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.lg\:focus\:shadow-none:focus{box-shadow:none}.lg\:focus\:shadow-solid:focus{box-shadow:0 0 0 2px currentColor}.lg\:focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.lg\:focus\:shadow-outline-blue:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.lg\:focus\:shadow-outline-teal:focus{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.lg\:focus\:shadow-outline-green:focus{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.lg\:focus\:shadow-outline-yellow:focus{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.lg\:focus\:shadow-outline-orange:focus{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.lg\:focus\:shadow-outline-red:focus{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.lg\:focus\:shadow-outline-pink:focus{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.lg\:focus\:shadow-outline-purple:focus{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.lg\:focus\:shadow-outline-indigo:focus{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.lg\:fill-current{fill:currentColor}.lg\:stroke-current{stroke:currentColor}.lg\:stroke-0{stroke-width:0}.lg\:stroke-1{stroke-width:1}.lg\:stroke-2{stroke-width:2}.lg\:table-auto{table-layout:auto}.lg\:table-fixed{table-layout:fixed}.lg\:text-left{text-align:left}.lg\:text-center{text-align:center}.lg\:text-right{text-align:right}.lg\:text-justify{text-align:justify}.lg\:text-transparent{color:transparent}.lg\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.lg\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.lg\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.lg\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.lg\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.lg\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.lg\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.lg\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.lg\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.lg\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.lg\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.lg\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.lg\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.lg\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.lg\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.lg\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.lg\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.lg\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.lg\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.lg\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.lg\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.lg\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.lg\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.lg\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.lg\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.lg\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.lg\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.lg\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.lg\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.lg\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.lg\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.lg\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.lg\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.lg\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.lg\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.lg\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.lg\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.lg\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.lg\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.lg\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.lg\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.lg\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.lg\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.lg\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.lg\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.lg\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.lg\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.lg\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.lg\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.lg\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.lg\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.lg\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.lg\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.lg\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.lg\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.lg\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.lg\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.lg\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.lg\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.lg\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.lg\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.lg\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.lg\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.lg\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.lg\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.lg\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.lg\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.lg\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.lg\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.lg\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.lg\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.lg\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.lg\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.lg\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.lg\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.lg\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.lg\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.lg\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.lg\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.lg\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.lg\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.lg\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.lg\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.lg\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.lg\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.lg\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.lg\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.lg\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.lg\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.lg\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.lg\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.lg\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.lg\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.lg\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.lg\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.lg\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.lg\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.lg\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.lg\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.lg\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.lg\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.lg\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.lg\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.lg\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.lg\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.lg\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.lg\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.lg\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.lg\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.lg\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.lg\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.lg\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:hover .lg\:group-hover\:text-transparent{color:transparent}.group:hover .lg\:group-hover\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:hover .lg\:group-hover\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:hover .lg\:group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:hover .lg\:group-hover\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:hover .lg\:group-hover\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:hover .lg\:group-hover\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:hover .lg\:group-hover\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:hover .lg\:group-hover\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:hover .lg\:group-hover\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:hover .lg\:group-hover\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .lg\:group-hover\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:hover .lg\:group-hover\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:hover .lg\:group-hover\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:focus .lg\:group-focus\:text-transparent{color:transparent}.group:focus .lg\:group-focus\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:focus .lg\:group-focus\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:focus .lg\:group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:focus .lg\:group-focus\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:focus .lg\:group-focus\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:focus .lg\:group-focus\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:focus .lg\:group-focus\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:focus .lg\:group-focus\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:focus .lg\:group-focus\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:focus .lg\:group-focus\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .lg\:group-focus\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:focus .lg\:group-focus\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:focus .lg\:group-focus\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.lg\:hover\:text-transparent:hover{color:transparent}.lg\:hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.lg\:hover\:text-black:hover{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.lg\:hover\:text-gray-50:hover{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.lg\:hover\:text-gray-100:hover{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.lg\:hover\:text-gray-200:hover{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.lg\:hover\:text-gray-300:hover{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.lg\:hover\:text-gray-400:hover{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.lg\:hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.lg\:hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.lg\:hover\:text-gray-700:hover{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.lg\:hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.lg\:hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.lg\:hover\:text-cool-gray-50:hover{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.lg\:hover\:text-cool-gray-100:hover{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.lg\:hover\:text-cool-gray-200:hover{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.lg\:hover\:text-cool-gray-300:hover{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.lg\:hover\:text-cool-gray-400:hover{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.lg\:hover\:text-cool-gray-500:hover{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.lg\:hover\:text-cool-gray-600:hover{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.lg\:hover\:text-cool-gray-700:hover{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.lg\:hover\:text-cool-gray-800:hover{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.lg\:hover\:text-cool-gray-900:hover{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.lg\:hover\:text-red-50:hover{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.lg\:hover\:text-red-100:hover{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.lg\:hover\:text-red-200:hover{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.lg\:hover\:text-red-300:hover{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.lg\:hover\:text-red-400:hover{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.lg\:hover\:text-red-500:hover{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.lg\:hover\:text-red-600:hover{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.lg\:hover\:text-red-700:hover{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.lg\:hover\:text-red-800:hover{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.lg\:hover\:text-red-900:hover{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.lg\:hover\:text-orange-50:hover{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.lg\:hover\:text-orange-100:hover{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.lg\:hover\:text-orange-200:hover{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.lg\:hover\:text-orange-300:hover{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.lg\:hover\:text-orange-400:hover{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.lg\:hover\:text-orange-500:hover{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.lg\:hover\:text-orange-600:hover{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.lg\:hover\:text-orange-700:hover{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.lg\:hover\:text-orange-800:hover{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.lg\:hover\:text-orange-900:hover{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.lg\:hover\:text-yellow-50:hover{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.lg\:hover\:text-yellow-100:hover{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.lg\:hover\:text-yellow-200:hover{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.lg\:hover\:text-yellow-300:hover{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.lg\:hover\:text-yellow-400:hover{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.lg\:hover\:text-yellow-500:hover{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.lg\:hover\:text-yellow-600:hover{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.lg\:hover\:text-yellow-700:hover{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.lg\:hover\:text-yellow-800:hover{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.lg\:hover\:text-yellow-900:hover{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.lg\:hover\:text-green-50:hover{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.lg\:hover\:text-green-100:hover{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.lg\:hover\:text-green-200:hover{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.lg\:hover\:text-green-300:hover{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.lg\:hover\:text-green-400:hover{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.lg\:hover\:text-green-500:hover{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.lg\:hover\:text-green-600:hover{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.lg\:hover\:text-green-700:hover{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.lg\:hover\:text-green-800:hover{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.lg\:hover\:text-green-900:hover{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.lg\:hover\:text-teal-50:hover{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.lg\:hover\:text-teal-100:hover{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.lg\:hover\:text-teal-200:hover{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.lg\:hover\:text-teal-300:hover{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.lg\:hover\:text-teal-400:hover{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.lg\:hover\:text-teal-500:hover{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.lg\:hover\:text-teal-600:hover{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.lg\:hover\:text-teal-700:hover{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.lg\:hover\:text-teal-800:hover{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.lg\:hover\:text-teal-900:hover{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.lg\:hover\:text-blue-50:hover{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.lg\:hover\:text-blue-100:hover{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.lg\:hover\:text-blue-200:hover{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.lg\:hover\:text-blue-300:hover{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.lg\:hover\:text-blue-400:hover{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.lg\:hover\:text-blue-500:hover{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.lg\:hover\:text-blue-600:hover{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.lg\:hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.lg\:hover\:text-blue-800:hover{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.lg\:hover\:text-blue-900:hover{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.lg\:hover\:text-indigo-50:hover{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.lg\:hover\:text-indigo-100:hover{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.lg\:hover\:text-indigo-200:hover{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.lg\:hover\:text-indigo-300:hover{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.lg\:hover\:text-indigo-400:hover{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.lg\:hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.lg\:hover\:text-indigo-600:hover{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.lg\:hover\:text-indigo-700:hover{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.lg\:hover\:text-indigo-800:hover{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.lg\:hover\:text-indigo-900:hover{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.lg\:hover\:text-purple-50:hover{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.lg\:hover\:text-purple-100:hover{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.lg\:hover\:text-purple-200:hover{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.lg\:hover\:text-purple-300:hover{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.lg\:hover\:text-purple-400:hover{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.lg\:hover\:text-purple-500:hover{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.lg\:hover\:text-purple-600:hover{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.lg\:hover\:text-purple-700:hover{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.lg\:hover\:text-purple-800:hover{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.lg\:hover\:text-purple-900:hover{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.lg\:hover\:text-pink-50:hover{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.lg\:hover\:text-pink-100:hover{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.lg\:hover\:text-pink-200:hover{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.lg\:hover\:text-pink-300:hover{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.lg\:hover\:text-pink-400:hover{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.lg\:hover\:text-pink-500:hover{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.lg\:hover\:text-pink-600:hover{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.lg\:hover\:text-pink-700:hover{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.lg\:hover\:text-pink-800:hover{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.lg\:hover\:text-pink-900:hover{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.lg\:focus-within\:text-transparent:focus-within{color:transparent}.lg\:focus-within\:text-white:focus-within{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.lg\:focus-within\:text-black:focus-within{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.lg\:focus-within\:text-gray-50:focus-within{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.lg\:focus-within\:text-gray-100:focus-within{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.lg\:focus-within\:text-gray-200:focus-within{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.lg\:focus-within\:text-gray-300:focus-within{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.lg\:focus-within\:text-gray-400:focus-within{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.lg\:focus-within\:text-gray-500:focus-within{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.lg\:focus-within\:text-gray-600:focus-within{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.lg\:focus-within\:text-gray-700:focus-within{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.lg\:focus-within\:text-gray-800:focus-within{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.lg\:focus-within\:text-gray-900:focus-within{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-50:focus-within{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-100:focus-within{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-200:focus-within{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-300:focus-within{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-400:focus-within{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-500:focus-within{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-600:focus-within{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-700:focus-within{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-800:focus-within{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.lg\:focus-within\:text-cool-gray-900:focus-within{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.lg\:focus-within\:text-red-50:focus-within{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.lg\:focus-within\:text-red-100:focus-within{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.lg\:focus-within\:text-red-200:focus-within{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.lg\:focus-within\:text-red-300:focus-within{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.lg\:focus-within\:text-red-400:focus-within{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.lg\:focus-within\:text-red-500:focus-within{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.lg\:focus-within\:text-red-600:focus-within{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.lg\:focus-within\:text-red-700:focus-within{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.lg\:focus-within\:text-red-800:focus-within{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.lg\:focus-within\:text-red-900:focus-within{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.lg\:focus-within\:text-orange-50:focus-within{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.lg\:focus-within\:text-orange-100:focus-within{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.lg\:focus-within\:text-orange-200:focus-within{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.lg\:focus-within\:text-orange-300:focus-within{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.lg\:focus-within\:text-orange-400:focus-within{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.lg\:focus-within\:text-orange-500:focus-within{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.lg\:focus-within\:text-orange-600:focus-within{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.lg\:focus-within\:text-orange-700:focus-within{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.lg\:focus-within\:text-orange-800:focus-within{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.lg\:focus-within\:text-orange-900:focus-within{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.lg\:focus-within\:text-yellow-50:focus-within{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.lg\:focus-within\:text-yellow-100:focus-within{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.lg\:focus-within\:text-yellow-200:focus-within{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.lg\:focus-within\:text-yellow-300:focus-within{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.lg\:focus-within\:text-yellow-400:focus-within{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.lg\:focus-within\:text-yellow-500:focus-within{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.lg\:focus-within\:text-yellow-600:focus-within{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.lg\:focus-within\:text-yellow-700:focus-within{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.lg\:focus-within\:text-yellow-800:focus-within{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.lg\:focus-within\:text-yellow-900:focus-within{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.lg\:focus-within\:text-green-50:focus-within{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.lg\:focus-within\:text-green-100:focus-within{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.lg\:focus-within\:text-green-200:focus-within{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.lg\:focus-within\:text-green-300:focus-within{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.lg\:focus-within\:text-green-400:focus-within{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.lg\:focus-within\:text-green-500:focus-within{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.lg\:focus-within\:text-green-600:focus-within{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.lg\:focus-within\:text-green-700:focus-within{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.lg\:focus-within\:text-green-800:focus-within{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.lg\:focus-within\:text-green-900:focus-within{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.lg\:focus-within\:text-teal-50:focus-within{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.lg\:focus-within\:text-teal-100:focus-within{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.lg\:focus-within\:text-teal-200:focus-within{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.lg\:focus-within\:text-teal-300:focus-within{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.lg\:focus-within\:text-teal-400:focus-within{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.lg\:focus-within\:text-teal-500:focus-within{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.lg\:focus-within\:text-teal-600:focus-within{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.lg\:focus-within\:text-teal-700:focus-within{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.lg\:focus-within\:text-teal-800:focus-within{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.lg\:focus-within\:text-teal-900:focus-within{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.lg\:focus-within\:text-blue-50:focus-within{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.lg\:focus-within\:text-blue-100:focus-within{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.lg\:focus-within\:text-blue-200:focus-within{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.lg\:focus-within\:text-blue-300:focus-within{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.lg\:focus-within\:text-blue-400:focus-within{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.lg\:focus-within\:text-blue-500:focus-within{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.lg\:focus-within\:text-blue-600:focus-within{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.lg\:focus-within\:text-blue-700:focus-within{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.lg\:focus-within\:text-blue-800:focus-within{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.lg\:focus-within\:text-blue-900:focus-within{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.lg\:focus-within\:text-indigo-50:focus-within{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.lg\:focus-within\:text-indigo-100:focus-within{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.lg\:focus-within\:text-indigo-200:focus-within{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.lg\:focus-within\:text-indigo-300:focus-within{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.lg\:focus-within\:text-indigo-400:focus-within{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.lg\:focus-within\:text-indigo-500:focus-within{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.lg\:focus-within\:text-indigo-600:focus-within{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.lg\:focus-within\:text-indigo-700:focus-within{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.lg\:focus-within\:text-indigo-800:focus-within{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.lg\:focus-within\:text-indigo-900:focus-within{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.lg\:focus-within\:text-purple-50:focus-within{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.lg\:focus-within\:text-purple-100:focus-within{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.lg\:focus-within\:text-purple-200:focus-within{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.lg\:focus-within\:text-purple-300:focus-within{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.lg\:focus-within\:text-purple-400:focus-within{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.lg\:focus-within\:text-purple-500:focus-within{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.lg\:focus-within\:text-purple-600:focus-within{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.lg\:focus-within\:text-purple-700:focus-within{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.lg\:focus-within\:text-purple-800:focus-within{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.lg\:focus-within\:text-purple-900:focus-within{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.lg\:focus-within\:text-pink-50:focus-within{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.lg\:focus-within\:text-pink-100:focus-within{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.lg\:focus-within\:text-pink-200:focus-within{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.lg\:focus-within\:text-pink-300:focus-within{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.lg\:focus-within\:text-pink-400:focus-within{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.lg\:focus-within\:text-pink-500:focus-within{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.lg\:focus-within\:text-pink-600:focus-within{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.lg\:focus-within\:text-pink-700:focus-within{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.lg\:focus-within\:text-pink-800:focus-within{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.lg\:focus-within\:text-pink-900:focus-within{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.lg\:focus\:text-transparent:focus{color:transparent}.lg\:focus\:text-white:focus{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.lg\:focus\:text-black:focus{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.lg\:focus\:text-gray-50:focus{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.lg\:focus\:text-gray-100:focus{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.lg\:focus\:text-gray-200:focus{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.lg\:focus\:text-gray-300:focus{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.lg\:focus\:text-gray-400:focus{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.lg\:focus\:text-gray-500:focus{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.lg\:focus\:text-gray-600:focus{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.lg\:focus\:text-gray-700:focus{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.lg\:focus\:text-gray-800:focus{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.lg\:focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.lg\:focus\:text-cool-gray-50:focus{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.lg\:focus\:text-cool-gray-100:focus{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.lg\:focus\:text-cool-gray-200:focus{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.lg\:focus\:text-cool-gray-300:focus{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.lg\:focus\:text-cool-gray-400:focus{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.lg\:focus\:text-cool-gray-500:focus{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.lg\:focus\:text-cool-gray-600:focus{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.lg\:focus\:text-cool-gray-700:focus{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.lg\:focus\:text-cool-gray-800:focus{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.lg\:focus\:text-cool-gray-900:focus{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.lg\:focus\:text-red-50:focus{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.lg\:focus\:text-red-100:focus{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.lg\:focus\:text-red-200:focus{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.lg\:focus\:text-red-300:focus{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.lg\:focus\:text-red-400:focus{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.lg\:focus\:text-red-500:focus{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.lg\:focus\:text-red-600:focus{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.lg\:focus\:text-red-700:focus{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.lg\:focus\:text-red-800:focus{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.lg\:focus\:text-red-900:focus{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.lg\:focus\:text-orange-50:focus{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.lg\:focus\:text-orange-100:focus{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.lg\:focus\:text-orange-200:focus{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.lg\:focus\:text-orange-300:focus{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.lg\:focus\:text-orange-400:focus{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.lg\:focus\:text-orange-500:focus{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.lg\:focus\:text-orange-600:focus{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.lg\:focus\:text-orange-700:focus{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.lg\:focus\:text-orange-800:focus{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.lg\:focus\:text-orange-900:focus{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.lg\:focus\:text-yellow-50:focus{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.lg\:focus\:text-yellow-100:focus{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.lg\:focus\:text-yellow-200:focus{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.lg\:focus\:text-yellow-300:focus{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.lg\:focus\:text-yellow-400:focus{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.lg\:focus\:text-yellow-500:focus{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.lg\:focus\:text-yellow-600:focus{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.lg\:focus\:text-yellow-700:focus{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.lg\:focus\:text-yellow-800:focus{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.lg\:focus\:text-yellow-900:focus{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.lg\:focus\:text-green-50:focus{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.lg\:focus\:text-green-100:focus{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.lg\:focus\:text-green-200:focus{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.lg\:focus\:text-green-300:focus{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.lg\:focus\:text-green-400:focus{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.lg\:focus\:text-green-500:focus{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.lg\:focus\:text-green-600:focus{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.lg\:focus\:text-green-700:focus{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.lg\:focus\:text-green-800:focus{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.lg\:focus\:text-green-900:focus{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.lg\:focus\:text-teal-50:focus{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.lg\:focus\:text-teal-100:focus{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.lg\:focus\:text-teal-200:focus{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.lg\:focus\:text-teal-300:focus{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.lg\:focus\:text-teal-400:focus{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.lg\:focus\:text-teal-500:focus{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.lg\:focus\:text-teal-600:focus{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.lg\:focus\:text-teal-700:focus{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.lg\:focus\:text-teal-800:focus{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.lg\:focus\:text-teal-900:focus{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.lg\:focus\:text-blue-50:focus{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.lg\:focus\:text-blue-100:focus{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.lg\:focus\:text-blue-200:focus{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.lg\:focus\:text-blue-300:focus{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.lg\:focus\:text-blue-400:focus{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.lg\:focus\:text-blue-500:focus{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.lg\:focus\:text-blue-600:focus{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.lg\:focus\:text-blue-700:focus{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.lg\:focus\:text-blue-800:focus{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.lg\:focus\:text-blue-900:focus{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.lg\:focus\:text-indigo-50:focus{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.lg\:focus\:text-indigo-100:focus{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.lg\:focus\:text-indigo-200:focus{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.lg\:focus\:text-indigo-300:focus{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.lg\:focus\:text-indigo-400:focus{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.lg\:focus\:text-indigo-500:focus{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.lg\:focus\:text-indigo-600:focus{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.lg\:focus\:text-indigo-700:focus{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.lg\:focus\:text-indigo-800:focus{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.lg\:focus\:text-indigo-900:focus{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.lg\:focus\:text-purple-50:focus{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.lg\:focus\:text-purple-100:focus{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.lg\:focus\:text-purple-200:focus{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.lg\:focus\:text-purple-300:focus{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.lg\:focus\:text-purple-400:focus{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.lg\:focus\:text-purple-500:focus{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.lg\:focus\:text-purple-600:focus{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.lg\:focus\:text-purple-700:focus{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.lg\:focus\:text-purple-800:focus{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.lg\:focus\:text-purple-900:focus{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.lg\:focus\:text-pink-50:focus{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.lg\:focus\:text-pink-100:focus{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.lg\:focus\:text-pink-200:focus{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.lg\:focus\:text-pink-300:focus{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.lg\:focus\:text-pink-400:focus{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.lg\:focus\:text-pink-500:focus{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.lg\:focus\:text-pink-600:focus{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.lg\:focus\:text-pink-700:focus{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.lg\:focus\:text-pink-800:focus{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.lg\:focus\:text-pink-900:focus{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.lg\:active\:text-transparent:active{color:transparent}.lg\:active\:text-white:active{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.lg\:active\:text-black:active{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.lg\:active\:text-gray-50:active{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.lg\:active\:text-gray-100:active{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.lg\:active\:text-gray-200:active{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.lg\:active\:text-gray-300:active{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.lg\:active\:text-gray-400:active{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.lg\:active\:text-gray-500:active{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.lg\:active\:text-gray-600:active{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.lg\:active\:text-gray-700:active{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.lg\:active\:text-gray-800:active{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.lg\:active\:text-gray-900:active{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.lg\:active\:text-cool-gray-50:active{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.lg\:active\:text-cool-gray-100:active{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.lg\:active\:text-cool-gray-200:active{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.lg\:active\:text-cool-gray-300:active{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.lg\:active\:text-cool-gray-400:active{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.lg\:active\:text-cool-gray-500:active{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.lg\:active\:text-cool-gray-600:active{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.lg\:active\:text-cool-gray-700:active{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.lg\:active\:text-cool-gray-800:active{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.lg\:active\:text-cool-gray-900:active{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.lg\:active\:text-red-50:active{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.lg\:active\:text-red-100:active{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.lg\:active\:text-red-200:active{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.lg\:active\:text-red-300:active{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.lg\:active\:text-red-400:active{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.lg\:active\:text-red-500:active{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.lg\:active\:text-red-600:active{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.lg\:active\:text-red-700:active{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.lg\:active\:text-red-800:active{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.lg\:active\:text-red-900:active{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.lg\:active\:text-orange-50:active{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.lg\:active\:text-orange-100:active{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.lg\:active\:text-orange-200:active{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.lg\:active\:text-orange-300:active{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.lg\:active\:text-orange-400:active{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.lg\:active\:text-orange-500:active{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.lg\:active\:text-orange-600:active{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.lg\:active\:text-orange-700:active{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.lg\:active\:text-orange-800:active{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.lg\:active\:text-orange-900:active{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.lg\:active\:text-yellow-50:active{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.lg\:active\:text-yellow-100:active{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.lg\:active\:text-yellow-200:active{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.lg\:active\:text-yellow-300:active{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.lg\:active\:text-yellow-400:active{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.lg\:active\:text-yellow-500:active{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.lg\:active\:text-yellow-600:active{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.lg\:active\:text-yellow-700:active{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.lg\:active\:text-yellow-800:active{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.lg\:active\:text-yellow-900:active{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.lg\:active\:text-green-50:active{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.lg\:active\:text-green-100:active{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.lg\:active\:text-green-200:active{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.lg\:active\:text-green-300:active{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.lg\:active\:text-green-400:active{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.lg\:active\:text-green-500:active{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.lg\:active\:text-green-600:active{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.lg\:active\:text-green-700:active{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.lg\:active\:text-green-800:active{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.lg\:active\:text-green-900:active{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.lg\:active\:text-teal-50:active{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.lg\:active\:text-teal-100:active{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.lg\:active\:text-teal-200:active{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.lg\:active\:text-teal-300:active{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.lg\:active\:text-teal-400:active{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.lg\:active\:text-teal-500:active{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.lg\:active\:text-teal-600:active{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.lg\:active\:text-teal-700:active{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.lg\:active\:text-teal-800:active{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.lg\:active\:text-teal-900:active{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.lg\:active\:text-blue-50:active{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.lg\:active\:text-blue-100:active{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.lg\:active\:text-blue-200:active{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.lg\:active\:text-blue-300:active{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.lg\:active\:text-blue-400:active{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.lg\:active\:text-blue-500:active{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.lg\:active\:text-blue-600:active{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.lg\:active\:text-blue-700:active{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.lg\:active\:text-blue-800:active{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.lg\:active\:text-blue-900:active{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.lg\:active\:text-indigo-50:active{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.lg\:active\:text-indigo-100:active{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.lg\:active\:text-indigo-200:active{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.lg\:active\:text-indigo-300:active{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.lg\:active\:text-indigo-400:active{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.lg\:active\:text-indigo-500:active{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.lg\:active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.lg\:active\:text-indigo-700:active{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.lg\:active\:text-indigo-800:active{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.lg\:active\:text-indigo-900:active{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.lg\:active\:text-purple-50:active{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.lg\:active\:text-purple-100:active{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.lg\:active\:text-purple-200:active{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.lg\:active\:text-purple-300:active{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.lg\:active\:text-purple-400:active{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.lg\:active\:text-purple-500:active{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.lg\:active\:text-purple-600:active{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.lg\:active\:text-purple-700:active{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.lg\:active\:text-purple-800:active{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.lg\:active\:text-purple-900:active{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.lg\:active\:text-pink-50:active{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.lg\:active\:text-pink-100:active{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.lg\:active\:text-pink-200:active{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.lg\:active\:text-pink-300:active{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.lg\:active\:text-pink-400:active{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.lg\:active\:text-pink-500:active{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.lg\:active\:text-pink-600:active{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.lg\:active\:text-pink-700:active{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.lg\:active\:text-pink-800:active{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.lg\:active\:text-pink-900:active{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.lg\:text-opacity-0{--text-opacity:0}.lg\:text-opacity-25{--text-opacity:0.25}.lg\:text-opacity-50{--text-opacity:0.5}.lg\:text-opacity-75{--text-opacity:0.75}.lg\:text-opacity-100{--text-opacity:1}.lg\:hover\:text-opacity-0:hover{--text-opacity:0}.lg\:hover\:text-opacity-25:hover{--text-opacity:0.25}.lg\:hover\:text-opacity-50:hover{--text-opacity:0.5}.lg\:hover\:text-opacity-75:hover{--text-opacity:0.75}.lg\:hover\:text-opacity-100:hover{--text-opacity:1}.lg\:focus\:text-opacity-0:focus{--text-opacity:0}.lg\:focus\:text-opacity-25:focus{--text-opacity:0.25}.lg\:focus\:text-opacity-50:focus{--text-opacity:0.5}.lg\:focus\:text-opacity-75:focus{--text-opacity:0.75}.lg\:focus\:text-opacity-100:focus{--text-opacity:1}.lg\:italic{font-style:italic}.lg\:not-italic{font-style:normal}.lg\:uppercase{text-transform:uppercase}.lg\:lowercase{text-transform:lowercase}.lg\:capitalize{text-transform:capitalize}.lg\:normal-case{text-transform:none}.lg\:underline{text-decoration:underline}.lg\:line-through{text-decoration:line-through}.lg\:no-underline{text-decoration:none}.group:hover .lg\:group-hover\:underline{text-decoration:underline}.group:hover .lg\:group-hover\:line-through{text-decoration:line-through}.group:hover .lg\:group-hover\:no-underline{text-decoration:none}.group:focus .lg\:group-focus\:underline{text-decoration:underline}.group:focus .lg\:group-focus\:line-through{text-decoration:line-through}.group:focus .lg\:group-focus\:no-underline{text-decoration:none}.lg\:hover\:underline:hover{text-decoration:underline}.lg\:hover\:line-through:hover{text-decoration:line-through}.lg\:hover\:no-underline:hover{text-decoration:none}.lg\:focus\:underline:focus{text-decoration:underline}.lg\:focus\:line-through:focus{text-decoration:line-through}.lg\:focus\:no-underline:focus{text-decoration:none}.lg\:antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg\:subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.lg\:tracking-tighter{letter-spacing:-.05em}.lg\:tracking-tight{letter-spacing:-.025em}.lg\:tracking-normal{letter-spacing:0}.lg\:tracking-wide{letter-spacing:.025em}.lg\:tracking-wider{letter-spacing:.05em}.lg\:tracking-widest{letter-spacing:.1em}.lg\:select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lg\:select-text{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.lg\:select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.lg\:select-auto{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.lg\:align-baseline{vertical-align:baseline}.lg\:align-top{vertical-align:top}.lg\:align-middle{vertical-align:middle}.lg\:align-bottom{vertical-align:bottom}.lg\:align-text-top{vertical-align:text-top}.lg\:align-text-bottom{vertical-align:text-bottom}.lg\:visible{visibility:visible}.lg\:invisible{visibility:hidden}.lg\:whitespace-normal{white-space:normal}.lg\:whitespace-no-wrap{white-space:nowrap}.lg\:whitespace-pre{white-space:pre}.lg\:whitespace-pre-line{white-space:pre-line}.lg\:whitespace-pre-wrap{white-space:pre-wrap}.lg\:break-normal{overflow-wrap:normal;word-break:normal}.lg\:break-words{overflow-wrap:break-word}.lg\:break-all{word-break:break-all}.lg\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.lg\:w-0{width:0}.lg\:w-1{width:.25rem}.lg\:w-2{width:.5rem}.lg\:w-3{width:.75rem}.lg\:w-4{width:1rem}.lg\:w-5{width:1.25rem}.lg\:w-6{width:1.5rem}.lg\:w-7{width:1.75rem}.lg\:w-8{width:2rem}.lg\:w-9{width:2.25rem}.lg\:w-10{width:2.5rem}.lg\:w-11{width:2.75rem}.lg\:w-12{width:3rem}.lg\:w-13{width:3.25rem}.lg\:w-14{width:3.5rem}.lg\:w-15{width:3.75rem}.lg\:w-16{width:4rem}.lg\:w-20{width:5rem}.lg\:w-24{width:6rem}.lg\:w-28{width:7rem}.lg\:w-32{width:8rem}.lg\:w-36{width:9rem}.lg\:w-40{width:10rem}.lg\:w-44{width:11rem}.lg\:w-48{width:12rem}.lg\:w-52{width:13rem}.lg\:w-56{width:14rem}.lg\:w-60{width:15rem}.lg\:w-64{width:16rem}.lg\:w-72{width:18rem}.lg\:w-80{width:20rem}.lg\:w-96{width:24rem}.lg\:w-auto{width:auto}.lg\:w-px{width:1px}.lg\:w-0\.5{width:.125rem}.lg\:w-1\.5{width:.375rem}.lg\:w-2\.5{width:.625rem}.lg\:w-3\.5{width:.875rem}.lg\:w-1\/2{width:50%}.lg\:w-1\/3{width:33.333333%}.lg\:w-2\/3{width:66.666667%}.lg\:w-1\/4{width:25%}.lg\:w-2\/4{width:50%}.lg\:w-3\/4{width:75%}.lg\:w-1\/5{width:20%}.lg\:w-2\/5{width:40%}.lg\:w-3\/5{width:60%}.lg\:w-4\/5{width:80%}.lg\:w-1\/6{width:16.666667%}.lg\:w-2\/6{width:33.333333%}.lg\:w-3\/6{width:50%}.lg\:w-4\/6{width:66.666667%}.lg\:w-5\/6{width:83.333333%}.lg\:w-1\/12{width:8.333333%}.lg\:w-2\/12{width:16.666667%}.lg\:w-3\/12{width:25%}.lg\:w-4\/12{width:33.333333%}.lg\:w-5\/12{width:41.666667%}.lg\:w-6\/12{width:50%}.lg\:w-7\/12{width:58.333333%}.lg\:w-8\/12{width:66.666667%}.lg\:w-9\/12{width:75%}.lg\:w-10\/12{width:83.333333%}.lg\:w-11\/12{width:91.666667%}.lg\:w-full{width:100%}.lg\:w-screen{width:100vw}.lg\:w-min-content{width:-webkit-min-content;width:-moz-min-content;width:min-content}.lg\:w-max-content{width:-webkit-max-content;width:-moz-max-content;width:max-content}.lg\:z-0{z-index:0}.lg\:z-10{z-index:10}.lg\:z-20{z-index:20}.lg\:z-30{z-index:30}.lg\:z-40{z-index:40}.lg\:z-50{z-index:50}.lg\:z-auto{z-index:auto}.lg\:focus-within\:z-0:focus-within{z-index:0}.lg\:focus-within\:z-10:focus-within{z-index:10}.lg\:focus-within\:z-20:focus-within{z-index:20}.lg\:focus-within\:z-30:focus-within{z-index:30}.lg\:focus-within\:z-40:focus-within{z-index:40}.lg\:focus-within\:z-50:focus-within{z-index:50}.lg\:focus-within\:z-auto:focus-within{z-index:auto}.lg\:focus\:z-0:focus{z-index:0}.lg\:focus\:z-10:focus{z-index:10}.lg\:focus\:z-20:focus{z-index:20}.lg\:focus\:z-30:focus{z-index:30}.lg\:focus\:z-40:focus{z-index:40}.lg\:focus\:z-50:focus{z-index:50}.lg\:focus\:z-auto:focus{z-index:auto}.lg\:gap-0{grid-gap:0;gap:0}.lg\:gap-1{grid-gap:.25rem;gap:.25rem}.lg\:gap-2{grid-gap:.5rem;gap:.5rem}.lg\:gap-3{grid-gap:.75rem;gap:.75rem}.lg\:gap-4{grid-gap:1rem;gap:1rem}.lg\:gap-5{grid-gap:1.25rem;gap:1.25rem}.lg\:gap-6{grid-gap:1.5rem;gap:1.5rem}.lg\:gap-7{grid-gap:1.75rem;gap:1.75rem}.lg\:gap-8{grid-gap:2rem;gap:2rem}.lg\:gap-9{grid-gap:2.25rem;gap:2.25rem}.lg\:gap-10{grid-gap:2.5rem;gap:2.5rem}.lg\:gap-11{grid-gap:2.75rem;gap:2.75rem}.lg\:gap-12{grid-gap:3rem;gap:3rem}.lg\:gap-13{grid-gap:3.25rem;gap:3.25rem}.lg\:gap-14{grid-gap:3.5rem;gap:3.5rem}.lg\:gap-15{grid-gap:3.75rem;gap:3.75rem}.lg\:gap-16{grid-gap:4rem;gap:4rem}.lg\:gap-20{grid-gap:5rem;gap:5rem}.lg\:gap-24{grid-gap:6rem;gap:6rem}.lg\:gap-28{grid-gap:7rem;gap:7rem}.lg\:gap-32{grid-gap:8rem;gap:8rem}.lg\:gap-36{grid-gap:9rem;gap:9rem}.lg\:gap-40{grid-gap:10rem;gap:10rem}.lg\:gap-44{grid-gap:11rem;gap:11rem}.lg\:gap-48{grid-gap:12rem;gap:12rem}.lg\:gap-52{grid-gap:13rem;gap:13rem}.lg\:gap-56{grid-gap:14rem;gap:14rem}.lg\:gap-60{grid-gap:15rem;gap:15rem}.lg\:gap-64{grid-gap:16rem;gap:16rem}.lg\:gap-72{grid-gap:18rem;gap:18rem}.lg\:gap-80{grid-gap:20rem;gap:20rem}.lg\:gap-96{grid-gap:24rem;gap:24rem}.lg\:gap-px{grid-gap:1px;gap:1px}.lg\:gap-0\.5{grid-gap:.125rem;gap:.125rem}.lg\:gap-1\.5{grid-gap:.375rem;gap:.375rem}.lg\:gap-2\.5{grid-gap:.625rem;gap:.625rem}.lg\:gap-3\.5{grid-gap:.875rem;gap:.875rem}.lg\:gap-1\/2{grid-gap:50%;gap:50%}.lg\:gap-1\/3{grid-gap:33.333333%;gap:33.333333%}.lg\:gap-2\/3{grid-gap:66.666667%;gap:66.666667%}.lg\:gap-1\/4{grid-gap:25%;gap:25%}.lg\:gap-2\/4{grid-gap:50%;gap:50%}.lg\:gap-3\/4{grid-gap:75%;gap:75%}.lg\:gap-1\/5{grid-gap:20%;gap:20%}.lg\:gap-2\/5{grid-gap:40%;gap:40%}.lg\:gap-3\/5{grid-gap:60%;gap:60%}.lg\:gap-4\/5{grid-gap:80%;gap:80%}.lg\:gap-1\/6{grid-gap:16.666667%;gap:16.666667%}.lg\:gap-2\/6{grid-gap:33.333333%;gap:33.333333%}.lg\:gap-3\/6{grid-gap:50%;gap:50%}.lg\:gap-4\/6{grid-gap:66.666667%;gap:66.666667%}.lg\:gap-5\/6{grid-gap:83.333333%;gap:83.333333%}.lg\:gap-1\/12{grid-gap:8.333333%;gap:8.333333%}.lg\:gap-2\/12{grid-gap:16.666667%;gap:16.666667%}.lg\:gap-3\/12{grid-gap:25%;gap:25%}.lg\:gap-4\/12{grid-gap:33.333333%;gap:33.333333%}.lg\:gap-5\/12{grid-gap:41.666667%;gap:41.666667%}.lg\:gap-6\/12{grid-gap:50%;gap:50%}.lg\:gap-7\/12{grid-gap:58.333333%;gap:58.333333%}.lg\:gap-8\/12{grid-gap:66.666667%;gap:66.666667%}.lg\:gap-9\/12{grid-gap:75%;gap:75%}.lg\:gap-10\/12{grid-gap:83.333333%;gap:83.333333%}.lg\:gap-11\/12{grid-gap:91.666667%;gap:91.666667%}.lg\:gap-full{grid-gap:100%;gap:100%}.lg\:col-gap-0{grid-column-gap:0;-moz-column-gap:0;column-gap:0}.lg\:col-gap-1{grid-column-gap:.25rem;-moz-column-gap:.25rem;column-gap:.25rem}.lg\:col-gap-2{grid-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}.lg\:col-gap-3{grid-column-gap:.75rem;-moz-column-gap:.75rem;column-gap:.75rem}.lg\:col-gap-4{grid-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.lg\:col-gap-5{grid-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.lg\:col-gap-6{grid-column-gap:1.5rem;-moz-column-gap:1.5rem;column-gap:1.5rem}.lg\:col-gap-7{grid-column-gap:1.75rem;-moz-column-gap:1.75rem;column-gap:1.75rem}.lg\:col-gap-8{grid-column-gap:2rem;-moz-column-gap:2rem;column-gap:2rem}.lg\:col-gap-9{grid-column-gap:2.25rem;-moz-column-gap:2.25rem;column-gap:2.25rem}.lg\:col-gap-10{grid-column-gap:2.5rem;-moz-column-gap:2.5rem;column-gap:2.5rem}.lg\:col-gap-11{grid-column-gap:2.75rem;-moz-column-gap:2.75rem;column-gap:2.75rem}.lg\:col-gap-12{grid-column-gap:3rem;-moz-column-gap:3rem;column-gap:3rem}.lg\:col-gap-13{grid-column-gap:3.25rem;-moz-column-gap:3.25rem;column-gap:3.25rem}.lg\:col-gap-14{grid-column-gap:3.5rem;-moz-column-gap:3.5rem;column-gap:3.5rem}.lg\:col-gap-15{grid-column-gap:3.75rem;-moz-column-gap:3.75rem;column-gap:3.75rem}.lg\:col-gap-16{grid-column-gap:4rem;-moz-column-gap:4rem;column-gap:4rem}.lg\:col-gap-20{grid-column-gap:5rem;-moz-column-gap:5rem;column-gap:5rem}.lg\:col-gap-24{grid-column-gap:6rem;-moz-column-gap:6rem;column-gap:6rem}.lg\:col-gap-28{grid-column-gap:7rem;-moz-column-gap:7rem;column-gap:7rem}.lg\:col-gap-32{grid-column-gap:8rem;-moz-column-gap:8rem;column-gap:8rem}.lg\:col-gap-36{grid-column-gap:9rem;-moz-column-gap:9rem;column-gap:9rem}.lg\:col-gap-40{grid-column-gap:10rem;-moz-column-gap:10rem;column-gap:10rem}.lg\:col-gap-44{grid-column-gap:11rem;-moz-column-gap:11rem;column-gap:11rem}.lg\:col-gap-48{grid-column-gap:12rem;-moz-column-gap:12rem;column-gap:12rem}.lg\:col-gap-52{grid-column-gap:13rem;-moz-column-gap:13rem;column-gap:13rem}.lg\:col-gap-56{grid-column-gap:14rem;-moz-column-gap:14rem;column-gap:14rem}.lg\:col-gap-60{grid-column-gap:15rem;-moz-column-gap:15rem;column-gap:15rem}.lg\:col-gap-64{grid-column-gap:16rem;-moz-column-gap:16rem;column-gap:16rem}.lg\:col-gap-72{grid-column-gap:18rem;-moz-column-gap:18rem;column-gap:18rem}.lg\:col-gap-80{grid-column-gap:20rem;-moz-column-gap:20rem;column-gap:20rem}.lg\:col-gap-96{grid-column-gap:24rem;-moz-column-gap:24rem;column-gap:24rem}.lg\:col-gap-px{grid-column-gap:1px;-moz-column-gap:1px;column-gap:1px}.lg\:col-gap-0\.5{grid-column-gap:.125rem;-moz-column-gap:.125rem;column-gap:.125rem}.lg\:col-gap-1\.5{grid-column-gap:.375rem;-moz-column-gap:.375rem;column-gap:.375rem}.lg\:col-gap-2\.5{grid-column-gap:.625rem;-moz-column-gap:.625rem;column-gap:.625rem}.lg\:col-gap-3\.5{grid-column-gap:.875rem;-moz-column-gap:.875rem;column-gap:.875rem}.lg\:col-gap-1\/2{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.lg\:col-gap-1\/3{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.lg\:col-gap-2\/3{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.lg\:col-gap-1\/4{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.lg\:col-gap-2\/4{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.lg\:col-gap-3\/4{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.lg\:col-gap-1\/5{grid-column-gap:20%;-moz-column-gap:20%;column-gap:20%}.lg\:col-gap-2\/5{grid-column-gap:40%;-moz-column-gap:40%;column-gap:40%}.lg\:col-gap-3\/5{grid-column-gap:60%;-moz-column-gap:60%;column-gap:60%}.lg\:col-gap-4\/5{grid-column-gap:80%;-moz-column-gap:80%;column-gap:80%}.lg\:col-gap-1\/6{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.lg\:col-gap-2\/6{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.lg\:col-gap-3\/6{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.lg\:col-gap-4\/6{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.lg\:col-gap-5\/6{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.lg\:col-gap-1\/12{grid-column-gap:8.333333%;-moz-column-gap:8.333333%;column-gap:8.333333%}.lg\:col-gap-2\/12{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.lg\:col-gap-3\/12{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.lg\:col-gap-4\/12{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.lg\:col-gap-5\/12{grid-column-gap:41.666667%;-moz-column-gap:41.666667%;column-gap:41.666667%}.lg\:col-gap-6\/12{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.lg\:col-gap-7\/12{grid-column-gap:58.333333%;-moz-column-gap:58.333333%;column-gap:58.333333%}.lg\:col-gap-8\/12{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.lg\:col-gap-9\/12{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.lg\:col-gap-10\/12{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.lg\:col-gap-11\/12{grid-column-gap:91.666667%;-moz-column-gap:91.666667%;column-gap:91.666667%}.lg\:col-gap-full{grid-column-gap:100%;-moz-column-gap:100%;column-gap:100%}.lg\:row-gap-0{grid-row-gap:0;row-gap:0}.lg\:row-gap-1{grid-row-gap:.25rem;row-gap:.25rem}.lg\:row-gap-2{grid-row-gap:.5rem;row-gap:.5rem}.lg\:row-gap-3{grid-row-gap:.75rem;row-gap:.75rem}.lg\:row-gap-4{grid-row-gap:1rem;row-gap:1rem}.lg\:row-gap-5{grid-row-gap:1.25rem;row-gap:1.25rem}.lg\:row-gap-6{grid-row-gap:1.5rem;row-gap:1.5rem}.lg\:row-gap-7{grid-row-gap:1.75rem;row-gap:1.75rem}.lg\:row-gap-8{grid-row-gap:2rem;row-gap:2rem}.lg\:row-gap-9{grid-row-gap:2.25rem;row-gap:2.25rem}.lg\:row-gap-10{grid-row-gap:2.5rem;row-gap:2.5rem}.lg\:row-gap-11{grid-row-gap:2.75rem;row-gap:2.75rem}.lg\:row-gap-12{grid-row-gap:3rem;row-gap:3rem}.lg\:row-gap-13{grid-row-gap:3.25rem;row-gap:3.25rem}.lg\:row-gap-14{grid-row-gap:3.5rem;row-gap:3.5rem}.lg\:row-gap-15{grid-row-gap:3.75rem;row-gap:3.75rem}.lg\:row-gap-16{grid-row-gap:4rem;row-gap:4rem}.lg\:row-gap-20{grid-row-gap:5rem;row-gap:5rem}.lg\:row-gap-24{grid-row-gap:6rem;row-gap:6rem}.lg\:row-gap-28{grid-row-gap:7rem;row-gap:7rem}.lg\:row-gap-32{grid-row-gap:8rem;row-gap:8rem}.lg\:row-gap-36{grid-row-gap:9rem;row-gap:9rem}.lg\:row-gap-40{grid-row-gap:10rem;row-gap:10rem}.lg\:row-gap-44{grid-row-gap:11rem;row-gap:11rem}.lg\:row-gap-48{grid-row-gap:12rem;row-gap:12rem}.lg\:row-gap-52{grid-row-gap:13rem;row-gap:13rem}.lg\:row-gap-56{grid-row-gap:14rem;row-gap:14rem}.lg\:row-gap-60{grid-row-gap:15rem;row-gap:15rem}.lg\:row-gap-64{grid-row-gap:16rem;row-gap:16rem}.lg\:row-gap-72{grid-row-gap:18rem;row-gap:18rem}.lg\:row-gap-80{grid-row-gap:20rem;row-gap:20rem}.lg\:row-gap-96{grid-row-gap:24rem;row-gap:24rem}.lg\:row-gap-px{grid-row-gap:1px;row-gap:1px}.lg\:row-gap-0\.5{grid-row-gap:.125rem;row-gap:.125rem}.lg\:row-gap-1\.5{grid-row-gap:.375rem;row-gap:.375rem}.lg\:row-gap-2\.5{grid-row-gap:.625rem;row-gap:.625rem}.lg\:row-gap-3\.5{grid-row-gap:.875rem;row-gap:.875rem}.lg\:row-gap-1\/2{grid-row-gap:50%;row-gap:50%}.lg\:row-gap-1\/3{grid-row-gap:33.333333%;row-gap:33.333333%}.lg\:row-gap-2\/3{grid-row-gap:66.666667%;row-gap:66.666667%}.lg\:row-gap-1\/4{grid-row-gap:25%;row-gap:25%}.lg\:row-gap-2\/4{grid-row-gap:50%;row-gap:50%}.lg\:row-gap-3\/4{grid-row-gap:75%;row-gap:75%}.lg\:row-gap-1\/5{grid-row-gap:20%;row-gap:20%}.lg\:row-gap-2\/5{grid-row-gap:40%;row-gap:40%}.lg\:row-gap-3\/5{grid-row-gap:60%;row-gap:60%}.lg\:row-gap-4\/5{grid-row-gap:80%;row-gap:80%}.lg\:row-gap-1\/6{grid-row-gap:16.666667%;row-gap:16.666667%}.lg\:row-gap-2\/6{grid-row-gap:33.333333%;row-gap:33.333333%}.lg\:row-gap-3\/6{grid-row-gap:50%;row-gap:50%}.lg\:row-gap-4\/6{grid-row-gap:66.666667%;row-gap:66.666667%}.lg\:row-gap-5\/6{grid-row-gap:83.333333%;row-gap:83.333333%}.lg\:row-gap-1\/12{grid-row-gap:8.333333%;row-gap:8.333333%}.lg\:row-gap-2\/12{grid-row-gap:16.666667%;row-gap:16.666667%}.lg\:row-gap-3\/12{grid-row-gap:25%;row-gap:25%}.lg\:row-gap-4\/12{grid-row-gap:33.333333%;row-gap:33.333333%}.lg\:row-gap-5\/12{grid-row-gap:41.666667%;row-gap:41.666667%}.lg\:row-gap-6\/12{grid-row-gap:50%;row-gap:50%}.lg\:row-gap-7\/12{grid-row-gap:58.333333%;row-gap:58.333333%}.lg\:row-gap-8\/12{grid-row-gap:66.666667%;row-gap:66.666667%}.lg\:row-gap-9\/12{grid-row-gap:75%;row-gap:75%}.lg\:row-gap-10\/12{grid-row-gap:83.333333%;row-gap:83.333333%}.lg\:row-gap-11\/12{grid-row-gap:91.666667%;row-gap:91.666667%}.lg\:row-gap-full{grid-row-gap:100%;row-gap:100%}.lg\:grid-flow-row{grid-auto-flow:row}.lg\:grid-flow-col{grid-auto-flow:column}.lg\:grid-flow-row-dense{grid-auto-flow:row dense}.lg\:grid-flow-col-dense{grid-auto-flow:column dense}.lg\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.lg\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.lg\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.lg\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.lg\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.lg\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.lg\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.lg\:grid-cols-none{grid-template-columns:none}.lg\:col-auto{grid-column:auto}.lg\:col-span-1{grid-column:span 1/span 1}.lg\:col-span-2{grid-column:span 2/span 2}.lg\:col-span-3{grid-column:span 3/span 3}.lg\:col-span-4{grid-column:span 4/span 4}.lg\:col-span-5{grid-column:span 5/span 5}.lg\:col-span-6{grid-column:span 6/span 6}.lg\:col-span-7{grid-column:span 7/span 7}.lg\:col-span-8{grid-column:span 8/span 8}.lg\:col-span-9{grid-column:span 9/span 9}.lg\:col-span-10{grid-column:span 10/span 10}.lg\:col-span-11{grid-column:span 11/span 11}.lg\:col-span-12{grid-column:span 12/span 12}.lg\:col-start-1{grid-column-start:1}.lg\:col-start-2{grid-column-start:2}.lg\:col-start-3{grid-column-start:3}.lg\:col-start-4{grid-column-start:4}.lg\:col-start-5{grid-column-start:5}.lg\:col-start-6{grid-column-start:6}.lg\:col-start-7{grid-column-start:7}.lg\:col-start-8{grid-column-start:8}.lg\:col-start-9{grid-column-start:9}.lg\:col-start-10{grid-column-start:10}.lg\:col-start-11{grid-column-start:11}.lg\:col-start-12{grid-column-start:12}.lg\:col-start-13{grid-column-start:13}.lg\:col-start-auto{grid-column-start:auto}.lg\:col-end-1{grid-column-end:1}.lg\:col-end-2{grid-column-end:2}.lg\:col-end-3{grid-column-end:3}.lg\:col-end-4{grid-column-end:4}.lg\:col-end-5{grid-column-end:5}.lg\:col-end-6{grid-column-end:6}.lg\:col-end-7{grid-column-end:7}.lg\:col-end-8{grid-column-end:8}.lg\:col-end-9{grid-column-end:9}.lg\:col-end-10{grid-column-end:10}.lg\:col-end-11{grid-column-end:11}.lg\:col-end-12{grid-column-end:12}.lg\:col-end-13{grid-column-end:13}.lg\:col-end-auto{grid-column-end:auto}.lg\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))}.lg\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.lg\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.lg\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.lg\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))}.lg\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))}.lg\:grid-rows-none{grid-template-rows:none}.lg\:row-auto{grid-row:auto}.lg\:row-span-1{grid-row:span 1/span 1}.lg\:row-span-2{grid-row:span 2/span 2}.lg\:row-span-3{grid-row:span 3/span 3}.lg\:row-span-4{grid-row:span 4/span 4}.lg\:row-span-5{grid-row:span 5/span 5}.lg\:row-span-6{grid-row:span 6/span 6}.lg\:row-start-1{grid-row-start:1}.lg\:row-start-2{grid-row-start:2}.lg\:row-start-3{grid-row-start:3}.lg\:row-start-4{grid-row-start:4}.lg\:row-start-5{grid-row-start:5}.lg\:row-start-6{grid-row-start:6}.lg\:row-start-7{grid-row-start:7}.lg\:row-start-auto{grid-row-start:auto}.lg\:row-end-1{grid-row-end:1}.lg\:row-end-2{grid-row-end:2}.lg\:row-end-3{grid-row-end:3}.lg\:row-end-4{grid-row-end:4}.lg\:row-end-5{grid-row-end:5}.lg\:row-end-6{grid-row-end:6}.lg\:row-end-7{grid-row-end:7}.lg\:row-end-auto{grid-row-end:auto}.lg\:transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.lg\:transform-none{transform:none}.lg\:origin-center{transform-origin:center}.lg\:origin-top{transform-origin:top}.lg\:origin-top-right{transform-origin:top right}.lg\:origin-right{transform-origin:right}.lg\:origin-bottom-right{transform-origin:bottom right}.lg\:origin-bottom{transform-origin:bottom}.lg\:origin-bottom-left{transform-origin:bottom left}.lg\:origin-left{transform-origin:left}.lg\:origin-top-left{transform-origin:top left}.lg\:scale-0{--transform-scale-x:0;--transform-scale-y:0}.lg\:scale-50{--transform-scale-x:.5;--transform-scale-y:.5}.lg\:scale-75{--transform-scale-x:.75;--transform-scale-y:.75}.lg\:scale-90{--transform-scale-x:.9;--transform-scale-y:.9}.lg\:scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.lg\:scale-100{--transform-scale-x:1;--transform-scale-y:1}.lg\:scale-105{--transform-scale-x:1.05;--transform-scale-y:1.05}.lg\:scale-110{--transform-scale-x:1.1;--transform-scale-y:1.1}.lg\:scale-125{--transform-scale-x:1.25;--transform-scale-y:1.25}.lg\:scale-150{--transform-scale-x:1.5;--transform-scale-y:1.5}.lg\:scale-x-0{--transform-scale-x:0}.lg\:scale-x-50{--transform-scale-x:.5}.lg\:scale-x-75{--transform-scale-x:.75}.lg\:scale-x-90{--transform-scale-x:.9}.lg\:scale-x-95{--transform-scale-x:.95}.lg\:scale-x-100{--transform-scale-x:1}.lg\:scale-x-105{--transform-scale-x:1.05}.lg\:scale-x-110{--transform-scale-x:1.1}.lg\:scale-x-125{--transform-scale-x:1.25}.lg\:scale-x-150{--transform-scale-x:1.5}.lg\:scale-y-0{--transform-scale-y:0}.lg\:scale-y-50{--transform-scale-y:.5}.lg\:scale-y-75{--transform-scale-y:.75}.lg\:scale-y-90{--transform-scale-y:.9}.lg\:scale-y-95{--transform-scale-y:.95}.lg\:scale-y-100{--transform-scale-y:1}.lg\:scale-y-105{--transform-scale-y:1.05}.lg\:scale-y-110{--transform-scale-y:1.1}.lg\:scale-y-125{--transform-scale-y:1.25}.lg\:scale-y-150{--transform-scale-y:1.5}.lg\:hover\:scale-0:hover{--transform-scale-x:0;--transform-scale-y:0}.lg\:hover\:scale-50:hover{--transform-scale-x:.5;--transform-scale-y:.5}.lg\:hover\:scale-75:hover{--transform-scale-x:.75;--transform-scale-y:.75}.lg\:hover\:scale-90:hover{--transform-scale-x:.9;--transform-scale-y:.9}.lg\:hover\:scale-95:hover{--transform-scale-x:.95;--transform-scale-y:.95}.lg\:hover\:scale-100:hover{--transform-scale-x:1;--transform-scale-y:1}.lg\:hover\:scale-105:hover{--transform-scale-x:1.05;--transform-scale-y:1.05}.lg\:hover\:scale-110:hover{--transform-scale-x:1.1;--transform-scale-y:1.1}.lg\:hover\:scale-125:hover{--transform-scale-x:1.25;--transform-scale-y:1.25}.lg\:hover\:scale-150:hover{--transform-scale-x:1.5;--transform-scale-y:1.5}.lg\:hover\:scale-x-0:hover{--transform-scale-x:0}.lg\:hover\:scale-x-50:hover{--transform-scale-x:.5}.lg\:hover\:scale-x-75:hover{--transform-scale-x:.75}.lg\:hover\:scale-x-90:hover{--transform-scale-x:.9}.lg\:hover\:scale-x-95:hover{--transform-scale-x:.95}.lg\:hover\:scale-x-100:hover{--transform-scale-x:1}.lg\:hover\:scale-x-105:hover{--transform-scale-x:1.05}.lg\:hover\:scale-x-110:hover{--transform-scale-x:1.1}.lg\:hover\:scale-x-125:hover{--transform-scale-x:1.25}.lg\:hover\:scale-x-150:hover{--transform-scale-x:1.5}.lg\:hover\:scale-y-0:hover{--transform-scale-y:0}.lg\:hover\:scale-y-50:hover{--transform-scale-y:.5}.lg\:hover\:scale-y-75:hover{--transform-scale-y:.75}.lg\:hover\:scale-y-90:hover{--transform-scale-y:.9}.lg\:hover\:scale-y-95:hover{--transform-scale-y:.95}.lg\:hover\:scale-y-100:hover{--transform-scale-y:1}.lg\:hover\:scale-y-105:hover{--transform-scale-y:1.05}.lg\:hover\:scale-y-110:hover{--transform-scale-y:1.1}.lg\:hover\:scale-y-125:hover{--transform-scale-y:1.25}.lg\:hover\:scale-y-150:hover{--transform-scale-y:1.5}.lg\:focus\:scale-0:focus{--transform-scale-x:0;--transform-scale-y:0}.lg\:focus\:scale-50:focus{--transform-scale-x:.5;--transform-scale-y:.5}.lg\:focus\:scale-75:focus{--transform-scale-x:.75;--transform-scale-y:.75}.lg\:focus\:scale-90:focus{--transform-scale-x:.9;--transform-scale-y:.9}.lg\:focus\:scale-95:focus{--transform-scale-x:.95;--transform-scale-y:.95}.lg\:focus\:scale-100:focus{--transform-scale-x:1;--transform-scale-y:1}.lg\:focus\:scale-105:focus{--transform-scale-x:1.05;--transform-scale-y:1.05}.lg\:focus\:scale-110:focus{--transform-scale-x:1.1;--transform-scale-y:1.1}.lg\:focus\:scale-125:focus{--transform-scale-x:1.25;--transform-scale-y:1.25}.lg\:focus\:scale-150:focus{--transform-scale-x:1.5;--transform-scale-y:1.5}.lg\:focus\:scale-x-0:focus{--transform-scale-x:0}.lg\:focus\:scale-x-50:focus{--transform-scale-x:.5}.lg\:focus\:scale-x-75:focus{--transform-scale-x:.75}.lg\:focus\:scale-x-90:focus{--transform-scale-x:.9}.lg\:focus\:scale-x-95:focus{--transform-scale-x:.95}.lg\:focus\:scale-x-100:focus{--transform-scale-x:1}.lg\:focus\:scale-x-105:focus{--transform-scale-x:1.05}.lg\:focus\:scale-x-110:focus{--transform-scale-x:1.1}.lg\:focus\:scale-x-125:focus{--transform-scale-x:1.25}.lg\:focus\:scale-x-150:focus{--transform-scale-x:1.5}.lg\:focus\:scale-y-0:focus{--transform-scale-y:0}.lg\:focus\:scale-y-50:focus{--transform-scale-y:.5}.lg\:focus\:scale-y-75:focus{--transform-scale-y:.75}.lg\:focus\:scale-y-90:focus{--transform-scale-y:.9}.lg\:focus\:scale-y-95:focus{--transform-scale-y:.95}.lg\:focus\:scale-y-100:focus{--transform-scale-y:1}.lg\:focus\:scale-y-105:focus{--transform-scale-y:1.05}.lg\:focus\:scale-y-110:focus{--transform-scale-y:1.1}.lg\:focus\:scale-y-125:focus{--transform-scale-y:1.25}.lg\:focus\:scale-y-150:focus{--transform-scale-y:1.5}.lg\:rotate-0{--transform-rotate:0}.lg\:rotate-45{--transform-rotate:45deg}.lg\:rotate-90{--transform-rotate:90deg}.lg\:rotate-180{--transform-rotate:180deg}.lg\:-rotate-180{--transform-rotate:-180deg}.lg\:-rotate-90{--transform-rotate:-90deg}.lg\:-rotate-45{--transform-rotate:-45deg}.lg\:hover\:rotate-0:hover{--transform-rotate:0}.lg\:hover\:rotate-45:hover{--transform-rotate:45deg}.lg\:hover\:rotate-90:hover{--transform-rotate:90deg}.lg\:hover\:rotate-180:hover{--transform-rotate:180deg}.lg\:hover\:-rotate-180:hover{--transform-rotate:-180deg}.lg\:hover\:-rotate-90:hover{--transform-rotate:-90deg}.lg\:hover\:-rotate-45:hover{--transform-rotate:-45deg}.lg\:focus\:rotate-0:focus{--transform-rotate:0}.lg\:focus\:rotate-45:focus{--transform-rotate:45deg}.lg\:focus\:rotate-90:focus{--transform-rotate:90deg}.lg\:focus\:rotate-180:focus{--transform-rotate:180deg}.lg\:focus\:-rotate-180:focus{--transform-rotate:-180deg}.lg\:focus\:-rotate-90:focus{--transform-rotate:-90deg}.lg\:focus\:-rotate-45:focus{--transform-rotate:-45deg}.lg\:translate-x-0{--transform-translate-x:0}.lg\:translate-x-1{--transform-translate-x:0.25rem}.lg\:translate-x-2{--transform-translate-x:0.5rem}.lg\:translate-x-3{--transform-translate-x:0.75rem}.lg\:translate-x-4{--transform-translate-x:1rem}.lg\:translate-x-5{--transform-translate-x:1.25rem}.lg\:translate-x-6{--transform-translate-x:1.5rem}.lg\:translate-x-7{--transform-translate-x:1.75rem}.lg\:translate-x-8{--transform-translate-x:2rem}.lg\:translate-x-9{--transform-translate-x:2.25rem}.lg\:translate-x-10{--transform-translate-x:2.5rem}.lg\:translate-x-11{--transform-translate-x:2.75rem}.lg\:translate-x-12{--transform-translate-x:3rem}.lg\:translate-x-13{--transform-translate-x:3.25rem}.lg\:translate-x-14{--transform-translate-x:3.5rem}.lg\:translate-x-15{--transform-translate-x:3.75rem}.lg\:translate-x-16{--transform-translate-x:4rem}.lg\:translate-x-20{--transform-translate-x:5rem}.lg\:translate-x-24{--transform-translate-x:6rem}.lg\:translate-x-28{--transform-translate-x:7rem}.lg\:translate-x-32{--transform-translate-x:8rem}.lg\:translate-x-36{--transform-translate-x:9rem}.lg\:translate-x-40{--transform-translate-x:10rem}.lg\:translate-x-44{--transform-translate-x:11rem}.lg\:translate-x-48{--transform-translate-x:12rem}.lg\:translate-x-52{--transform-translate-x:13rem}.lg\:translate-x-56{--transform-translate-x:14rem}.lg\:translate-x-60{--transform-translate-x:15rem}.lg\:translate-x-64{--transform-translate-x:16rem}.lg\:translate-x-72{--transform-translate-x:18rem}.lg\:translate-x-80{--transform-translate-x:20rem}.lg\:translate-x-96{--transform-translate-x:24rem}.lg\:translate-x-px{--transform-translate-x:1px}.lg\:translate-x-0\.5{--transform-translate-x:0.125rem}.lg\:translate-x-1\.5{--transform-translate-x:0.375rem}.lg\:translate-x-2\.5{--transform-translate-x:0.625rem}.lg\:translate-x-3\.5{--transform-translate-x:0.875rem}.lg\:translate-x-1\/2{--transform-translate-x:50%}.lg\:translate-x-1\/3{--transform-translate-x:33.333333%}.lg\:translate-x-2\/3{--transform-translate-x:66.666667%}.lg\:translate-x-1\/4{--transform-translate-x:25%}.lg\:translate-x-2\/4{--transform-translate-x:50%}.lg\:translate-x-3\/4{--transform-translate-x:75%}.lg\:translate-x-1\/5{--transform-translate-x:20%}.lg\:translate-x-2\/5{--transform-translate-x:40%}.lg\:translate-x-3\/5{--transform-translate-x:60%}.lg\:translate-x-4\/5{--transform-translate-x:80%}.lg\:translate-x-1\/6{--transform-translate-x:16.666667%}.lg\:translate-x-2\/6{--transform-translate-x:33.333333%}.lg\:translate-x-3\/6{--transform-translate-x:50%}.lg\:translate-x-4\/6{--transform-translate-x:66.666667%}.lg\:translate-x-5\/6{--transform-translate-x:83.333333%}.lg\:translate-x-1\/12{--transform-translate-x:8.333333%}.lg\:translate-x-2\/12{--transform-translate-x:16.666667%}.lg\:translate-x-3\/12{--transform-translate-x:25%}.lg\:translate-x-4\/12{--transform-translate-x:33.333333%}.lg\:translate-x-5\/12{--transform-translate-x:41.666667%}.lg\:translate-x-6\/12{--transform-translate-x:50%}.lg\:translate-x-7\/12{--transform-translate-x:58.333333%}.lg\:translate-x-8\/12{--transform-translate-x:66.666667%}.lg\:translate-x-9\/12{--transform-translate-x:75%}.lg\:translate-x-10\/12{--transform-translate-x:83.333333%}.lg\:translate-x-11\/12{--transform-translate-x:91.666667%}.lg\:translate-x-full{--transform-translate-x:100%}.lg\:-translate-x-1{--transform-translate-x:-0.25rem}.lg\:-translate-x-2{--transform-translate-x:-0.5rem}.lg\:-translate-x-3{--transform-translate-x:-0.75rem}.lg\:-translate-x-4{--transform-translate-x:-1rem}.lg\:-translate-x-5{--transform-translate-x:-1.25rem}.lg\:-translate-x-6{--transform-translate-x:-1.5rem}.lg\:-translate-x-7{--transform-translate-x:-1.75rem}.lg\:-translate-x-8{--transform-translate-x:-2rem}.lg\:-translate-x-9{--transform-translate-x:-2.25rem}.lg\:-translate-x-10{--transform-translate-x:-2.5rem}.lg\:-translate-x-11{--transform-translate-x:-2.75rem}.lg\:-translate-x-12{--transform-translate-x:-3rem}.lg\:-translate-x-13{--transform-translate-x:-3.25rem}.lg\:-translate-x-14{--transform-translate-x:-3.5rem}.lg\:-translate-x-15{--transform-translate-x:-3.75rem}.lg\:-translate-x-16{--transform-translate-x:-4rem}.lg\:-translate-x-20{--transform-translate-x:-5rem}.lg\:-translate-x-24{--transform-translate-x:-6rem}.lg\:-translate-x-28{--transform-translate-x:-7rem}.lg\:-translate-x-32{--transform-translate-x:-8rem}.lg\:-translate-x-36{--transform-translate-x:-9rem}.lg\:-translate-x-40{--transform-translate-x:-10rem}.lg\:-translate-x-44{--transform-translate-x:-11rem}.lg\:-translate-x-48{--transform-translate-x:-12rem}.lg\:-translate-x-52{--transform-translate-x:-13rem}.lg\:-translate-x-56{--transform-translate-x:-14rem}.lg\:-translate-x-60{--transform-translate-x:-15rem}.lg\:-translate-x-64{--transform-translate-x:-16rem}.lg\:-translate-x-72{--transform-translate-x:-18rem}.lg\:-translate-x-80{--transform-translate-x:-20rem}.lg\:-translate-x-96{--transform-translate-x:-24rem}.lg\:-translate-x-px{--transform-translate-x:-1px}.lg\:-translate-x-0\.5{--transform-translate-x:-0.125rem}.lg\:-translate-x-1\.5{--transform-translate-x:-0.375rem}.lg\:-translate-x-2\.5{--transform-translate-x:-0.625rem}.lg\:-translate-x-3\.5{--transform-translate-x:-0.875rem}.lg\:-translate-x-1\/2{--transform-translate-x:-50%}.lg\:-translate-x-1\/3{--transform-translate-x:-33.33333%}.lg\:-translate-x-2\/3{--transform-translate-x:-66.66667%}.lg\:-translate-x-1\/4{--transform-translate-x:-25%}.lg\:-translate-x-2\/4{--transform-translate-x:-50%}.lg\:-translate-x-3\/4{--transform-translate-x:-75%}.lg\:-translate-x-1\/5{--transform-translate-x:-20%}.lg\:-translate-x-2\/5{--transform-translate-x:-40%}.lg\:-translate-x-3\/5{--transform-translate-x:-60%}.lg\:-translate-x-4\/5{--transform-translate-x:-80%}.lg\:-translate-x-1\/6{--transform-translate-x:-16.66667%}.lg\:-translate-x-2\/6{--transform-translate-x:-33.33333%}.lg\:-translate-x-3\/6{--transform-translate-x:-50%}.lg\:-translate-x-4\/6{--transform-translate-x:-66.66667%}.lg\:-translate-x-5\/6{--transform-translate-x:-83.33333%}.lg\:-translate-x-1\/12{--transform-translate-x:-8.33333%}.lg\:-translate-x-2\/12{--transform-translate-x:-16.66667%}.lg\:-translate-x-3\/12{--transform-translate-x:-25%}.lg\:-translate-x-4\/12{--transform-translate-x:-33.33333%}.lg\:-translate-x-5\/12{--transform-translate-x:-41.66667%}.lg\:-translate-x-6\/12{--transform-translate-x:-50%}.lg\:-translate-x-7\/12{--transform-translate-x:-58.33333%}.lg\:-translate-x-8\/12{--transform-translate-x:-66.66667%}.lg\:-translate-x-9\/12{--transform-translate-x:-75%}.lg\:-translate-x-10\/12{--transform-translate-x:-83.33333%}.lg\:-translate-x-11\/12{--transform-translate-x:-91.66667%}.lg\:-translate-x-full{--transform-translate-x:-100%}.lg\:translate-y-0{--transform-translate-y:0}.lg\:translate-y-1{--transform-translate-y:0.25rem}.lg\:translate-y-2{--transform-translate-y:0.5rem}.lg\:translate-y-3{--transform-translate-y:0.75rem}.lg\:translate-y-4{--transform-translate-y:1rem}.lg\:translate-y-5{--transform-translate-y:1.25rem}.lg\:translate-y-6{--transform-translate-y:1.5rem}.lg\:translate-y-7{--transform-translate-y:1.75rem}.lg\:translate-y-8{--transform-translate-y:2rem}.lg\:translate-y-9{--transform-translate-y:2.25rem}.lg\:translate-y-10{--transform-translate-y:2.5rem}.lg\:translate-y-11{--transform-translate-y:2.75rem}.lg\:translate-y-12{--transform-translate-y:3rem}.lg\:translate-y-13{--transform-translate-y:3.25rem}.lg\:translate-y-14{--transform-translate-y:3.5rem}.lg\:translate-y-15{--transform-translate-y:3.75rem}.lg\:translate-y-16{--transform-translate-y:4rem}.lg\:translate-y-20{--transform-translate-y:5rem}.lg\:translate-y-24{--transform-translate-y:6rem}.lg\:translate-y-28{--transform-translate-y:7rem}.lg\:translate-y-32{--transform-translate-y:8rem}.lg\:translate-y-36{--transform-translate-y:9rem}.lg\:translate-y-40{--transform-translate-y:10rem}.lg\:translate-y-44{--transform-translate-y:11rem}.lg\:translate-y-48{--transform-translate-y:12rem}.lg\:translate-y-52{--transform-translate-y:13rem}.lg\:translate-y-56{--transform-translate-y:14rem}.lg\:translate-y-60{--transform-translate-y:15rem}.lg\:translate-y-64{--transform-translate-y:16rem}.lg\:translate-y-72{--transform-translate-y:18rem}.lg\:translate-y-80{--transform-translate-y:20rem}.lg\:translate-y-96{--transform-translate-y:24rem}.lg\:translate-y-px{--transform-translate-y:1px}.lg\:translate-y-0\.5{--transform-translate-y:0.125rem}.lg\:translate-y-1\.5{--transform-translate-y:0.375rem}.lg\:translate-y-2\.5{--transform-translate-y:0.625rem}.lg\:translate-y-3\.5{--transform-translate-y:0.875rem}.lg\:translate-y-1\/2{--transform-translate-y:50%}.lg\:translate-y-1\/3{--transform-translate-y:33.333333%}.lg\:translate-y-2\/3{--transform-translate-y:66.666667%}.lg\:translate-y-1\/4{--transform-translate-y:25%}.lg\:translate-y-2\/4{--transform-translate-y:50%}.lg\:translate-y-3\/4{--transform-translate-y:75%}.lg\:translate-y-1\/5{--transform-translate-y:20%}.lg\:translate-y-2\/5{--transform-translate-y:40%}.lg\:translate-y-3\/5{--transform-translate-y:60%}.lg\:translate-y-4\/5{--transform-translate-y:80%}.lg\:translate-y-1\/6{--transform-translate-y:16.666667%}.lg\:translate-y-2\/6{--transform-translate-y:33.333333%}.lg\:translate-y-3\/6{--transform-translate-y:50%}.lg\:translate-y-4\/6{--transform-translate-y:66.666667%}.lg\:translate-y-5\/6{--transform-translate-y:83.333333%}.lg\:translate-y-1\/12{--transform-translate-y:8.333333%}.lg\:translate-y-2\/12{--transform-translate-y:16.666667%}.lg\:translate-y-3\/12{--transform-translate-y:25%}.lg\:translate-y-4\/12{--transform-translate-y:33.333333%}.lg\:translate-y-5\/12{--transform-translate-y:41.666667%}.lg\:translate-y-6\/12{--transform-translate-y:50%}.lg\:translate-y-7\/12{--transform-translate-y:58.333333%}.lg\:translate-y-8\/12{--transform-translate-y:66.666667%}.lg\:translate-y-9\/12{--transform-translate-y:75%}.lg\:translate-y-10\/12{--transform-translate-y:83.333333%}.lg\:translate-y-11\/12{--transform-translate-y:91.666667%}.lg\:translate-y-full{--transform-translate-y:100%}.lg\:-translate-y-1{--transform-translate-y:-0.25rem}.lg\:-translate-y-2{--transform-translate-y:-0.5rem}.lg\:-translate-y-3{--transform-translate-y:-0.75rem}.lg\:-translate-y-4{--transform-translate-y:-1rem}.lg\:-translate-y-5{--transform-translate-y:-1.25rem}.lg\:-translate-y-6{--transform-translate-y:-1.5rem}.lg\:-translate-y-7{--transform-translate-y:-1.75rem}.lg\:-translate-y-8{--transform-translate-y:-2rem}.lg\:-translate-y-9{--transform-translate-y:-2.25rem}.lg\:-translate-y-10{--transform-translate-y:-2.5rem}.lg\:-translate-y-11{--transform-translate-y:-2.75rem}.lg\:-translate-y-12{--transform-translate-y:-3rem}.lg\:-translate-y-13{--transform-translate-y:-3.25rem}.lg\:-translate-y-14{--transform-translate-y:-3.5rem}.lg\:-translate-y-15{--transform-translate-y:-3.75rem}.lg\:-translate-y-16{--transform-translate-y:-4rem}.lg\:-translate-y-20{--transform-translate-y:-5rem}.lg\:-translate-y-24{--transform-translate-y:-6rem}.lg\:-translate-y-28{--transform-translate-y:-7rem}.lg\:-translate-y-32{--transform-translate-y:-8rem}.lg\:-translate-y-36{--transform-translate-y:-9rem}.lg\:-translate-y-40{--transform-translate-y:-10rem}.lg\:-translate-y-44{--transform-translate-y:-11rem}.lg\:-translate-y-48{--transform-translate-y:-12rem}.lg\:-translate-y-52{--transform-translate-y:-13rem}.lg\:-translate-y-56{--transform-translate-y:-14rem}.lg\:-translate-y-60{--transform-translate-y:-15rem}.lg\:-translate-y-64{--transform-translate-y:-16rem}.lg\:-translate-y-72{--transform-translate-y:-18rem}.lg\:-translate-y-80{--transform-translate-y:-20rem}.lg\:-translate-y-96{--transform-translate-y:-24rem}.lg\:-translate-y-px{--transform-translate-y:-1px}.lg\:-translate-y-0\.5{--transform-translate-y:-0.125rem}.lg\:-translate-y-1\.5{--transform-translate-y:-0.375rem}.lg\:-translate-y-2\.5{--transform-translate-y:-0.625rem}.lg\:-translate-y-3\.5{--transform-translate-y:-0.875rem}.lg\:-translate-y-1\/2{--transform-translate-y:-50%}.lg\:-translate-y-1\/3{--transform-translate-y:-33.33333%}.lg\:-translate-y-2\/3{--transform-translate-y:-66.66667%}.lg\:-translate-y-1\/4{--transform-translate-y:-25%}.lg\:-translate-y-2\/4{--transform-translate-y:-50%}.lg\:-translate-y-3\/4{--transform-translate-y:-75%}.lg\:-translate-y-1\/5{--transform-translate-y:-20%}.lg\:-translate-y-2\/5{--transform-translate-y:-40%}.lg\:-translate-y-3\/5{--transform-translate-y:-60%}.lg\:-translate-y-4\/5{--transform-translate-y:-80%}.lg\:-translate-y-1\/6{--transform-translate-y:-16.66667%}.lg\:-translate-y-2\/6{--transform-translate-y:-33.33333%}.lg\:-translate-y-3\/6{--transform-translate-y:-50%}.lg\:-translate-y-4\/6{--transform-translate-y:-66.66667%}.lg\:-translate-y-5\/6{--transform-translate-y:-83.33333%}.lg\:-translate-y-1\/12{--transform-translate-y:-8.33333%}.lg\:-translate-y-2\/12{--transform-translate-y:-16.66667%}.lg\:-translate-y-3\/12{--transform-translate-y:-25%}.lg\:-translate-y-4\/12{--transform-translate-y:-33.33333%}.lg\:-translate-y-5\/12{--transform-translate-y:-41.66667%}.lg\:-translate-y-6\/12{--transform-translate-y:-50%}.lg\:-translate-y-7\/12{--transform-translate-y:-58.33333%}.lg\:-translate-y-8\/12{--transform-translate-y:-66.66667%}.lg\:-translate-y-9\/12{--transform-translate-y:-75%}.lg\:-translate-y-10\/12{--transform-translate-y:-83.33333%}.lg\:-translate-y-11\/12{--transform-translate-y:-91.66667%}.lg\:-translate-y-full{--transform-translate-y:-100%}.lg\:hover\:translate-x-0:hover{--transform-translate-x:0}.lg\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem}.lg\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem}.lg\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem}.lg\:hover\:translate-x-4:hover{--transform-translate-x:1rem}.lg\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem}.lg\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem}.lg\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem}.lg\:hover\:translate-x-8:hover{--transform-translate-x:2rem}.lg\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem}.lg\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem}.lg\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem}.lg\:hover\:translate-x-12:hover{--transform-translate-x:3rem}.lg\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem}.lg\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem}.lg\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem}.lg\:hover\:translate-x-16:hover{--transform-translate-x:4rem}.lg\:hover\:translate-x-20:hover{--transform-translate-x:5rem}.lg\:hover\:translate-x-24:hover{--transform-translate-x:6rem}.lg\:hover\:translate-x-28:hover{--transform-translate-x:7rem}.lg\:hover\:translate-x-32:hover{--transform-translate-x:8rem}.lg\:hover\:translate-x-36:hover{--transform-translate-x:9rem}.lg\:hover\:translate-x-40:hover{--transform-translate-x:10rem}.lg\:hover\:translate-x-44:hover{--transform-translate-x:11rem}.lg\:hover\:translate-x-48:hover{--transform-translate-x:12rem}.lg\:hover\:translate-x-52:hover{--transform-translate-x:13rem}.lg\:hover\:translate-x-56:hover{--transform-translate-x:14rem}.lg\:hover\:translate-x-60:hover{--transform-translate-x:15rem}.lg\:hover\:translate-x-64:hover{--transform-translate-x:16rem}.lg\:hover\:translate-x-72:hover{--transform-translate-x:18rem}.lg\:hover\:translate-x-80:hover{--transform-translate-x:20rem}.lg\:hover\:translate-x-96:hover{--transform-translate-x:24rem}.lg\:hover\:translate-x-px:hover{--transform-translate-x:1px}.lg\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem}.lg\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem}.lg\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem}.lg\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem}.lg\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%}.lg\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%}.lg\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%}.lg\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%}.lg\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%}.lg\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%}.lg\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%}.lg\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%}.lg\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%}.lg\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%}.lg\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%}.lg\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%}.lg\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%}.lg\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%}.lg\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%}.lg\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%}.lg\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%}.lg\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%}.lg\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%}.lg\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%}.lg\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%}.lg\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%}.lg\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%}.lg\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%}.lg\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%}.lg\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%}.lg\:hover\:translate-x-full:hover{--transform-translate-x:100%}.lg\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem}.lg\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem}.lg\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem}.lg\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem}.lg\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem}.lg\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem}.lg\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem}.lg\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem}.lg\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem}.lg\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem}.lg\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem}.lg\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem}.lg\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem}.lg\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem}.lg\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem}.lg\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem}.lg\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem}.lg\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem}.lg\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem}.lg\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem}.lg\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem}.lg\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem}.lg\:hover\:-translate-x-44:hover{--transform-translate-x:-11rem}.lg\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem}.lg\:hover\:-translate-x-52:hover{--transform-translate-x:-13rem}.lg\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem}.lg\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem}.lg\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem}.lg\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem}.lg\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem}.lg\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem}.lg\:hover\:-translate-x-px:hover{--transform-translate-x:-1px}.lg\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem}.lg\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem}.lg\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem}.lg\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem}.lg\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%}.lg\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%}.lg\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%}.lg\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%}.lg\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%}.lg\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%}.lg\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%}.lg\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%}.lg\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%}.lg\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%}.lg\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%}.lg\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%}.lg\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%}.lg\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%}.lg\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%}.lg\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%}.lg\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%}.lg\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%}.lg\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%}.lg\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%}.lg\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%}.lg\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%}.lg\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%}.lg\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%}.lg\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%}.lg\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%}.lg\:hover\:-translate-x-full:hover{--transform-translate-x:-100%}.lg\:hover\:translate-y-0:hover{--transform-translate-y:0}.lg\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem}.lg\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem}.lg\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem}.lg\:hover\:translate-y-4:hover{--transform-translate-y:1rem}.lg\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem}.lg\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem}.lg\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem}.lg\:hover\:translate-y-8:hover{--transform-translate-y:2rem}.lg\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem}.lg\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem}.lg\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem}.lg\:hover\:translate-y-12:hover{--transform-translate-y:3rem}.lg\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem}.lg\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem}.lg\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem}.lg\:hover\:translate-y-16:hover{--transform-translate-y:4rem}.lg\:hover\:translate-y-20:hover{--transform-translate-y:5rem}.lg\:hover\:translate-y-24:hover{--transform-translate-y:6rem}.lg\:hover\:translate-y-28:hover{--transform-translate-y:7rem}.lg\:hover\:translate-y-32:hover{--transform-translate-y:8rem}.lg\:hover\:translate-y-36:hover{--transform-translate-y:9rem}.lg\:hover\:translate-y-40:hover{--transform-translate-y:10rem}.lg\:hover\:translate-y-44:hover{--transform-translate-y:11rem}.lg\:hover\:translate-y-48:hover{--transform-translate-y:12rem}.lg\:hover\:translate-y-52:hover{--transform-translate-y:13rem}.lg\:hover\:translate-y-56:hover{--transform-translate-y:14rem}.lg\:hover\:translate-y-60:hover{--transform-translate-y:15rem}.lg\:hover\:translate-y-64:hover{--transform-translate-y:16rem}.lg\:hover\:translate-y-72:hover{--transform-translate-y:18rem}.lg\:hover\:translate-y-80:hover{--transform-translate-y:20rem}.lg\:hover\:translate-y-96:hover{--transform-translate-y:24rem}.lg\:hover\:translate-y-px:hover{--transform-translate-y:1px}.lg\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem}.lg\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem}.lg\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem}.lg\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem}.lg\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%}.lg\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%}.lg\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%}.lg\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%}.lg\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%}.lg\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%}.lg\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%}.lg\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%}.lg\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%}.lg\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%}.lg\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%}.lg\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%}.lg\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%}.lg\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%}.lg\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%}.lg\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%}.lg\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%}.lg\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%}.lg\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%}.lg\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%}.lg\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%}.lg\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%}.lg\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%}.lg\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%}.lg\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%}.lg\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%}.lg\:hover\:translate-y-full:hover{--transform-translate-y:100%}.lg\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem}.lg\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem}.lg\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem}.lg\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem}.lg\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem}.lg\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem}.lg\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem}.lg\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem}.lg\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem}.lg\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem}.lg\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem}.lg\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem}.lg\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem}.lg\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem}.lg\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem}.lg\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem}.lg\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem}.lg\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem}.lg\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem}.lg\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem}.lg\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem}.lg\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem}.lg\:hover\:-translate-y-44:hover{--transform-translate-y:-11rem}.lg\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem}.lg\:hover\:-translate-y-52:hover{--transform-translate-y:-13rem}.lg\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem}.lg\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem}.lg\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem}.lg\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem}.lg\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem}.lg\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem}.lg\:hover\:-translate-y-px:hover{--transform-translate-y:-1px}.lg\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem}.lg\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem}.lg\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem}.lg\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem}.lg\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%}.lg\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%}.lg\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%}.lg\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%}.lg\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%}.lg\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%}.lg\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%}.lg\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%}.lg\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%}.lg\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%}.lg\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%}.lg\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%}.lg\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%}.lg\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%}.lg\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%}.lg\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%}.lg\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%}.lg\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%}.lg\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%}.lg\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%}.lg\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%}.lg\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%}.lg\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%}.lg\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%}.lg\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%}.lg\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%}.lg\:hover\:-translate-y-full:hover{--transform-translate-y:-100%}.lg\:focus\:translate-x-0:focus{--transform-translate-x:0}.lg\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem}.lg\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem}.lg\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem}.lg\:focus\:translate-x-4:focus{--transform-translate-x:1rem}.lg\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem}.lg\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem}.lg\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem}.lg\:focus\:translate-x-8:focus{--transform-translate-x:2rem}.lg\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem}.lg\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem}.lg\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem}.lg\:focus\:translate-x-12:focus{--transform-translate-x:3rem}.lg\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem}.lg\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem}.lg\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem}.lg\:focus\:translate-x-16:focus{--transform-translate-x:4rem}.lg\:focus\:translate-x-20:focus{--transform-translate-x:5rem}.lg\:focus\:translate-x-24:focus{--transform-translate-x:6rem}.lg\:focus\:translate-x-28:focus{--transform-translate-x:7rem}.lg\:focus\:translate-x-32:focus{--transform-translate-x:8rem}.lg\:focus\:translate-x-36:focus{--transform-translate-x:9rem}.lg\:focus\:translate-x-40:focus{--transform-translate-x:10rem}.lg\:focus\:translate-x-44:focus{--transform-translate-x:11rem}.lg\:focus\:translate-x-48:focus{--transform-translate-x:12rem}.lg\:focus\:translate-x-52:focus{--transform-translate-x:13rem}.lg\:focus\:translate-x-56:focus{--transform-translate-x:14rem}.lg\:focus\:translate-x-60:focus{--transform-translate-x:15rem}.lg\:focus\:translate-x-64:focus{--transform-translate-x:16rem}.lg\:focus\:translate-x-72:focus{--transform-translate-x:18rem}.lg\:focus\:translate-x-80:focus{--transform-translate-x:20rem}.lg\:focus\:translate-x-96:focus{--transform-translate-x:24rem}.lg\:focus\:translate-x-px:focus{--transform-translate-x:1px}.lg\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem}.lg\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem}.lg\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem}.lg\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem}.lg\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%}.lg\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%}.lg\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%}.lg\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%}.lg\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%}.lg\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%}.lg\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%}.lg\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%}.lg\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%}.lg\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%}.lg\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%}.lg\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%}.lg\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%}.lg\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%}.lg\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%}.lg\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%}.lg\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%}.lg\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%}.lg\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%}.lg\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%}.lg\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%}.lg\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%}.lg\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%}.lg\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%}.lg\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%}.lg\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%}.lg\:focus\:translate-x-full:focus{--transform-translate-x:100%}.lg\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem}.lg\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem}.lg\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem}.lg\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem}.lg\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem}.lg\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem}.lg\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem}.lg\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem}.lg\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem}.lg\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem}.lg\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem}.lg\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem}.lg\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem}.lg\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem}.lg\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem}.lg\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem}.lg\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem}.lg\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem}.lg\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem}.lg\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem}.lg\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem}.lg\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem}.lg\:focus\:-translate-x-44:focus{--transform-translate-x:-11rem}.lg\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem}.lg\:focus\:-translate-x-52:focus{--transform-translate-x:-13rem}.lg\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem}.lg\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem}.lg\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem}.lg\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem}.lg\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem}.lg\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem}.lg\:focus\:-translate-x-px:focus{--transform-translate-x:-1px}.lg\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem}.lg\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem}.lg\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem}.lg\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem}.lg\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%}.lg\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%}.lg\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%}.lg\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%}.lg\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%}.lg\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%}.lg\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%}.lg\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%}.lg\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%}.lg\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%}.lg\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%}.lg\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%}.lg\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%}.lg\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%}.lg\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%}.lg\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%}.lg\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%}.lg\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%}.lg\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%}.lg\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%}.lg\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%}.lg\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%}.lg\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%}.lg\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%}.lg\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%}.lg\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%}.lg\:focus\:-translate-x-full:focus{--transform-translate-x:-100%}.lg\:focus\:translate-y-0:focus{--transform-translate-y:0}.lg\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem}.lg\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem}.lg\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem}.lg\:focus\:translate-y-4:focus{--transform-translate-y:1rem}.lg\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem}.lg\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem}.lg\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem}.lg\:focus\:translate-y-8:focus{--transform-translate-y:2rem}.lg\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem}.lg\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem}.lg\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem}.lg\:focus\:translate-y-12:focus{--transform-translate-y:3rem}.lg\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem}.lg\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem}.lg\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem}.lg\:focus\:translate-y-16:focus{--transform-translate-y:4rem}.lg\:focus\:translate-y-20:focus{--transform-translate-y:5rem}.lg\:focus\:translate-y-24:focus{--transform-translate-y:6rem}.lg\:focus\:translate-y-28:focus{--transform-translate-y:7rem}.lg\:focus\:translate-y-32:focus{--transform-translate-y:8rem}.lg\:focus\:translate-y-36:focus{--transform-translate-y:9rem}.lg\:focus\:translate-y-40:focus{--transform-translate-y:10rem}.lg\:focus\:translate-y-44:focus{--transform-translate-y:11rem}.lg\:focus\:translate-y-48:focus{--transform-translate-y:12rem}.lg\:focus\:translate-y-52:focus{--transform-translate-y:13rem}.lg\:focus\:translate-y-56:focus{--transform-translate-y:14rem}.lg\:focus\:translate-y-60:focus{--transform-translate-y:15rem}.lg\:focus\:translate-y-64:focus{--transform-translate-y:16rem}.lg\:focus\:translate-y-72:focus{--transform-translate-y:18rem}.lg\:focus\:translate-y-80:focus{--transform-translate-y:20rem}.lg\:focus\:translate-y-96:focus{--transform-translate-y:24rem}.lg\:focus\:translate-y-px:focus{--transform-translate-y:1px}.lg\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem}.lg\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem}.lg\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem}.lg\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem}.lg\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%}.lg\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%}.lg\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%}.lg\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%}.lg\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%}.lg\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%}.lg\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%}.lg\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%}.lg\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%}.lg\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%}.lg\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%}.lg\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%}.lg\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%}.lg\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%}.lg\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%}.lg\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%}.lg\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%}.lg\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%}.lg\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%}.lg\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%}.lg\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%}.lg\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%}.lg\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%}.lg\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%}.lg\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%}.lg\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%}.lg\:focus\:translate-y-full:focus{--transform-translate-y:100%}.lg\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem}.lg\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem}.lg\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem}.lg\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem}.lg\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem}.lg\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem}.lg\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem}.lg\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem}.lg\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem}.lg\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem}.lg\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem}.lg\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem}.lg\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem}.lg\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem}.lg\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem}.lg\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem}.lg\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem}.lg\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem}.lg\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem}.lg\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem}.lg\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem}.lg\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem}.lg\:focus\:-translate-y-44:focus{--transform-translate-y:-11rem}.lg\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem}.lg\:focus\:-translate-y-52:focus{--transform-translate-y:-13rem}.lg\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem}.lg\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem}.lg\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem}.lg\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem}.lg\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem}.lg\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem}.lg\:focus\:-translate-y-px:focus{--transform-translate-y:-1px}.lg\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem}.lg\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem}.lg\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem}.lg\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem}.lg\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%}.lg\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%}.lg\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%}.lg\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%}.lg\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%}.lg\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%}.lg\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%}.lg\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%}.lg\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%}.lg\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%}.lg\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%}.lg\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%}.lg\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%}.lg\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%}.lg\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%}.lg\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%}.lg\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%}.lg\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%}.lg\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%}.lg\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%}.lg\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%}.lg\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%}.lg\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%}.lg\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%}.lg\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%}.lg\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%}.lg\:focus\:-translate-y-full:focus{--transform-translate-y:-100%}.lg\:skew-x-0{--transform-skew-x:0}.lg\:skew-x-3{--transform-skew-x:3deg}.lg\:skew-x-6{--transform-skew-x:6deg}.lg\:skew-x-12{--transform-skew-x:12deg}.lg\:-skew-x-12{--transform-skew-x:-12deg}.lg\:-skew-x-6{--transform-skew-x:-6deg}.lg\:-skew-x-3{--transform-skew-x:-3deg}.lg\:skew-y-0{--transform-skew-y:0}.lg\:skew-y-3{--transform-skew-y:3deg}.lg\:skew-y-6{--transform-skew-y:6deg}.lg\:skew-y-12{--transform-skew-y:12deg}.lg\:-skew-y-12{--transform-skew-y:-12deg}.lg\:-skew-y-6{--transform-skew-y:-6deg}.lg\:-skew-y-3{--transform-skew-y:-3deg}.lg\:hover\:skew-x-0:hover{--transform-skew-x:0}.lg\:hover\:skew-x-3:hover{--transform-skew-x:3deg}.lg\:hover\:skew-x-6:hover{--transform-skew-x:6deg}.lg\:hover\:skew-x-12:hover{--transform-skew-x:12deg}.lg\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg}.lg\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg}.lg\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg}.lg\:hover\:skew-y-0:hover{--transform-skew-y:0}.lg\:hover\:skew-y-3:hover{--transform-skew-y:3deg}.lg\:hover\:skew-y-6:hover{--transform-skew-y:6deg}.lg\:hover\:skew-y-12:hover{--transform-skew-y:12deg}.lg\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg}.lg\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg}.lg\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg}.lg\:focus\:skew-x-0:focus{--transform-skew-x:0}.lg\:focus\:skew-x-3:focus{--transform-skew-x:3deg}.lg\:focus\:skew-x-6:focus{--transform-skew-x:6deg}.lg\:focus\:skew-x-12:focus{--transform-skew-x:12deg}.lg\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg}.lg\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg}.lg\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg}.lg\:focus\:skew-y-0:focus{--transform-skew-y:0}.lg\:focus\:skew-y-3:focus{--transform-skew-y:3deg}.lg\:focus\:skew-y-6:focus{--transform-skew-y:6deg}.lg\:focus\:skew-y-12:focus{--transform-skew-y:12deg}.lg\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg}.lg\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg}.lg\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg}.lg\:transition-none{transition-property:none}.lg\:transition-all{transition-property:all}.lg\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.lg\:transition-colors{transition-property:background-color,border-color,color,fill,stroke}.lg\:transition-opacity{transition-property:opacity}.lg\:transition-shadow{transition-property:box-shadow}.lg\:transition-transform{transition-property:transform}.lg\:ease-linear{transition-timing-function:linear}.lg\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.lg\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.lg\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.lg\:duration-75{transition-duration:75ms}.lg\:duration-100{transition-duration:.1s}.lg\:duration-150{transition-duration:150ms}.lg\:duration-200{transition-duration:.2s}.lg\:duration-300{transition-duration:.3s}.lg\:duration-500{transition-duration:.5s}.lg\:duration-700{transition-duration:.7s}.lg\:duration-1000{transition-duration:1s}.lg\:delay-75{transition-delay:75ms}.lg\:delay-100{transition-delay:.1s}.lg\:delay-150{transition-delay:150ms}.lg\:delay-200{transition-delay:.2s}.lg\:delay-300{transition-delay:.3s}.lg\:delay-500{transition-delay:.5s}.lg\:delay-700{transition-delay:.7s}.lg\:delay-1000{transition-delay:1s}}@media (min-width:1280px){.xl\:container{width:100%}@media (min-width:640px){.xl\:container{max-width:640px}}@media (min-width:768px){.xl\:container{max-width:768px}}@media (min-width:1024px){.xl\:container{max-width:1024px}}@media (min-width:1280px){.xl\:container{max-width:1280px}}.xl\:prose{color:#374151;max-width:65ch}.xl\:prose [class~=lead]{color:#4b5563;font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.xl\:prose a{color:#5850ec;text-decoration:none;font-weight:600}.xl\:prose strong{color:#161e2e;font-weight:600}.xl\:prose ol{counter-reset:list-counter;margin-top:1.25em;margin-bottom:1.25em}.xl\:prose ol>li{position:relative;counter-increment:list-counter;padding-left:1.75em}.xl\:prose ol>li::before{content:counter(list-counter) ".";position:absolute;font-weight:400;color:#6b7280}.xl\:prose ul>li{position:relative;padding-left:1.75em}.xl\:prose ul>li::before{content:"";position:absolute;background-color:#d2d6dc;border-radius:50%;width:.375em;height:.375em;top:calc(.875em - .1875em);left:.25em}.xl\:prose hr{border-color:#e5e7eb;border-top-width:1px;margin-top:3em;margin-bottom:3em}.xl\:prose blockquote{font-weight:500;font-style:italic;color:#161e2e;border-left-width:.25rem;border-left-color:#e5e7eb;quotes:"\201C""\201D""\2018""\2019";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.xl\:prose blockquote p:first-of-type::before{content:open-quote}.xl\:prose blockquote p:last-of-type::after{content:close-quote}.xl\:prose h1{color:#1a202c;font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.xl\:prose h2{color:#1a202c;font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.xl\:prose h3{color:#1a202c;font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.xl\:prose h4{color:#1a202c;font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.xl\:prose figure figcaption{color:#6b7280;font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.xl\:prose code{color:#161e2e;font-weight:600;font-size:.875em}.xl\:prose code::before{content:"`"}.xl\:prose code::after{content:"`"}.xl\:prose pre{color:#e5e7eb;background-color:#252f3f;overflow-x:auto;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding-top:.8571429em;padding-right:1.1428571em;padding-bottom:.8571429em;padding-left:1.1428571em}.xl\:prose pre code{background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:400;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.xl\:prose pre code::before{content:""}.xl\:prose pre code::after{content:""}.xl\:prose table{width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.xl\:prose thead{color:#161e2e;font-weight:600;border-bottom-width:1px;border-bottom-color:#d2d6dc}.xl\:prose thead th{vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.xl\:prose tbody tr{border-bottom-width:1px;border-bottom-color:#e5e7eb}.xl\:prose tbody tr:last-child{border-bottom-width:0}.xl\:prose tbody td{vertical-align:top;padding-top:.5714286em;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.xl\:prose{font-size:1rem;line-height:1.75}.xl\:prose p{margin-top:1.25em;margin-bottom:1.25em}.xl\:prose img{margin-top:2em;margin-bottom:2em}.xl\:prose video{margin-top:2em;margin-bottom:2em}.xl\:prose figure{margin-top:2em;margin-bottom:2em}.xl\:prose figure>*{margin-top:0;margin-bottom:0}.xl\:prose h2 code{font-size:.875em}.xl\:prose h3 code{font-size:.9em}.xl\:prose ul{margin-top:1.25em;margin-bottom:1.25em}.xl\:prose li{margin-top:.5em;margin-bottom:.5em}.xl\:prose ol>li:before{left:0}.xl\:prose>ul>li p{margin-top:.75em;margin-bottom:.75em}.xl\:prose>ul>li>:first-child{margin-top:1.25em}.xl\:prose>ul>li>:last-child{margin-bottom:1.25em}.xl\:prose>ol>li>:first-child{margin-top:1.25em}.xl\:prose>ol>li>:last-child{margin-bottom:1.25em}.xl\:prose ol ol,.xl\:prose ol ul,.xl\:prose ul ol,.xl\:prose ul ul{margin-top:.75em;margin-bottom:.75em}.xl\:prose hr+*{margin-top:0}.xl\:prose h2+*{margin-top:0}.xl\:prose h3+*{margin-top:0}.xl\:prose h4+*{margin-top:0}.xl\:prose thead th:first-child{padding-left:0}.xl\:prose thead th:last-child{padding-right:0}.xl\:prose tbody td:first-child{padding-left:0}.xl\:prose tbody td:last-child{padding-right:0}.xl\:prose>:first-child{margin-top:0}.xl\:prose>:last-child{margin-bottom:0}.xl\:prose h1,.xl\:prose h2,.xl\:prose h3,.xl\:prose h4{color:#161e2e}.xl\:prose-sm{font-size:.875rem;line-height:1.7142857}.xl\:prose-sm p{margin-top:1.1428571em;margin-bottom:1.1428571em}.xl\:prose-sm [class~=lead]{font-size:1.2857143em;line-height:1.5555556;margin-top:.8888889em;margin-bottom:.8888889em}.xl\:prose-sm blockquote{margin-top:1.3333333em;margin-bottom:1.3333333em;padding-left:1.1111111em}.xl\:prose-sm h1{font-size:2.1428571em;margin-top:0;margin-bottom:.8em;line-height:1.2}.xl\:prose-sm h2{font-size:1.4285714em;margin-top:1.6em;margin-bottom:.8em;line-height:1.4}.xl\:prose-sm h3{font-size:1.2857143em;margin-top:1.5555556em;margin-bottom:.4444444em;line-height:1.5555556}.xl\:prose-sm h4{margin-top:1.4285714em;margin-bottom:.5714286em;line-height:1.4285714}.xl\:prose-sm img{margin-top:1.7142857em;margin-bottom:1.7142857em}.xl\:prose-sm video{margin-top:1.7142857em;margin-bottom:1.7142857em}.xl\:prose-sm figure{margin-top:1.7142857em;margin-bottom:1.7142857em}.xl\:prose-sm figure>*{margin-top:0;margin-bottom:0}.xl\:prose-sm figure figcaption{font-size:.8571429em;line-height:1.3333333;margin-top:.6666667em}.xl\:prose-sm code{font-size:.8571429em}.xl\:prose-sm h2 code{font-size:.9em}.xl\:prose-sm h3 code{font-size:.8888889em}.xl\:prose-sm pre{font-size:.8571429em;line-height:1.6666667;margin-top:1.6666667em;margin-bottom:1.6666667em;border-radius:.25rem;padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.xl\:prose-sm ol{margin-top:1.1428571em;margin-bottom:1.1428571em}.xl\:prose-sm ul{margin-top:1.1428571em;margin-bottom:1.1428571em}.xl\:prose-sm li{margin-top:.2857143em;margin-bottom:.2857143em}.xl\:prose-sm ol>li{padding-left:1.5714286em}.xl\:prose-sm ol>li:before{left:0}.xl\:prose-sm ul>li{padding-left:1.5714286em}.xl\:prose-sm ul>li::before{height:.3571429em;width:.3571429em;top:calc(.8571429em - .1785714em);left:.2142857em}.xl\:prose-sm>ul>li p{margin-top:.5714286em;margin-bottom:.5714286em}.xl\:prose-sm>ul>li>:first-child{margin-top:1.1428571em}.xl\:prose-sm>ul>li>:last-child{margin-bottom:1.1428571em}.xl\:prose-sm>ol>li>:first-child{margin-top:1.1428571em}.xl\:prose-sm>ol>li>:last-child{margin-bottom:1.1428571em}.xl\:prose-sm ol ol,.xl\:prose-sm ol ul,.xl\:prose-sm ul ol,.xl\:prose-sm ul ul{margin-top:.5714286em;margin-bottom:.5714286em}.xl\:prose-sm hr{margin-top:2.8571429em;margin-bottom:2.8571429em}.xl\:prose-sm hr+*{margin-top:0}.xl\:prose-sm h2+*{margin-top:0}.xl\:prose-sm h3+*{margin-top:0}.xl\:prose-sm h4+*{margin-top:0}.xl\:prose-sm table{font-size:.8571429em;line-height:1.5}.xl\:prose-sm thead th{padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.xl\:prose-sm thead th:first-child{padding-left:0}.xl\:prose-sm thead th:last-child{padding-right:0}.xl\:prose-sm tbody td{padding-top:.6666667em;padding-right:1em;padding-bottom:.6666667em;padding-left:1em}.xl\:prose-sm tbody td:first-child{padding-left:0}.xl\:prose-sm tbody td:last-child{padding-right:0}.xl\:prose-sm>:first-child{margin-top:0}.xl\:prose-sm>:last-child{margin-bottom:0}.xl\:prose-lg{font-size:1.125rem;line-height:1.7777778}.xl\:prose-lg p{margin-top:1.3333333em;margin-bottom:1.3333333em}.xl\:prose-lg [class~=lead]{font-size:1.2222222em;line-height:1.4545455;margin-top:1.0909091em;margin-bottom:1.0909091em}.xl\:prose-lg blockquote{margin-top:1.6666667em;margin-bottom:1.6666667em;padding-left:1em}.xl\:prose-lg h1{font-size:2.6666667em;margin-top:0;margin-bottom:.8333333em;line-height:1}.xl\:prose-lg h2{font-size:1.6666667em;margin-top:1.8666667em;margin-bottom:1.0666667em;line-height:1.3333333}.xl\:prose-lg h3{font-size:1.3333333em;margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.xl\:prose-lg h4{margin-top:1.7777778em;margin-bottom:.4444444em;line-height:1.5555556}.xl\:prose-lg img{margin-top:1.7777778em;margin-bottom:1.7777778em}.xl\:prose-lg video{margin-top:1.7777778em;margin-bottom:1.7777778em}.xl\:prose-lg figure{margin-top:1.7777778em;margin-bottom:1.7777778em}.xl\:prose-lg figure>*{margin-top:0;margin-bottom:0}.xl\:prose-lg figure figcaption{font-size:.8888889em;line-height:1.5;margin-top:1em}.xl\:prose-lg code{font-size:.8888889em}.xl\:prose-lg h2 code{font-size:.8666667em}.xl\:prose-lg h3 code{font-size:.875em}.xl\:prose-lg pre{font-size:.8888889em;line-height:1.75;margin-top:2em;margin-bottom:2em;border-radius:.375rem;padding-top:1em;padding-right:1.5em;padding-bottom:1em;padding-left:1.5em}.xl\:prose-lg ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.xl\:prose-lg ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.xl\:prose-lg li{margin-top:.6666667em;margin-bottom:.6666667em}.xl\:prose-lg ol>li{padding-left:1.6666667em}.xl\:prose-lg ol>li:before{left:0}.xl\:prose-lg ul>li{padding-left:1.6666667em}.xl\:prose-lg ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8888889em - .1666667em);left:.2222222em}.xl\:prose-lg>ul>li p{margin-top:.8888889em;margin-bottom:.8888889em}.xl\:prose-lg>ul>li>:first-child{margin-top:1.3333333em}.xl\:prose-lg>ul>li>:last-child{margin-bottom:1.3333333em}.xl\:prose-lg>ol>li>:first-child{margin-top:1.3333333em}.xl\:prose-lg>ol>li>:last-child{margin-bottom:1.3333333em}.xl\:prose-lg ol ol,.xl\:prose-lg ol ul,.xl\:prose-lg ul ol,.xl\:prose-lg ul ul{margin-top:.8888889em;margin-bottom:.8888889em}.xl\:prose-lg hr{margin-top:3.1111111em;margin-bottom:3.1111111em}.xl\:prose-lg hr+*{margin-top:0}.xl\:prose-lg h2+*{margin-top:0}.xl\:prose-lg h3+*{margin-top:0}.xl\:prose-lg h4+*{margin-top:0}.xl\:prose-lg table{font-size:.8888889em;line-height:1.5}.xl\:prose-lg thead th{padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.xl\:prose-lg thead th:first-child{padding-left:0}.xl\:prose-lg thead th:last-child{padding-right:0}.xl\:prose-lg tbody td{padding-top:.75em;padding-right:.75em;padding-bottom:.75em;padding-left:.75em}.xl\:prose-lg tbody td:first-child{padding-left:0}.xl\:prose-lg tbody td:last-child{padding-right:0}.xl\:prose-lg>:first-child{margin-top:0}.xl\:prose-lg>:last-child{margin-bottom:0}.xl\:prose-xl{font-size:1.25rem;line-height:1.8}.xl\:prose-xl p{margin-top:1.2em;margin-bottom:1.2em}.xl\:prose-xl [class~=lead]{font-size:1.2em;line-height:1.5;margin-top:1em;margin-bottom:1em}.xl\:prose-xl blockquote{margin-top:1.6em;margin-bottom:1.6em;padding-left:1.0666667em}.xl\:prose-xl h1{font-size:2.8em;margin-top:0;margin-bottom:.8571429em;line-height:1}.xl\:prose-xl h2{font-size:1.8em;margin-top:1.5555556em;margin-bottom:.8888889em;line-height:1.1111111}.xl\:prose-xl h3{font-size:1.5em;margin-top:1.6em;margin-bottom:.6666667em;line-height:1.3333333}.xl\:prose-xl h4{margin-top:1.8em;margin-bottom:.6em;line-height:1.6}.xl\:prose-xl img{margin-top:2em;margin-bottom:2em}.xl\:prose-xl video{margin-top:2em;margin-bottom:2em}.xl\:prose-xl figure{margin-top:2em;margin-bottom:2em}.xl\:prose-xl figure>*{margin-top:0;margin-bottom:0}.xl\:prose-xl figure figcaption{font-size:.9em;line-height:1.5555556;margin-top:1em}.xl\:prose-xl code{font-size:.9em}.xl\:prose-xl h2 code{font-size:.8611111em}.xl\:prose-xl h3 code{font-size:.9em}.xl\:prose-xl pre{font-size:.9em;line-height:1.7777778;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.1111111em;padding-right:1.3333333em;padding-bottom:1.1111111em;padding-left:1.3333333em}.xl\:prose-xl ol{margin-top:1.2em;margin-bottom:1.2em}.xl\:prose-xl ul{margin-top:1.2em;margin-bottom:1.2em}.xl\:prose-xl li{margin-top:.6em;margin-bottom:.6em}.xl\:prose-xl ol>li{padding-left:1.8em}.xl\:prose-xl ol>li:before{left:0}.xl\:prose-xl ul>li{padding-left:1.8em}.xl\:prose-xl ul>li::before{width:.35em;height:.35em;top:calc(.9em - .175em);left:.25em}.xl\:prose-xl>ul>li p{margin-top:.8em;margin-bottom:.8em}.xl\:prose-xl>ul>li>:first-child{margin-top:1.2em}.xl\:prose-xl>ul>li>:last-child{margin-bottom:1.2em}.xl\:prose-xl>ol>li>:first-child{margin-top:1.2em}.xl\:prose-xl>ol>li>:last-child{margin-bottom:1.2em}.xl\:prose-xl ol ol,.xl\:prose-xl ol ul,.xl\:prose-xl ul ol,.xl\:prose-xl ul ul{margin-top:.8em;margin-bottom:.8em}.xl\:prose-xl hr{margin-top:2.8em;margin-bottom:2.8em}.xl\:prose-xl hr+*{margin-top:0}.xl\:prose-xl h2+*{margin-top:0}.xl\:prose-xl h3+*{margin-top:0}.xl\:prose-xl h4+*{margin-top:0}.xl\:prose-xl table{font-size:.9em;line-height:1.5555556}.xl\:prose-xl thead th{padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.xl\:prose-xl thead th:first-child{padding-left:0}.xl\:prose-xl thead th:last-child{padding-right:0}.xl\:prose-xl tbody td{padding-top:.8888889em;padding-right:.6666667em;padding-bottom:.8888889em;padding-left:.6666667em}.xl\:prose-xl tbody td:first-child{padding-left:0}.xl\:prose-xl tbody td:last-child{padding-right:0}.xl\:prose-xl>:first-child{margin-top:0}.xl\:prose-xl>:last-child{margin-bottom:0}.xl\:prose-2xl{font-size:1.5rem;line-height:1.6666667}.xl\:prose-2xl p{margin-top:1.3333333em;margin-bottom:1.3333333em}.xl\:prose-2xl [class~=lead]{font-size:1.25em;line-height:1.4666667;margin-top:1.0666667em;margin-bottom:1.0666667em}.xl\:prose-2xl blockquote{margin-top:1.7777778em;margin-bottom:1.7777778em;padding-left:1.1111111em}.xl\:prose-2xl h1{font-size:2.6666667em;margin-top:0;margin-bottom:.875em;line-height:1}.xl\:prose-2xl h2{font-size:2em;margin-top:1.5em;margin-bottom:.8333333em;line-height:1.0833333}.xl\:prose-2xl h3{font-size:1.5em;margin-top:1.5555556em;margin-bottom:.6666667em;line-height:1.2222222}.xl\:prose-2xl h4{margin-top:1.6666667em;margin-bottom:.6666667em;line-height:1.5}.xl\:prose-2xl img{margin-top:2em;margin-bottom:2em}.xl\:prose-2xl video{margin-top:2em;margin-bottom:2em}.xl\:prose-2xl figure{margin-top:2em;margin-bottom:2em}.xl\:prose-2xl figure>*{margin-top:0;margin-bottom:0}.xl\:prose-2xl figure figcaption{font-size:.8333333em;line-height:1.6;margin-top:1em}.xl\:prose-2xl code{font-size:.8333333em}.xl\:prose-2xl h2 code{font-size:.875em}.xl\:prose-2xl h3 code{font-size:.8888889em}.xl\:prose-2xl pre{font-size:.8333333em;line-height:1.8;margin-top:2em;margin-bottom:2em;border-radius:.5rem;padding-top:1.2em;padding-right:1.6em;padding-bottom:1.2em;padding-left:1.6em}.xl\:prose-2xl ol{margin-top:1.3333333em;margin-bottom:1.3333333em}.xl\:prose-2xl ul{margin-top:1.3333333em;margin-bottom:1.3333333em}.xl\:prose-2xl li{margin-top:.5em;margin-bottom:.5em}.xl\:prose-2xl ol>li{padding-left:1.6666667em}.xl\:prose-2xl ol>li:before{left:0}.xl\:prose-2xl ul>li{padding-left:1.6666667em}.xl\:prose-2xl ul>li::before{width:.3333333em;height:.3333333em;top:calc(.8333333em - .1666667em);left:.25em}.xl\:prose-2xl>ul>li p{margin-top:.8333333em;margin-bottom:.8333333em}.xl\:prose-2xl>ul>li>:first-child{margin-top:1.3333333em}.xl\:prose-2xl>ul>li>:last-child{margin-bottom:1.3333333em}.xl\:prose-2xl>ol>li>:first-child{margin-top:1.3333333em}.xl\:prose-2xl>ol>li>:last-child{margin-bottom:1.3333333em}.xl\:prose-2xl ol ol,.xl\:prose-2xl ol ul,.xl\:prose-2xl ul ol,.xl\:prose-2xl ul ul{margin-top:.6666667em;margin-bottom:.6666667em}.xl\:prose-2xl hr{margin-top:3em;margin-bottom:3em}.xl\:prose-2xl hr+*{margin-top:0}.xl\:prose-2xl h2+*{margin-top:0}.xl\:prose-2xl h3+*{margin-top:0}.xl\:prose-2xl h4+*{margin-top:0}.xl\:prose-2xl table{font-size:.8333333em;line-height:1.4}.xl\:prose-2xl thead th{padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.xl\:prose-2xl thead th:first-child{padding-left:0}.xl\:prose-2xl thead th:last-child{padding-right:0}.xl\:prose-2xl tbody td{padding-top:.8em;padding-right:.6em;padding-bottom:.8em;padding-left:.6em}.xl\:prose-2xl tbody td:first-child{padding-left:0}.xl\:prose-2xl tbody td:last-child{padding-right:0}.xl\:prose-2xl>:first-child{margin-top:0}.xl\:prose-2xl>:last-child{margin-bottom:0}.xl\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(0px * var(--space-y-reverse))}.xl\:space-x-0>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0px * var(--space-x-reverse));margin-left:calc(0px * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.25rem * var(--space-y-reverse))}.xl\:space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.25rem * var(--space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.5rem * var(--space-y-reverse))}.xl\:space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.5rem * var(--space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.75rem * var(--space-y-reverse))}.xl\:space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.75rem * var(--space-x-reverse));margin-left:calc(.75rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1rem * var(--space-y-reverse))}.xl\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem * var(--space-x-reverse));margin-left:calc(1rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem * var(--space-y-reverse))}.xl\:space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.25rem * var(--space-x-reverse));margin-left:calc(1.25rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.5rem * var(--space-y-reverse))}.xl\:space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem * var(--space-x-reverse));margin-left:calc(1.5rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1.75rem * var(--space-y-reverse))}.xl\:space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.75rem * var(--space-x-reverse));margin-left:calc(1.75rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2rem * var(--space-y-reverse))}.xl\:space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2rem * var(--space-x-reverse));margin-left:calc(2rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.25rem * var(--space-y-reverse))}.xl\:space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.25rem * var(--space-x-reverse));margin-left:calc(2.25rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.5rem * var(--space-y-reverse))}.xl\:space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.5rem * var(--space-x-reverse));margin-left:calc(2.5rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(2.75rem * var(--space-y-reverse))}.xl\:space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(2.75rem * var(--space-x-reverse));margin-left:calc(2.75rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3rem * var(--space-y-reverse))}.xl\:space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3rem * var(--space-x-reverse));margin-left:calc(3rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.25rem * var(--space-y-reverse))}.xl\:space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.25rem * var(--space-x-reverse));margin-left:calc(3.25rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.5rem * var(--space-y-reverse))}.xl\:space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.5rem * var(--space-x-reverse));margin-left:calc(3.5rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(3.75rem * var(--space-y-reverse))}.xl\:space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(3.75rem * var(--space-x-reverse));margin-left:calc(3.75rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(4rem * var(--space-y-reverse))}.xl\:space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(4rem * var(--space-x-reverse));margin-left:calc(4rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(5rem * var(--space-y-reverse))}.xl\:space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(5rem * var(--space-x-reverse));margin-left:calc(5rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(6rem * var(--space-y-reverse))}.xl\:space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(6rem * var(--space-x-reverse));margin-left:calc(6rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(7rem * var(--space-y-reverse))}.xl\:space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(7rem * var(--space-x-reverse));margin-left:calc(7rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8rem * var(--space-y-reverse))}.xl\:space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8rem * var(--space-x-reverse));margin-left:calc(8rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(9rem * var(--space-y-reverse))}.xl\:space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(9rem * var(--space-x-reverse));margin-left:calc(9rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(10rem * var(--space-y-reverse))}.xl\:space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(10rem * var(--space-x-reverse));margin-left:calc(10rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(11rem * var(--space-y-reverse))}.xl\:space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(11rem * var(--space-x-reverse));margin-left:calc(11rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(12rem * var(--space-y-reverse))}.xl\:space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(12rem * var(--space-x-reverse));margin-left:calc(12rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(13rem * var(--space-y-reverse))}.xl\:space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(13rem * var(--space-x-reverse));margin-left:calc(13rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(14rem * var(--space-y-reverse))}.xl\:space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(14rem * var(--space-x-reverse));margin-left:calc(14rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(15rem * var(--space-y-reverse))}.xl\:space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(15rem * var(--space-x-reverse));margin-left:calc(15rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16rem * var(--space-y-reverse))}.xl\:space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16rem * var(--space-x-reverse));margin-left:calc(16rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(18rem * var(--space-y-reverse))}.xl\:space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(18rem * var(--space-x-reverse));margin-left:calc(18rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20rem * var(--space-y-reverse))}.xl\:space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20rem * var(--space-x-reverse));margin-left:calc(20rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(24rem * var(--space-y-reverse))}.xl\:space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(24rem * var(--space-x-reverse));margin-left:calc(24rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(1px * var(--space-y-reverse))}.xl\:space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1px * var(--space-x-reverse));margin-left:calc(1px * calc(1 - var(--space-x-reverse)))}.xl\:space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.125rem * var(--space-y-reverse))}.xl\:space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.125rem * var(--space-x-reverse));margin-left:calc(.125rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.375rem * var(--space-y-reverse))}.xl\:space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.375rem * var(--space-x-reverse));margin-left:calc(.375rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.625rem * var(--space-y-reverse))}.xl\:space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.625rem * var(--space-x-reverse));margin-left:calc(.625rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(.875rem * var(--space-y-reverse))}.xl\:space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(.875rem * var(--space-x-reverse));margin-left:calc(.875rem * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.xl\:space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.xl\:space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.xl\:space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.xl\:space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.xl\:space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.xl\:space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(20% * var(--space-y-reverse))}.xl\:space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(20% * var(--space-x-reverse));margin-left:calc(20% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(40% * var(--space-y-reverse))}.xl\:space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(40% * var(--space-x-reverse));margin-left:calc(40% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(60% * var(--space-y-reverse))}.xl\:space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(60% * var(--space-x-reverse));margin-left:calc(60% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(80% * var(--space-y-reverse))}.xl\:space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(80% * var(--space-x-reverse));margin-left:calc(80% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.xl\:space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.xl\:space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.xl\:space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.xl\:space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.xl\:space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(8.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(8.333333% * var(--space-y-reverse))}.xl\:space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(8.333333% * var(--space-x-reverse));margin-left:calc(8.333333% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(16.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(16.666667% * var(--space-y-reverse))}.xl\:space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(16.666667% * var(--space-x-reverse));margin-left:calc(16.666667% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(25% * var(--space-y-reverse))}.xl\:space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(25% * var(--space-x-reverse));margin-left:calc(25% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(33.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(33.333333% * var(--space-y-reverse))}.xl\:space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(33.333333% * var(--space-x-reverse));margin-left:calc(33.333333% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(41.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(41.666667% * var(--space-y-reverse))}.xl\:space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(41.666667% * var(--space-x-reverse));margin-left:calc(41.666667% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(50% * var(--space-y-reverse))}.xl\:space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(50% * var(--space-x-reverse));margin-left:calc(50% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(58.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(58.333333% * var(--space-y-reverse))}.xl\:space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(58.333333% * var(--space-x-reverse));margin-left:calc(58.333333% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(66.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(66.666667% * var(--space-y-reverse))}.xl\:space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(66.666667% * var(--space-x-reverse));margin-left:calc(66.666667% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(75% * var(--space-y-reverse))}.xl\:space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(75% * var(--space-x-reverse));margin-left:calc(75% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(83.333333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(83.333333% * var(--space-y-reverse))}.xl\:space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(83.333333% * var(--space-x-reverse));margin-left:calc(83.333333% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(91.666667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(91.666667% * var(--space-y-reverse))}.xl\:space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(91.666667% * var(--space-x-reverse));margin-left:calc(91.666667% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(100% * var(--space-y-reverse))}.xl\:space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(100% * var(--space-x-reverse));margin-left:calc(100% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.25rem * var(--space-y-reverse))}.xl\:-space-x-1>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.25rem * var(--space-x-reverse));margin-left:calc(-.25rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.5rem * var(--space-y-reverse))}.xl\:-space-x-2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.5rem * var(--space-x-reverse));margin-left:calc(-.5rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.75rem * var(--space-y-reverse))}.xl\:-space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.75rem * var(--space-x-reverse));margin-left:calc(-.75rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1rem * var(--space-y-reverse))}.xl\:-space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1rem * var(--space-x-reverse));margin-left:calc(-1rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.25rem * var(--space-y-reverse))}.xl\:-space-x-5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.25rem * var(--space-x-reverse));margin-left:calc(-1.25rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.5rem * var(--space-y-reverse))}.xl\:-space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.5rem * var(--space-x-reverse));margin-left:calc(-1.5rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-7>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1.75rem * var(--space-y-reverse))}.xl\:-space-x-7>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1.75rem * var(--space-x-reverse));margin-left:calc(-1.75rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-8>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2rem * var(--space-y-reverse))}.xl\:-space-x-8>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2rem * var(--space-x-reverse));margin-left:calc(-2rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-9>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.25rem * var(--space-y-reverse))}.xl\:-space-x-9>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.25rem * var(--space-x-reverse));margin-left:calc(-2.25rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-10>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.5rem * var(--space-y-reverse))}.xl\:-space-x-10>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.5rem * var(--space-x-reverse));margin-left:calc(-2.5rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-11>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-2.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-2.75rem * var(--space-y-reverse))}.xl\:-space-x-11>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-2.75rem * var(--space-x-reverse));margin-left:calc(-2.75rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3rem * var(--space-y-reverse))}.xl\:-space-x-12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3rem * var(--space-x-reverse));margin-left:calc(-3rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-13>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.25rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.25rem * var(--space-y-reverse))}.xl\:-space-x-13>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.25rem * var(--space-x-reverse));margin-left:calc(-3.25rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-14>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.5rem * var(--space-y-reverse))}.xl\:-space-x-14>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.5rem * var(--space-x-reverse));margin-left:calc(-3.5rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-15>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-3.75rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-3.75rem * var(--space-y-reverse))}.xl\:-space-x-15>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-3.75rem * var(--space-x-reverse));margin-left:calc(-3.75rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-16>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-4rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-4rem * var(--space-y-reverse))}.xl\:-space-x-16>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-4rem * var(--space-x-reverse));margin-left:calc(-4rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-20>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-5rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-5rem * var(--space-y-reverse))}.xl\:-space-x-20>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-5rem * var(--space-x-reverse));margin-left:calc(-5rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-24>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-6rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-6rem * var(--space-y-reverse))}.xl\:-space-x-24>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-6rem * var(--space-x-reverse));margin-left:calc(-6rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-28>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-7rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-7rem * var(--space-y-reverse))}.xl\:-space-x-28>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-7rem * var(--space-x-reverse));margin-left:calc(-7rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-32>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8rem * var(--space-y-reverse))}.xl\:-space-x-32>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8rem * var(--space-x-reverse));margin-left:calc(-8rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-36>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-9rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-9rem * var(--space-y-reverse))}.xl\:-space-x-36>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-9rem * var(--space-x-reverse));margin-left:calc(-9rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-40>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-10rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-10rem * var(--space-y-reverse))}.xl\:-space-x-40>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-10rem * var(--space-x-reverse));margin-left:calc(-10rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-44>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-11rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-11rem * var(--space-y-reverse))}.xl\:-space-x-44>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-11rem * var(--space-x-reverse));margin-left:calc(-11rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-48>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-12rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-12rem * var(--space-y-reverse))}.xl\:-space-x-48>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-12rem * var(--space-x-reverse));margin-left:calc(-12rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-52>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-13rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-13rem * var(--space-y-reverse))}.xl\:-space-x-52>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-13rem * var(--space-x-reverse));margin-left:calc(-13rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-56>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-14rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-14rem * var(--space-y-reverse))}.xl\:-space-x-56>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-14rem * var(--space-x-reverse));margin-left:calc(-14rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-60>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-15rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-15rem * var(--space-y-reverse))}.xl\:-space-x-60>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-15rem * var(--space-x-reverse));margin-left:calc(-15rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-64>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16rem * var(--space-y-reverse))}.xl\:-space-x-64>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16rem * var(--space-x-reverse));margin-left:calc(-16rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-72>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-18rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-18rem * var(--space-y-reverse))}.xl\:-space-x-72>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-18rem * var(--space-x-reverse));margin-left:calc(-18rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-80>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20rem * var(--space-y-reverse))}.xl\:-space-x-80>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20rem * var(--space-x-reverse));margin-left:calc(-20rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-96>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-24rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-24rem * var(--space-y-reverse))}.xl\:-space-x-96>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-24rem * var(--space-x-reverse));margin-left:calc(-24rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-px>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-1px * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-1px * var(--space-y-reverse))}.xl\:-space-x-px>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-1px * var(--space-x-reverse));margin-left:calc(-1px * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-0\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.125rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.125rem * var(--space-y-reverse))}.xl\:-space-x-0\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.125rem * var(--space-x-reverse));margin-left:calc(-.125rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.375rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.375rem * var(--space-y-reverse))}.xl\:-space-x-1\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.375rem * var(--space-x-reverse));margin-left:calc(-.375rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-2\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.625rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.625rem * var(--space-y-reverse))}.xl\:-space-x-2\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.625rem * var(--space-x-reverse));margin-left:calc(-.625rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-3\.5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-.875rem * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-.875rem * var(--space-y-reverse))}.xl\:-space-x-3\.5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-.875rem * var(--space-x-reverse));margin-left:calc(-.875rem * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1\/2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.xl\:-space-x-1\/2>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.xl\:-space-x-1\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-2\/3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.xl\:-space-x-2\/3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.xl\:-space-x-1\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-2\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.xl\:-space-x-2\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-3\/4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.xl\:-space-x-3\/4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-20% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-20% * var(--space-y-reverse))}.xl\:-space-x-1\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-20% * var(--space-x-reverse));margin-left:calc(-20% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-2\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-40% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-40% * var(--space-y-reverse))}.xl\:-space-x-2\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-40% * var(--space-x-reverse));margin-left:calc(-40% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-3\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-60% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-60% * var(--space-y-reverse))}.xl\:-space-x-3\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-60% * var(--space-x-reverse));margin-left:calc(-60% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-4\/5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-80% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-80% * var(--space-y-reverse))}.xl\:-space-x-4\/5>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-80% * var(--space-x-reverse));margin-left:calc(-80% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.xl\:-space-x-1\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-2\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.xl\:-space-x-2\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-3\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.xl\:-space-x-3\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-4\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.xl\:-space-x-4\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-5\/6>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.xl\:-space-x-5\/6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-1\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-8.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-8.33333% * var(--space-y-reverse))}.xl\:-space-x-1\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-8.33333% * var(--space-x-reverse));margin-left:calc(-8.33333% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-2\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-16.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-16.66667% * var(--space-y-reverse))}.xl\:-space-x-2\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-16.66667% * var(--space-x-reverse));margin-left:calc(-16.66667% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-3\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-25% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-25% * var(--space-y-reverse))}.xl\:-space-x-3\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-25% * var(--space-x-reverse));margin-left:calc(-25% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-4\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-33.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-33.33333% * var(--space-y-reverse))}.xl\:-space-x-4\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-33.33333% * var(--space-x-reverse));margin-left:calc(-33.33333% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-5\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-41.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-41.66667% * var(--space-y-reverse))}.xl\:-space-x-5\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-41.66667% * var(--space-x-reverse));margin-left:calc(-41.66667% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-6\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-50% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-50% * var(--space-y-reverse))}.xl\:-space-x-6\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-50% * var(--space-x-reverse));margin-left:calc(-50% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-7\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-58.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-58.33333% * var(--space-y-reverse))}.xl\:-space-x-7\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-58.33333% * var(--space-x-reverse));margin-left:calc(-58.33333% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-8\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-66.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-66.66667% * var(--space-y-reverse))}.xl\:-space-x-8\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-66.66667% * var(--space-x-reverse));margin-left:calc(-66.66667% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-9\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-75% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-75% * var(--space-y-reverse))}.xl\:-space-x-9\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-75% * var(--space-x-reverse));margin-left:calc(-75% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-10\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-83.33333% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-83.33333% * var(--space-y-reverse))}.xl\:-space-x-10\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-83.33333% * var(--space-x-reverse));margin-left:calc(-83.33333% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-11\/12>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-91.66667% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-91.66667% * var(--space-y-reverse))}.xl\:-space-x-11\/12>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-91.66667% * var(--space-x-reverse));margin-left:calc(-91.66667% * calc(1 - var(--space-x-reverse)))}.xl\:-space-y-full>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(-100% * calc(1 - var(--space-y-reverse)));margin-bottom:calc(-100% * var(--space-y-reverse))}.xl\:-space-x-full>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(-100% * var(--space-x-reverse));margin-left:calc(-100% * calc(1 - var(--space-x-reverse)))}.xl\:space-y-reverse>:not(template)~:not(template){--space-y-reverse:1}.xl\:space-x-reverse>:not(template)~:not(template){--space-x-reverse:1}.xl\:divide-y-0>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(0px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(0px * var(--divide-y-reverse))}.xl\:divide-x-0>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(0px * var(--divide-x-reverse));border-left-width:calc(0px * calc(1 - var(--divide-x-reverse)))}.xl\:divide-y-2>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(2px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(2px * var(--divide-y-reverse))}.xl\:divide-x-2>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(2px * var(--divide-x-reverse));border-left-width:calc(2px * calc(1 - var(--divide-x-reverse)))}.xl\:divide-y-4>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(4px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(4px * var(--divide-y-reverse))}.xl\:divide-x-4>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(4px * var(--divide-x-reverse));border-left-width:calc(4px * calc(1 - var(--divide-x-reverse)))}.xl\:divide-y-8>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(8px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(8px * var(--divide-y-reverse))}.xl\:divide-x-8>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(8px * var(--divide-x-reverse));border-left-width:calc(8px * calc(1 - var(--divide-x-reverse)))}.xl\:divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px * var(--divide-y-reverse))}.xl\:divide-x>:not(template)~:not(template){--divide-x-reverse:0;border-right-width:calc(1px * var(--divide-x-reverse));border-left-width:calc(1px * calc(1 - var(--divide-x-reverse)))}.xl\:divide-y-reverse>:not(template)~:not(template){--divide-y-reverse:1}.xl\:divide-x-reverse>:not(template)~:not(template){--divide-x-reverse:1}.xl\:divide-transparent>:not(template)~:not(template){border-color:transparent}.xl\:divide-white>:not(template)~:not(template){--divide-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--divide-opacity))}.xl\:divide-black>:not(template)~:not(template){--divide-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--divide-opacity))}.xl\:divide-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--divide-opacity))}.xl\:divide-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--divide-opacity))}.xl\:divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.xl\:divide-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--divide-opacity))}.xl\:divide-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--divide-opacity))}.xl\:divide-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--divide-opacity))}.xl\:divide-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--divide-opacity))}.xl\:divide-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--divide-opacity))}.xl\:divide-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--divide-opacity))}.xl\:divide-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--divide-opacity))}.xl\:divide-cool-gray-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--divide-opacity))}.xl\:divide-cool-gray-100>:not(template)~:not(template){--divide-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--divide-opacity))}.xl\:divide-cool-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--divide-opacity))}.xl\:divide-cool-gray-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--divide-opacity))}.xl\:divide-cool-gray-400>:not(template)~:not(template){--divide-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--divide-opacity))}.xl\:divide-cool-gray-500>:not(template)~:not(template){--divide-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--divide-opacity))}.xl\:divide-cool-gray-600>:not(template)~:not(template){--divide-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--divide-opacity))}.xl\:divide-cool-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--divide-opacity))}.xl\:divide-cool-gray-800>:not(template)~:not(template){--divide-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--divide-opacity))}.xl\:divide-cool-gray-900>:not(template)~:not(template){--divide-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--divide-opacity))}.xl\:divide-red-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--divide-opacity))}.xl\:divide-red-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--divide-opacity))}.xl\:divide-red-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--divide-opacity))}.xl\:divide-red-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--divide-opacity))}.xl\:divide-red-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--divide-opacity))}.xl\:divide-red-500>:not(template)~:not(template){--divide-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--divide-opacity))}.xl\:divide-red-600>:not(template)~:not(template){--divide-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--divide-opacity))}.xl\:divide-red-700>:not(template)~:not(template){--divide-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--divide-opacity))}.xl\:divide-red-800>:not(template)~:not(template){--divide-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--divide-opacity))}.xl\:divide-red-900>:not(template)~:not(template){--divide-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--divide-opacity))}.xl\:divide-orange-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--divide-opacity))}.xl\:divide-orange-100>:not(template)~:not(template){--divide-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--divide-opacity))}.xl\:divide-orange-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--divide-opacity))}.xl\:divide-orange-300>:not(template)~:not(template){--divide-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--divide-opacity))}.xl\:divide-orange-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--divide-opacity))}.xl\:divide-orange-500>:not(template)~:not(template){--divide-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--divide-opacity))}.xl\:divide-orange-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--divide-opacity))}.xl\:divide-orange-700>:not(template)~:not(template){--divide-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--divide-opacity))}.xl\:divide-orange-800>:not(template)~:not(template){--divide-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--divide-opacity))}.xl\:divide-orange-900>:not(template)~:not(template){--divide-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--divide-opacity))}.xl\:divide-yellow-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--divide-opacity))}.xl\:divide-yellow-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--divide-opacity))}.xl\:divide-yellow-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--divide-opacity))}.xl\:divide-yellow-300>:not(template)~:not(template){--divide-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--divide-opacity))}.xl\:divide-yellow-400>:not(template)~:not(template){--divide-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--divide-opacity))}.xl\:divide-yellow-500>:not(template)~:not(template){--divide-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--divide-opacity))}.xl\:divide-yellow-600>:not(template)~:not(template){--divide-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--divide-opacity))}.xl\:divide-yellow-700>:not(template)~:not(template){--divide-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--divide-opacity))}.xl\:divide-yellow-800>:not(template)~:not(template){--divide-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--divide-opacity))}.xl\:divide-yellow-900>:not(template)~:not(template){--divide-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--divide-opacity))}.xl\:divide-green-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--divide-opacity))}.xl\:divide-green-100>:not(template)~:not(template){--divide-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--divide-opacity))}.xl\:divide-green-200>:not(template)~:not(template){--divide-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--divide-opacity))}.xl\:divide-green-300>:not(template)~:not(template){--divide-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--divide-opacity))}.xl\:divide-green-400>:not(template)~:not(template){--divide-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--divide-opacity))}.xl\:divide-green-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--divide-opacity))}.xl\:divide-green-600>:not(template)~:not(template){--divide-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--divide-opacity))}.xl\:divide-green-700>:not(template)~:not(template){--divide-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--divide-opacity))}.xl\:divide-green-800>:not(template)~:not(template){--divide-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--divide-opacity))}.xl\:divide-green-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--divide-opacity))}.xl\:divide-teal-50>:not(template)~:not(template){--divide-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--divide-opacity))}.xl\:divide-teal-100>:not(template)~:not(template){--divide-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--divide-opacity))}.xl\:divide-teal-200>:not(template)~:not(template){--divide-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--divide-opacity))}.xl\:divide-teal-300>:not(template)~:not(template){--divide-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--divide-opacity))}.xl\:divide-teal-400>:not(template)~:not(template){--divide-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--divide-opacity))}.xl\:divide-teal-500>:not(template)~:not(template){--divide-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--divide-opacity))}.xl\:divide-teal-600>:not(template)~:not(template){--divide-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--divide-opacity))}.xl\:divide-teal-700>:not(template)~:not(template){--divide-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--divide-opacity))}.xl\:divide-teal-800>:not(template)~:not(template){--divide-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--divide-opacity))}.xl\:divide-teal-900>:not(template)~:not(template){--divide-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--divide-opacity))}.xl\:divide-blue-50>:not(template)~:not(template){--divide-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--divide-opacity))}.xl\:divide-blue-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--divide-opacity))}.xl\:divide-blue-200>:not(template)~:not(template){--divide-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--divide-opacity))}.xl\:divide-blue-300>:not(template)~:not(template){--divide-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--divide-opacity))}.xl\:divide-blue-400>:not(template)~:not(template){--divide-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--divide-opacity))}.xl\:divide-blue-500>:not(template)~:not(template){--divide-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--divide-opacity))}.xl\:divide-blue-600>:not(template)~:not(template){--divide-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--divide-opacity))}.xl\:divide-blue-700>:not(template)~:not(template){--divide-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--divide-opacity))}.xl\:divide-blue-800>:not(template)~:not(template){--divide-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--divide-opacity))}.xl\:divide-blue-900>:not(template)~:not(template){--divide-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--divide-opacity))}.xl\:divide-indigo-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--divide-opacity))}.xl\:divide-indigo-100>:not(template)~:not(template){--divide-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--divide-opacity))}.xl\:divide-indigo-200>:not(template)~:not(template){--divide-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--divide-opacity))}.xl\:divide-indigo-300>:not(template)~:not(template){--divide-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--divide-opacity))}.xl\:divide-indigo-400>:not(template)~:not(template){--divide-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--divide-opacity))}.xl\:divide-indigo-500>:not(template)~:not(template){--divide-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--divide-opacity))}.xl\:divide-indigo-600>:not(template)~:not(template){--divide-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--divide-opacity))}.xl\:divide-indigo-700>:not(template)~:not(template){--divide-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--divide-opacity))}.xl\:divide-indigo-800>:not(template)~:not(template){--divide-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--divide-opacity))}.xl\:divide-indigo-900>:not(template)~:not(template){--divide-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--divide-opacity))}.xl\:divide-purple-50>:not(template)~:not(template){--divide-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--divide-opacity))}.xl\:divide-purple-100>:not(template)~:not(template){--divide-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--divide-opacity))}.xl\:divide-purple-200>:not(template)~:not(template){--divide-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--divide-opacity))}.xl\:divide-purple-300>:not(template)~:not(template){--divide-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--divide-opacity))}.xl\:divide-purple-400>:not(template)~:not(template){--divide-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--divide-opacity))}.xl\:divide-purple-500>:not(template)~:not(template){--divide-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--divide-opacity))}.xl\:divide-purple-600>:not(template)~:not(template){--divide-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--divide-opacity))}.xl\:divide-purple-700>:not(template)~:not(template){--divide-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--divide-opacity))}.xl\:divide-purple-800>:not(template)~:not(template){--divide-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--divide-opacity))}.xl\:divide-purple-900>:not(template)~:not(template){--divide-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--divide-opacity))}.xl\:divide-pink-50>:not(template)~:not(template){--divide-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--divide-opacity))}.xl\:divide-pink-100>:not(template)~:not(template){--divide-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--divide-opacity))}.xl\:divide-pink-200>:not(template)~:not(template){--divide-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--divide-opacity))}.xl\:divide-pink-300>:not(template)~:not(template){--divide-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--divide-opacity))}.xl\:divide-pink-400>:not(template)~:not(template){--divide-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--divide-opacity))}.xl\:divide-pink-500>:not(template)~:not(template){--divide-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--divide-opacity))}.xl\:divide-pink-600>:not(template)~:not(template){--divide-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--divide-opacity))}.xl\:divide-pink-700>:not(template)~:not(template){--divide-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--divide-opacity))}.xl\:divide-pink-800>:not(template)~:not(template){--divide-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--divide-opacity))}.xl\:divide-pink-900>:not(template)~:not(template){--divide-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--divide-opacity))}.xl\:divide-opacity-0>:not(template)~:not(template){--divide-opacity:0}.xl\:divide-opacity-25>:not(template)~:not(template){--divide-opacity:0.25}.xl\:divide-opacity-50>:not(template)~:not(template){--divide-opacity:0.5}.xl\:divide-opacity-75>:not(template)~:not(template){--divide-opacity:0.75}.xl\:divide-opacity-100>:not(template)~:not(template){--divide-opacity:1}.xl\:sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.xl\:not-sr-only{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.xl\:focus\:sr-only:focus{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.xl\:focus\:not-sr-only:focus{position:static;width:auto;height:auto;padding:0;margin:0;overflow:visible;clip:auto;white-space:normal}.xl\:appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.xl\:bg-fixed{background-attachment:fixed}.xl\:bg-local{background-attachment:local}.xl\:bg-scroll{background-attachment:scroll}.xl\:bg-transparent{background-color:transparent}.xl\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.xl\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.xl\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.xl\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.xl\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.xl\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.xl\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.xl\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.xl\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.xl\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.xl\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.xl\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.xl\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.xl\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.xl\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.xl\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.xl\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.xl\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.xl\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.xl\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.xl\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.xl\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.xl\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.xl\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.xl\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.xl\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.xl\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.xl\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.xl\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.xl\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.xl\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.xl\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.xl\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.xl\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.xl\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.xl\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.xl\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.xl\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.xl\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.xl\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.xl\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.xl\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.xl\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.xl\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.xl\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.xl\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.xl\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.xl\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.xl\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.xl\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.xl\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.xl\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.xl\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.xl\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.xl\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.xl\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.xl\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.xl\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.xl\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.xl\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.xl\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.xl\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.xl\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.xl\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.xl\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.xl\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.xl\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.xl\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.xl\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.xl\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.xl\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.xl\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.xl\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.xl\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.xl\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.xl\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.xl\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.xl\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.xl\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.xl\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.xl\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.xl\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.xl\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.xl\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.xl\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.xl\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.xl\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.xl\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.xl\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.xl\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.xl\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.xl\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.xl\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.xl\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.xl\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.xl\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.xl\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.xl\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.xl\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.xl\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.xl\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.xl\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.xl\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.xl\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.xl\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.xl\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.xl\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.xl\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.xl\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.xl\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.xl\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.xl\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-transparent{background-color:transparent}.group:hover .xl\:group-hover\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:hover .xl\:group-hover\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-transparent{background-color:transparent}.group:focus .xl\:group-focus\:bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-600{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-700{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-800{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-gray-900{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-50{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-100{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-200{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-300{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-400{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-500{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-600{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-700{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-800{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-cool-gray-900{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-200{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-300{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-400{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-500{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-800{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-red-900{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-50{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-200{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-300{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-400{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-700{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-800{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-orange-900{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-50{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-200{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-300{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-400{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-500{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-600{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-700{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-800{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-yellow-900{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-50{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-200{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-400{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-800{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-green-900{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-200{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-300{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-400{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-700{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-800{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-teal-900{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-200{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-400{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-700{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-800{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-blue-900{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-50{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-100{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-300{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-400{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-indigo-900{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-50{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-100{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-200{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-300{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-400{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-500{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-700{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-800{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-purple-900{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-50{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-100{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-300{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-400{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-500{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-600{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-700{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-800{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.group:focus .xl\:group-focus\:bg-pink-900{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.xl\:hover\:bg-transparent:hover{background-color:transparent}.xl\:hover\:bg-white:hover{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.xl\:hover\:bg-black:hover{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.xl\:hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.xl\:hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.xl\:hover\:bg-gray-200:hover{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.xl\:hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.xl\:hover\:bg-gray-400:hover{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.xl\:hover\:bg-gray-500:hover{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.xl\:hover\:bg-gray-600:hover{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.xl\:hover\:bg-gray-700:hover{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.xl\:hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.xl\:hover\:bg-gray-900:hover{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-50:hover{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-100:hover{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-200:hover{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-300:hover{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-400:hover{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-500:hover{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-600:hover{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-700:hover{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-800:hover{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.xl\:hover\:bg-cool-gray-900:hover{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.xl\:hover\:bg-red-50:hover{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.xl\:hover\:bg-red-100:hover{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.xl\:hover\:bg-red-200:hover{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.xl\:hover\:bg-red-300:hover{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.xl\:hover\:bg-red-400:hover{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.xl\:hover\:bg-red-500:hover{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.xl\:hover\:bg-red-600:hover{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.xl\:hover\:bg-red-700:hover{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.xl\:hover\:bg-red-800:hover{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.xl\:hover\:bg-red-900:hover{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.xl\:hover\:bg-orange-50:hover{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.xl\:hover\:bg-orange-100:hover{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.xl\:hover\:bg-orange-200:hover{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.xl\:hover\:bg-orange-300:hover{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.xl\:hover\:bg-orange-400:hover{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.xl\:hover\:bg-orange-500:hover{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.xl\:hover\:bg-orange-600:hover{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.xl\:hover\:bg-orange-700:hover{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.xl\:hover\:bg-orange-800:hover{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.xl\:hover\:bg-orange-900:hover{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.xl\:hover\:bg-yellow-50:hover{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.xl\:hover\:bg-yellow-100:hover{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.xl\:hover\:bg-yellow-200:hover{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.xl\:hover\:bg-yellow-300:hover{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.xl\:hover\:bg-yellow-400:hover{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.xl\:hover\:bg-yellow-500:hover{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.xl\:hover\:bg-yellow-600:hover{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.xl\:hover\:bg-yellow-700:hover{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.xl\:hover\:bg-yellow-800:hover{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.xl\:hover\:bg-yellow-900:hover{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.xl\:hover\:bg-green-50:hover{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.xl\:hover\:bg-green-100:hover{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.xl\:hover\:bg-green-200:hover{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.xl\:hover\:bg-green-300:hover{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.xl\:hover\:bg-green-400:hover{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.xl\:hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.xl\:hover\:bg-green-600:hover{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.xl\:hover\:bg-green-700:hover{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.xl\:hover\:bg-green-800:hover{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.xl\:hover\:bg-green-900:hover{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.xl\:hover\:bg-teal-50:hover{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.xl\:hover\:bg-teal-100:hover{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.xl\:hover\:bg-teal-200:hover{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.xl\:hover\:bg-teal-300:hover{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.xl\:hover\:bg-teal-400:hover{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.xl\:hover\:bg-teal-500:hover{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.xl\:hover\:bg-teal-600:hover{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.xl\:hover\:bg-teal-700:hover{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.xl\:hover\:bg-teal-800:hover{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.xl\:hover\:bg-teal-900:hover{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.xl\:hover\:bg-blue-50:hover{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.xl\:hover\:bg-blue-100:hover{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.xl\:hover\:bg-blue-200:hover{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.xl\:hover\:bg-blue-300:hover{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.xl\:hover\:bg-blue-400:hover{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.xl\:hover\:bg-blue-500:hover{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.xl\:hover\:bg-blue-600:hover{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.xl\:hover\:bg-blue-700:hover{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.xl\:hover\:bg-blue-800:hover{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.xl\:hover\:bg-blue-900:hover{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.xl\:hover\:bg-indigo-50:hover{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.xl\:hover\:bg-indigo-100:hover{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.xl\:hover\:bg-indigo-200:hover{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.xl\:hover\:bg-indigo-300:hover{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.xl\:hover\:bg-indigo-400:hover{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.xl\:hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.xl\:hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.xl\:hover\:bg-indigo-700:hover{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.xl\:hover\:bg-indigo-800:hover{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.xl\:hover\:bg-indigo-900:hover{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.xl\:hover\:bg-purple-50:hover{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.xl\:hover\:bg-purple-100:hover{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.xl\:hover\:bg-purple-200:hover{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.xl\:hover\:bg-purple-300:hover{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.xl\:hover\:bg-purple-400:hover{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.xl\:hover\:bg-purple-500:hover{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.xl\:hover\:bg-purple-600:hover{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.xl\:hover\:bg-purple-700:hover{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.xl\:hover\:bg-purple-800:hover{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.xl\:hover\:bg-purple-900:hover{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.xl\:hover\:bg-pink-50:hover{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.xl\:hover\:bg-pink-100:hover{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.xl\:hover\:bg-pink-200:hover{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.xl\:hover\:bg-pink-300:hover{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.xl\:hover\:bg-pink-400:hover{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.xl\:hover\:bg-pink-500:hover{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.xl\:hover\:bg-pink-600:hover{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.xl\:hover\:bg-pink-700:hover{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.xl\:hover\:bg-pink-800:hover{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.xl\:hover\:bg-pink-900:hover{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.xl\:focus\:bg-transparent:focus{background-color:transparent}.xl\:focus\:bg-white:focus{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.xl\:focus\:bg-black:focus{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.xl\:focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.xl\:focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.xl\:focus\:bg-gray-200:focus{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.xl\:focus\:bg-gray-300:focus{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.xl\:focus\:bg-gray-400:focus{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.xl\:focus\:bg-gray-500:focus{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.xl\:focus\:bg-gray-600:focus{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.xl\:focus\:bg-gray-700:focus{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.xl\:focus\:bg-gray-800:focus{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.xl\:focus\:bg-gray-900:focus{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-50:focus{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-100:focus{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-200:focus{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-300:focus{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-400:focus{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-500:focus{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-600:focus{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-700:focus{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-800:focus{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.xl\:focus\:bg-cool-gray-900:focus{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.xl\:focus\:bg-red-50:focus{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.xl\:focus\:bg-red-100:focus{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.xl\:focus\:bg-red-200:focus{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.xl\:focus\:bg-red-300:focus{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.xl\:focus\:bg-red-400:focus{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.xl\:focus\:bg-red-500:focus{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.xl\:focus\:bg-red-600:focus{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.xl\:focus\:bg-red-700:focus{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.xl\:focus\:bg-red-800:focus{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.xl\:focus\:bg-red-900:focus{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.xl\:focus\:bg-orange-50:focus{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.xl\:focus\:bg-orange-100:focus{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.xl\:focus\:bg-orange-200:focus{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.xl\:focus\:bg-orange-300:focus{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.xl\:focus\:bg-orange-400:focus{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.xl\:focus\:bg-orange-500:focus{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.xl\:focus\:bg-orange-600:focus{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.xl\:focus\:bg-orange-700:focus{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.xl\:focus\:bg-orange-800:focus{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.xl\:focus\:bg-orange-900:focus{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.xl\:focus\:bg-yellow-50:focus{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.xl\:focus\:bg-yellow-100:focus{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.xl\:focus\:bg-yellow-200:focus{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.xl\:focus\:bg-yellow-300:focus{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.xl\:focus\:bg-yellow-400:focus{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.xl\:focus\:bg-yellow-500:focus{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.xl\:focus\:bg-yellow-600:focus{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.xl\:focus\:bg-yellow-700:focus{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.xl\:focus\:bg-yellow-800:focus{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.xl\:focus\:bg-yellow-900:focus{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.xl\:focus\:bg-green-50:focus{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.xl\:focus\:bg-green-100:focus{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.xl\:focus\:bg-green-200:focus{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.xl\:focus\:bg-green-300:focus{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.xl\:focus\:bg-green-400:focus{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.xl\:focus\:bg-green-500:focus{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.xl\:focus\:bg-green-600:focus{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.xl\:focus\:bg-green-700:focus{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.xl\:focus\:bg-green-800:focus{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.xl\:focus\:bg-green-900:focus{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.xl\:focus\:bg-teal-50:focus{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.xl\:focus\:bg-teal-100:focus{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.xl\:focus\:bg-teal-200:focus{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.xl\:focus\:bg-teal-300:focus{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.xl\:focus\:bg-teal-400:focus{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.xl\:focus\:bg-teal-500:focus{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.xl\:focus\:bg-teal-600:focus{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.xl\:focus\:bg-teal-700:focus{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.xl\:focus\:bg-teal-800:focus{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.xl\:focus\:bg-teal-900:focus{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.xl\:focus\:bg-blue-50:focus{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.xl\:focus\:bg-blue-100:focus{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.xl\:focus\:bg-blue-200:focus{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.xl\:focus\:bg-blue-300:focus{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.xl\:focus\:bg-blue-400:focus{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.xl\:focus\:bg-blue-500:focus{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.xl\:focus\:bg-blue-600:focus{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.xl\:focus\:bg-blue-700:focus{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.xl\:focus\:bg-blue-800:focus{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.xl\:focus\:bg-blue-900:focus{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.xl\:focus\:bg-indigo-50:focus{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.xl\:focus\:bg-indigo-100:focus{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.xl\:focus\:bg-indigo-200:focus{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.xl\:focus\:bg-indigo-300:focus{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.xl\:focus\:bg-indigo-400:focus{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.xl\:focus\:bg-indigo-500:focus{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.xl\:focus\:bg-indigo-600:focus{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.xl\:focus\:bg-indigo-700:focus{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.xl\:focus\:bg-indigo-800:focus{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.xl\:focus\:bg-indigo-900:focus{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.xl\:focus\:bg-purple-50:focus{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.xl\:focus\:bg-purple-100:focus{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.xl\:focus\:bg-purple-200:focus{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.xl\:focus\:bg-purple-300:focus{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.xl\:focus\:bg-purple-400:focus{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.xl\:focus\:bg-purple-500:focus{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.xl\:focus\:bg-purple-600:focus{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.xl\:focus\:bg-purple-700:focus{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.xl\:focus\:bg-purple-800:focus{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.xl\:focus\:bg-purple-900:focus{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.xl\:focus\:bg-pink-50:focus{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.xl\:focus\:bg-pink-100:focus{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.xl\:focus\:bg-pink-200:focus{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.xl\:focus\:bg-pink-300:focus{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.xl\:focus\:bg-pink-400:focus{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.xl\:focus\:bg-pink-500:focus{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.xl\:focus\:bg-pink-600:focus{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.xl\:focus\:bg-pink-700:focus{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.xl\:focus\:bg-pink-800:focus{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.xl\:focus\:bg-pink-900:focus{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.xl\:active\:bg-transparent:active{background-color:transparent}.xl\:active\:bg-white:active{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.xl\:active\:bg-black:active{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.xl\:active\:bg-gray-50:active{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.xl\:active\:bg-gray-100:active{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.xl\:active\:bg-gray-200:active{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.xl\:active\:bg-gray-300:active{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.xl\:active\:bg-gray-400:active{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.xl\:active\:bg-gray-500:active{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.xl\:active\:bg-gray-600:active{--bg-opacity:1;background-color:#4b5563;background-color:rgba(75,85,99,var(--bg-opacity))}.xl\:active\:bg-gray-700:active{--bg-opacity:1;background-color:#374151;background-color:rgba(55,65,81,var(--bg-opacity))}.xl\:active\:bg-gray-800:active{--bg-opacity:1;background-color:#252f3f;background-color:rgba(37,47,63,var(--bg-opacity))}.xl\:active\:bg-gray-900:active{--bg-opacity:1;background-color:#161e2e;background-color:rgba(22,30,46,var(--bg-opacity))}.xl\:active\:bg-cool-gray-50:active{--bg-opacity:1;background-color:#f8fafc;background-color:rgba(248,250,252,var(--bg-opacity))}.xl\:active\:bg-cool-gray-100:active{--bg-opacity:1;background-color:#f1f5f9;background-color:rgba(241,245,249,var(--bg-opacity))}.xl\:active\:bg-cool-gray-200:active{--bg-opacity:1;background-color:#e2e8f0;background-color:rgba(226,232,240,var(--bg-opacity))}.xl\:active\:bg-cool-gray-300:active{--bg-opacity:1;background-color:#cfd8e3;background-color:rgba(207,216,227,var(--bg-opacity))}.xl\:active\:bg-cool-gray-400:active{--bg-opacity:1;background-color:#97a6ba;background-color:rgba(151,166,186,var(--bg-opacity))}.xl\:active\:bg-cool-gray-500:active{--bg-opacity:1;background-color:#64748b;background-color:rgba(100,116,139,var(--bg-opacity))}.xl\:active\:bg-cool-gray-600:active{--bg-opacity:1;background-color:#475569;background-color:rgba(71,85,105,var(--bg-opacity))}.xl\:active\:bg-cool-gray-700:active{--bg-opacity:1;background-color:#364152;background-color:rgba(54,65,82,var(--bg-opacity))}.xl\:active\:bg-cool-gray-800:active{--bg-opacity:1;background-color:#27303f;background-color:rgba(39,48,63,var(--bg-opacity))}.xl\:active\:bg-cool-gray-900:active{--bg-opacity:1;background-color:#1a202e;background-color:rgba(26,32,46,var(--bg-opacity))}.xl\:active\:bg-red-50:active{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.xl\:active\:bg-red-100:active{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.xl\:active\:bg-red-200:active{--bg-opacity:1;background-color:#fbd5d5;background-color:rgba(251,213,213,var(--bg-opacity))}.xl\:active\:bg-red-300:active{--bg-opacity:1;background-color:#f8b4b4;background-color:rgba(248,180,180,var(--bg-opacity))}.xl\:active\:bg-red-400:active{--bg-opacity:1;background-color:#f98080;background-color:rgba(249,128,128,var(--bg-opacity))}.xl\:active\:bg-red-500:active{--bg-opacity:1;background-color:#f05252;background-color:rgba(240,82,82,var(--bg-opacity))}.xl\:active\:bg-red-600:active{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.xl\:active\:bg-red-700:active{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.xl\:active\:bg-red-800:active{--bg-opacity:1;background-color:#9b1c1c;background-color:rgba(155,28,28,var(--bg-opacity))}.xl\:active\:bg-red-900:active{--bg-opacity:1;background-color:#771d1d;background-color:rgba(119,29,29,var(--bg-opacity))}.xl\:active\:bg-orange-50:active{--bg-opacity:1;background-color:#fff8f1;background-color:rgba(255,248,241,var(--bg-opacity))}.xl\:active\:bg-orange-100:active{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.xl\:active\:bg-orange-200:active{--bg-opacity:1;background-color:#fcd9bd;background-color:rgba(252,217,189,var(--bg-opacity))}.xl\:active\:bg-orange-300:active{--bg-opacity:1;background-color:#fdba8c;background-color:rgba(253,186,140,var(--bg-opacity))}.xl\:active\:bg-orange-400:active{--bg-opacity:1;background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.xl\:active\:bg-orange-500:active{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.xl\:active\:bg-orange-600:active{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.xl\:active\:bg-orange-700:active{--bg-opacity:1;background-color:#b43403;background-color:rgba(180,52,3,var(--bg-opacity))}.xl\:active\:bg-orange-800:active{--bg-opacity:1;background-color:#8a2c0d;background-color:rgba(138,44,13,var(--bg-opacity))}.xl\:active\:bg-orange-900:active{--bg-opacity:1;background-color:#73230d;background-color:rgba(115,35,13,var(--bg-opacity))}.xl\:active\:bg-yellow-50:active{--bg-opacity:1;background-color:#fdfdea;background-color:rgba(253,253,234,var(--bg-opacity))}.xl\:active\:bg-yellow-100:active{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.xl\:active\:bg-yellow-200:active{--bg-opacity:1;background-color:#fce96a;background-color:rgba(252,233,106,var(--bg-opacity))}.xl\:active\:bg-yellow-300:active{--bg-opacity:1;background-color:#faca15;background-color:rgba(250,202,21,var(--bg-opacity))}.xl\:active\:bg-yellow-400:active{--bg-opacity:1;background-color:#e3a008;background-color:rgba(227,160,8,var(--bg-opacity))}.xl\:active\:bg-yellow-500:active{--bg-opacity:1;background-color:#c27803;background-color:rgba(194,120,3,var(--bg-opacity))}.xl\:active\:bg-yellow-600:active{--bg-opacity:1;background-color:#9f580a;background-color:rgba(159,88,10,var(--bg-opacity))}.xl\:active\:bg-yellow-700:active{--bg-opacity:1;background-color:#8e4b10;background-color:rgba(142,75,16,var(--bg-opacity))}.xl\:active\:bg-yellow-800:active{--bg-opacity:1;background-color:#723b13;background-color:rgba(114,59,19,var(--bg-opacity))}.xl\:active\:bg-yellow-900:active{--bg-opacity:1;background-color:#633112;background-color:rgba(99,49,18,var(--bg-opacity))}.xl\:active\:bg-green-50:active{--bg-opacity:1;background-color:#f3faf7;background-color:rgba(243,250,247,var(--bg-opacity))}.xl\:active\:bg-green-100:active{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.xl\:active\:bg-green-200:active{--bg-opacity:1;background-color:#bcf0da;background-color:rgba(188,240,218,var(--bg-opacity))}.xl\:active\:bg-green-300:active{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.xl\:active\:bg-green-400:active{--bg-opacity:1;background-color:#31c48d;background-color:rgba(49,196,141,var(--bg-opacity))}.xl\:active\:bg-green-500:active{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.xl\:active\:bg-green-600:active{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.xl\:active\:bg-green-700:active{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.xl\:active\:bg-green-800:active{--bg-opacity:1;background-color:#03543f;background-color:rgba(3,84,63,var(--bg-opacity))}.xl\:active\:bg-green-900:active{--bg-opacity:1;background-color:#014737;background-color:rgba(1,71,55,var(--bg-opacity))}.xl\:active\:bg-teal-50:active{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.xl\:active\:bg-teal-100:active{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.xl\:active\:bg-teal-200:active{--bg-opacity:1;background-color:#afecef;background-color:rgba(175,236,239,var(--bg-opacity))}.xl\:active\:bg-teal-300:active{--bg-opacity:1;background-color:#7edce2;background-color:rgba(126,220,226,var(--bg-opacity))}.xl\:active\:bg-teal-400:active{--bg-opacity:1;background-color:#16bdca;background-color:rgba(22,189,202,var(--bg-opacity))}.xl\:active\:bg-teal-500:active{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.xl\:active\:bg-teal-600:active{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.xl\:active\:bg-teal-700:active{--bg-opacity:1;background-color:#036672;background-color:rgba(3,102,114,var(--bg-opacity))}.xl\:active\:bg-teal-800:active{--bg-opacity:1;background-color:#05505c;background-color:rgba(5,80,92,var(--bg-opacity))}.xl\:active\:bg-teal-900:active{--bg-opacity:1;background-color:#014451;background-color:rgba(1,68,81,var(--bg-opacity))}.xl\:active\:bg-blue-50:active{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.xl\:active\:bg-blue-100:active{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.xl\:active\:bg-blue-200:active{--bg-opacity:1;background-color:#c3ddfd;background-color:rgba(195,221,253,var(--bg-opacity))}.xl\:active\:bg-blue-300:active{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.xl\:active\:bg-blue-400:active{--bg-opacity:1;background-color:#76a9fa;background-color:rgba(118,169,250,var(--bg-opacity))}.xl\:active\:bg-blue-500:active{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.xl\:active\:bg-blue-600:active{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.xl\:active\:bg-blue-700:active{--bg-opacity:1;background-color:#1a56db;background-color:rgba(26,86,219,var(--bg-opacity))}.xl\:active\:bg-blue-800:active{--bg-opacity:1;background-color:#1e429f;background-color:rgba(30,66,159,var(--bg-opacity))}.xl\:active\:bg-blue-900:active{--bg-opacity:1;background-color:#233876;background-color:rgba(35,56,118,var(--bg-opacity))}.xl\:active\:bg-indigo-50:active{--bg-opacity:1;background-color:#f0f5ff;background-color:rgba(240,245,255,var(--bg-opacity))}.xl\:active\:bg-indigo-100:active{--bg-opacity:1;background-color:#e5edff;background-color:rgba(229,237,255,var(--bg-opacity))}.xl\:active\:bg-indigo-200:active{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.xl\:active\:bg-indigo-300:active{--bg-opacity:1;background-color:#b4c6fc;background-color:rgba(180,198,252,var(--bg-opacity))}.xl\:active\:bg-indigo-400:active{--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.xl\:active\:bg-indigo-500:active{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.xl\:active\:bg-indigo-600:active{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.xl\:active\:bg-indigo-700:active{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.xl\:active\:bg-indigo-800:active{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.xl\:active\:bg-indigo-900:active{--bg-opacity:1;background-color:#362f78;background-color:rgba(54,47,120,var(--bg-opacity))}.xl\:active\:bg-purple-50:active{--bg-opacity:1;background-color:#f6f5ff;background-color:rgba(246,245,255,var(--bg-opacity))}.xl\:active\:bg-purple-100:active{--bg-opacity:1;background-color:#edebfe;background-color:rgba(237,235,254,var(--bg-opacity))}.xl\:active\:bg-purple-200:active{--bg-opacity:1;background-color:#dcd7fe;background-color:rgba(220,215,254,var(--bg-opacity))}.xl\:active\:bg-purple-300:active{--bg-opacity:1;background-color:#cabffd;background-color:rgba(202,191,253,var(--bg-opacity))}.xl\:active\:bg-purple-400:active{--bg-opacity:1;background-color:#ac94fa;background-color:rgba(172,148,250,var(--bg-opacity))}.xl\:active\:bg-purple-500:active{--bg-opacity:1;background-color:#9061f9;background-color:rgba(144,97,249,var(--bg-opacity))}.xl\:active\:bg-purple-600:active{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.xl\:active\:bg-purple-700:active{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.xl\:active\:bg-purple-800:active{--bg-opacity:1;background-color:#5521b5;background-color:rgba(85,33,181,var(--bg-opacity))}.xl\:active\:bg-purple-900:active{--bg-opacity:1;background-color:#4a1d96;background-color:rgba(74,29,150,var(--bg-opacity))}.xl\:active\:bg-pink-50:active{--bg-opacity:1;background-color:#fdf2f8;background-color:rgba(253,242,248,var(--bg-opacity))}.xl\:active\:bg-pink-100:active{--bg-opacity:1;background-color:#fce8f3;background-color:rgba(252,232,243,var(--bg-opacity))}.xl\:active\:bg-pink-200:active{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.xl\:active\:bg-pink-300:active{--bg-opacity:1;background-color:#f8b4d9;background-color:rgba(248,180,217,var(--bg-opacity))}.xl\:active\:bg-pink-400:active{--bg-opacity:1;background-color:#f17eb8;background-color:rgba(241,126,184,var(--bg-opacity))}.xl\:active\:bg-pink-500:active{--bg-opacity:1;background-color:#e74694;background-color:rgba(231,70,148,var(--bg-opacity))}.xl\:active\:bg-pink-600:active{--bg-opacity:1;background-color:#d61f69;background-color:rgba(214,31,105,var(--bg-opacity))}.xl\:active\:bg-pink-700:active{--bg-opacity:1;background-color:#bf125d;background-color:rgba(191,18,93,var(--bg-opacity))}.xl\:active\:bg-pink-800:active{--bg-opacity:1;background-color:#99154b;background-color:rgba(153,21,75,var(--bg-opacity))}.xl\:active\:bg-pink-900:active{--bg-opacity:1;background-color:#751a3d;background-color:rgba(117,26,61,var(--bg-opacity))}.xl\:bg-opacity-0{--bg-opacity:0}.xl\:bg-opacity-25{--bg-opacity:0.25}.xl\:bg-opacity-50{--bg-opacity:0.5}.xl\:bg-opacity-75{--bg-opacity:0.75}.xl\:bg-opacity-100{--bg-opacity:1}.xl\:hover\:bg-opacity-0:hover{--bg-opacity:0}.xl\:hover\:bg-opacity-25:hover{--bg-opacity:0.25}.xl\:hover\:bg-opacity-50:hover{--bg-opacity:0.5}.xl\:hover\:bg-opacity-75:hover{--bg-opacity:0.75}.xl\:hover\:bg-opacity-100:hover{--bg-opacity:1}.xl\:focus\:bg-opacity-0:focus{--bg-opacity:0}.xl\:focus\:bg-opacity-25:focus{--bg-opacity:0.25}.xl\:focus\:bg-opacity-50:focus{--bg-opacity:0.5}.xl\:focus\:bg-opacity-75:focus{--bg-opacity:0.75}.xl\:focus\:bg-opacity-100:focus{--bg-opacity:1}.xl\:bg-bottom{background-position:bottom}.xl\:bg-center{background-position:center}.xl\:bg-left{background-position:left}.xl\:bg-left-bottom{background-position:left bottom}.xl\:bg-left-top{background-position:left top}.xl\:bg-right{background-position:right}.xl\:bg-right-bottom{background-position:right bottom}.xl\:bg-right-top{background-position:right top}.xl\:bg-top{background-position:top}.xl\:bg-repeat{background-repeat:repeat}.xl\:bg-no-repeat{background-repeat:no-repeat}.xl\:bg-repeat-x{background-repeat:repeat-x}.xl\:bg-repeat-y{background-repeat:repeat-y}.xl\:bg-repeat-round{background-repeat:round}.xl\:bg-repeat-space{background-repeat:space}.xl\:bg-auto{background-size:auto}.xl\:bg-cover{background-size:cover}.xl\:bg-contain{background-size:contain}.xl\:border-collapse{border-collapse:collapse}.xl\:border-separate{border-collapse:separate}.xl\:border-transparent{border-color:transparent}.xl\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.xl\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.xl\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.xl\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.xl\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.xl\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.xl\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.xl\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.xl\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.xl\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.xl\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.xl\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.xl\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.xl\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.xl\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.xl\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.xl\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.xl\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.xl\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.xl\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.xl\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.xl\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.xl\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.xl\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.xl\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.xl\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.xl\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.xl\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.xl\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.xl\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.xl\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.xl\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.xl\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.xl\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.xl\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.xl\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.xl\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.xl\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.xl\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.xl\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.xl\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.xl\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.xl\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.xl\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.xl\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.xl\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.xl\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.xl\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.xl\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.xl\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.xl\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.xl\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.xl\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.xl\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.xl\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.xl\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.xl\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.xl\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.xl\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.xl\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.xl\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.xl\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.xl\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.xl\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.xl\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.xl\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.xl\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.xl\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.xl\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.xl\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.xl\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.xl\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.xl\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.xl\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.xl\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.xl\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.xl\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.xl\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.xl\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.xl\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.xl\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.xl\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.xl\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.xl\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.xl\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.xl\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.xl\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.xl\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.xl\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.xl\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.xl\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.xl\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.xl\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.xl\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.xl\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.xl\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.xl\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.xl\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.xl\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.xl\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.xl\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.xl\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.xl\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.xl\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.xl\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.xl\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.xl\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.xl\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.xl\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.xl\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.xl\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.xl\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:hover .xl\:group-hover\:border-transparent{border-color:transparent}.group:hover .xl\:group-hover\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:hover .xl\:group-hover\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:hover .xl\:group-hover\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:hover .xl\:group-hover\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:hover .xl\:group-hover\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:hover .xl\:group-hover\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:hover .xl\:group-hover\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:hover .xl\:group-hover\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:hover .xl\:group-hover\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:hover .xl\:group-hover\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:hover .xl\:group-hover\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:hover .xl\:group-hover\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:hover .xl\:group-hover\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.group:focus .xl\:group-focus\:border-transparent{border-color:transparent}.group:focus .xl\:group-focus\:border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.group:focus .xl\:group-focus\:border-black{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-50{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-500{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-600{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-700{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-800{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.group:focus .xl\:group-focus\:border-gray-900{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-50{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-100{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-200{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-300{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-400{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-500{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-600{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-700{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-800{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.group:focus .xl\:group-focus\:border-cool-gray-900{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-50{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-100{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-200{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-300{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-400{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-500{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-700{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-800{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.group:focus .xl\:group-focus\:border-red-900{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-50{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-100{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-200{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-300{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-400{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-500{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-600{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-700{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-800{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.group:focus .xl\:group-focus\:border-orange-900{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-50{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-100{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-200{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-300{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-400{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-500{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-600{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-700{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-800{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.group:focus .xl\:group-focus\:border-yellow-900{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-50{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-100{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-200{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-300{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-400{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-500{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-700{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-800{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.group:focus .xl\:group-focus\:border-green-900{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-50{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-100{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-200{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-300{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-400{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-500{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-600{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-700{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-800{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.group:focus .xl\:group-focus\:border-teal-900{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-50{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-100{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-200{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-300{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-400{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-500{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-600{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-700{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-800{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.group:focus .xl\:group-focus\:border-blue-900{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-50{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-100{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-200{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-400{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-700{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-800{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.group:focus .xl\:group-focus\:border-indigo-900{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-50{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-100{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-200{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-300{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-400{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-500{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-700{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-800{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.group:focus .xl\:group-focus\:border-purple-900{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-50{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-100{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-200{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-300{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-400{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-500{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-600{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-700{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-800{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.group:focus .xl\:group-focus\:border-pink-900{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.xl\:hover\:border-transparent:hover{border-color:transparent}.xl\:hover\:border-white:hover{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.xl\:hover\:border-black:hover{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.xl\:hover\:border-gray-50:hover{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.xl\:hover\:border-gray-100:hover{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.xl\:hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.xl\:hover\:border-gray-300:hover{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.xl\:hover\:border-gray-400:hover{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.xl\:hover\:border-gray-500:hover{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.xl\:hover\:border-gray-600:hover{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.xl\:hover\:border-gray-700:hover{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.xl\:hover\:border-gray-800:hover{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.xl\:hover\:border-gray-900:hover{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.xl\:hover\:border-cool-gray-50:hover{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.xl\:hover\:border-cool-gray-100:hover{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.xl\:hover\:border-cool-gray-200:hover{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.xl\:hover\:border-cool-gray-300:hover{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.xl\:hover\:border-cool-gray-400:hover{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.xl\:hover\:border-cool-gray-500:hover{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.xl\:hover\:border-cool-gray-600:hover{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.xl\:hover\:border-cool-gray-700:hover{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.xl\:hover\:border-cool-gray-800:hover{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.xl\:hover\:border-cool-gray-900:hover{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.xl\:hover\:border-red-50:hover{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.xl\:hover\:border-red-100:hover{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.xl\:hover\:border-red-200:hover{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.xl\:hover\:border-red-300:hover{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.xl\:hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.xl\:hover\:border-red-500:hover{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.xl\:hover\:border-red-600:hover{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.xl\:hover\:border-red-700:hover{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.xl\:hover\:border-red-800:hover{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.xl\:hover\:border-red-900:hover{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.xl\:hover\:border-orange-50:hover{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.xl\:hover\:border-orange-100:hover{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.xl\:hover\:border-orange-200:hover{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.xl\:hover\:border-orange-300:hover{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.xl\:hover\:border-orange-400:hover{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.xl\:hover\:border-orange-500:hover{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.xl\:hover\:border-orange-600:hover{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.xl\:hover\:border-orange-700:hover{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.xl\:hover\:border-orange-800:hover{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.xl\:hover\:border-orange-900:hover{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.xl\:hover\:border-yellow-50:hover{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.xl\:hover\:border-yellow-100:hover{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.xl\:hover\:border-yellow-200:hover{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.xl\:hover\:border-yellow-300:hover{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.xl\:hover\:border-yellow-400:hover{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.xl\:hover\:border-yellow-500:hover{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.xl\:hover\:border-yellow-600:hover{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.xl\:hover\:border-yellow-700:hover{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.xl\:hover\:border-yellow-800:hover{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.xl\:hover\:border-yellow-900:hover{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.xl\:hover\:border-green-50:hover{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.xl\:hover\:border-green-100:hover{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.xl\:hover\:border-green-200:hover{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.xl\:hover\:border-green-300:hover{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.xl\:hover\:border-green-400:hover{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.xl\:hover\:border-green-500:hover{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.xl\:hover\:border-green-600:hover{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.xl\:hover\:border-green-700:hover{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.xl\:hover\:border-green-800:hover{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.xl\:hover\:border-green-900:hover{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.xl\:hover\:border-teal-50:hover{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.xl\:hover\:border-teal-100:hover{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.xl\:hover\:border-teal-200:hover{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.xl\:hover\:border-teal-300:hover{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.xl\:hover\:border-teal-400:hover{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.xl\:hover\:border-teal-500:hover{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.xl\:hover\:border-teal-600:hover{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.xl\:hover\:border-teal-700:hover{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.xl\:hover\:border-teal-800:hover{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.xl\:hover\:border-teal-900:hover{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.xl\:hover\:border-blue-50:hover{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.xl\:hover\:border-blue-100:hover{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.xl\:hover\:border-blue-200:hover{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.xl\:hover\:border-blue-300:hover{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.xl\:hover\:border-blue-400:hover{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.xl\:hover\:border-blue-500:hover{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.xl\:hover\:border-blue-600:hover{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.xl\:hover\:border-blue-700:hover{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.xl\:hover\:border-blue-800:hover{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.xl\:hover\:border-blue-900:hover{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.xl\:hover\:border-indigo-50:hover{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.xl\:hover\:border-indigo-100:hover{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.xl\:hover\:border-indigo-200:hover{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.xl\:hover\:border-indigo-300:hover{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.xl\:hover\:border-indigo-400:hover{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.xl\:hover\:border-indigo-500:hover{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.xl\:hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.xl\:hover\:border-indigo-700:hover{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.xl\:hover\:border-indigo-800:hover{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.xl\:hover\:border-indigo-900:hover{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.xl\:hover\:border-purple-50:hover{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.xl\:hover\:border-purple-100:hover{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.xl\:hover\:border-purple-200:hover{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.xl\:hover\:border-purple-300:hover{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.xl\:hover\:border-purple-400:hover{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.xl\:hover\:border-purple-500:hover{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.xl\:hover\:border-purple-600:hover{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.xl\:hover\:border-purple-700:hover{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.xl\:hover\:border-purple-800:hover{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.xl\:hover\:border-purple-900:hover{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.xl\:hover\:border-pink-50:hover{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.xl\:hover\:border-pink-100:hover{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.xl\:hover\:border-pink-200:hover{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.xl\:hover\:border-pink-300:hover{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.xl\:hover\:border-pink-400:hover{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.xl\:hover\:border-pink-500:hover{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.xl\:hover\:border-pink-600:hover{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.xl\:hover\:border-pink-700:hover{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.xl\:hover\:border-pink-800:hover{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.xl\:hover\:border-pink-900:hover{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.xl\:focus\:border-transparent:focus{border-color:transparent}.xl\:focus\:border-white:focus{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.xl\:focus\:border-black:focus{--border-opacity:1;border-color:#000;border-color:rgba(0,0,0,var(--border-opacity))}.xl\:focus\:border-gray-50:focus{--border-opacity:1;border-color:#f9fafb;border-color:rgba(249,250,251,var(--border-opacity))}.xl\:focus\:border-gray-100:focus{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.xl\:focus\:border-gray-200:focus{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.xl\:focus\:border-gray-300:focus{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.xl\:focus\:border-gray-400:focus{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.xl\:focus\:border-gray-500:focus{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.xl\:focus\:border-gray-600:focus{--border-opacity:1;border-color:#4b5563;border-color:rgba(75,85,99,var(--border-opacity))}.xl\:focus\:border-gray-700:focus{--border-opacity:1;border-color:#374151;border-color:rgba(55,65,81,var(--border-opacity))}.xl\:focus\:border-gray-800:focus{--border-opacity:1;border-color:#252f3f;border-color:rgba(37,47,63,var(--border-opacity))}.xl\:focus\:border-gray-900:focus{--border-opacity:1;border-color:#161e2e;border-color:rgba(22,30,46,var(--border-opacity))}.xl\:focus\:border-cool-gray-50:focus{--border-opacity:1;border-color:#f8fafc;border-color:rgba(248,250,252,var(--border-opacity))}.xl\:focus\:border-cool-gray-100:focus{--border-opacity:1;border-color:#f1f5f9;border-color:rgba(241,245,249,var(--border-opacity))}.xl\:focus\:border-cool-gray-200:focus{--border-opacity:1;border-color:#e2e8f0;border-color:rgba(226,232,240,var(--border-opacity))}.xl\:focus\:border-cool-gray-300:focus{--border-opacity:1;border-color:#cfd8e3;border-color:rgba(207,216,227,var(--border-opacity))}.xl\:focus\:border-cool-gray-400:focus{--border-opacity:1;border-color:#97a6ba;border-color:rgba(151,166,186,var(--border-opacity))}.xl\:focus\:border-cool-gray-500:focus{--border-opacity:1;border-color:#64748b;border-color:rgba(100,116,139,var(--border-opacity))}.xl\:focus\:border-cool-gray-600:focus{--border-opacity:1;border-color:#475569;border-color:rgba(71,85,105,var(--border-opacity))}.xl\:focus\:border-cool-gray-700:focus{--border-opacity:1;border-color:#364152;border-color:rgba(54,65,82,var(--border-opacity))}.xl\:focus\:border-cool-gray-800:focus{--border-opacity:1;border-color:#27303f;border-color:rgba(39,48,63,var(--border-opacity))}.xl\:focus\:border-cool-gray-900:focus{--border-opacity:1;border-color:#1a202e;border-color:rgba(26,32,46,var(--border-opacity))}.xl\:focus\:border-red-50:focus{--border-opacity:1;border-color:#fdf2f2;border-color:rgba(253,242,242,var(--border-opacity))}.xl\:focus\:border-red-100:focus{--border-opacity:1;border-color:#fde8e8;border-color:rgba(253,232,232,var(--border-opacity))}.xl\:focus\:border-red-200:focus{--border-opacity:1;border-color:#fbd5d5;border-color:rgba(251,213,213,var(--border-opacity))}.xl\:focus\:border-red-300:focus{--border-opacity:1;border-color:#f8b4b4;border-color:rgba(248,180,180,var(--border-opacity))}.xl\:focus\:border-red-400:focus{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.xl\:focus\:border-red-500:focus{--border-opacity:1;border-color:#f05252;border-color:rgba(240,82,82,var(--border-opacity))}.xl\:focus\:border-red-600:focus{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.xl\:focus\:border-red-700:focus{--border-opacity:1;border-color:#c81e1e;border-color:rgba(200,30,30,var(--border-opacity))}.xl\:focus\:border-red-800:focus{--border-opacity:1;border-color:#9b1c1c;border-color:rgba(155,28,28,var(--border-opacity))}.xl\:focus\:border-red-900:focus{--border-opacity:1;border-color:#771d1d;border-color:rgba(119,29,29,var(--border-opacity))}.xl\:focus\:border-orange-50:focus{--border-opacity:1;border-color:#fff8f1;border-color:rgba(255,248,241,var(--border-opacity))}.xl\:focus\:border-orange-100:focus{--border-opacity:1;border-color:#feecdc;border-color:rgba(254,236,220,var(--border-opacity))}.xl\:focus\:border-orange-200:focus{--border-opacity:1;border-color:#fcd9bd;border-color:rgba(252,217,189,var(--border-opacity))}.xl\:focus\:border-orange-300:focus{--border-opacity:1;border-color:#fdba8c;border-color:rgba(253,186,140,var(--border-opacity))}.xl\:focus\:border-orange-400:focus{--border-opacity:1;border-color:#ff8a4c;border-color:rgba(255,138,76,var(--border-opacity))}.xl\:focus\:border-orange-500:focus{--border-opacity:1;border-color:#ff5a1f;border-color:rgba(255,90,31,var(--border-opacity))}.xl\:focus\:border-orange-600:focus{--border-opacity:1;border-color:#d03801;border-color:rgba(208,56,1,var(--border-opacity))}.xl\:focus\:border-orange-700:focus{--border-opacity:1;border-color:#b43403;border-color:rgba(180,52,3,var(--border-opacity))}.xl\:focus\:border-orange-800:focus{--border-opacity:1;border-color:#8a2c0d;border-color:rgba(138,44,13,var(--border-opacity))}.xl\:focus\:border-orange-900:focus{--border-opacity:1;border-color:#73230d;border-color:rgba(115,35,13,var(--border-opacity))}.xl\:focus\:border-yellow-50:focus{--border-opacity:1;border-color:#fdfdea;border-color:rgba(253,253,234,var(--border-opacity))}.xl\:focus\:border-yellow-100:focus{--border-opacity:1;border-color:#fdf6b2;border-color:rgba(253,246,178,var(--border-opacity))}.xl\:focus\:border-yellow-200:focus{--border-opacity:1;border-color:#fce96a;border-color:rgba(252,233,106,var(--border-opacity))}.xl\:focus\:border-yellow-300:focus{--border-opacity:1;border-color:#faca15;border-color:rgba(250,202,21,var(--border-opacity))}.xl\:focus\:border-yellow-400:focus{--border-opacity:1;border-color:#e3a008;border-color:rgba(227,160,8,var(--border-opacity))}.xl\:focus\:border-yellow-500:focus{--border-opacity:1;border-color:#c27803;border-color:rgba(194,120,3,var(--border-opacity))}.xl\:focus\:border-yellow-600:focus{--border-opacity:1;border-color:#9f580a;border-color:rgba(159,88,10,var(--border-opacity))}.xl\:focus\:border-yellow-700:focus{--border-opacity:1;border-color:#8e4b10;border-color:rgba(142,75,16,var(--border-opacity))}.xl\:focus\:border-yellow-800:focus{--border-opacity:1;border-color:#723b13;border-color:rgba(114,59,19,var(--border-opacity))}.xl\:focus\:border-yellow-900:focus{--border-opacity:1;border-color:#633112;border-color:rgba(99,49,18,var(--border-opacity))}.xl\:focus\:border-green-50:focus{--border-opacity:1;border-color:#f3faf7;border-color:rgba(243,250,247,var(--border-opacity))}.xl\:focus\:border-green-100:focus{--border-opacity:1;border-color:#def7ec;border-color:rgba(222,247,236,var(--border-opacity))}.xl\:focus\:border-green-200:focus{--border-opacity:1;border-color:#bcf0da;border-color:rgba(188,240,218,var(--border-opacity))}.xl\:focus\:border-green-300:focus{--border-opacity:1;border-color:#84e1bc;border-color:rgba(132,225,188,var(--border-opacity))}.xl\:focus\:border-green-400:focus{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.xl\:focus\:border-green-500:focus{--border-opacity:1;border-color:#0e9f6e;border-color:rgba(14,159,110,var(--border-opacity))}.xl\:focus\:border-green-600:focus{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.xl\:focus\:border-green-700:focus{--border-opacity:1;border-color:#046c4e;border-color:rgba(4,108,78,var(--border-opacity))}.xl\:focus\:border-green-800:focus{--border-opacity:1;border-color:#03543f;border-color:rgba(3,84,63,var(--border-opacity))}.xl\:focus\:border-green-900:focus{--border-opacity:1;border-color:#014737;border-color:rgba(1,71,55,var(--border-opacity))}.xl\:focus\:border-teal-50:focus{--border-opacity:1;border-color:#edfafa;border-color:rgba(237,250,250,var(--border-opacity))}.xl\:focus\:border-teal-100:focus{--border-opacity:1;border-color:#d5f5f6;border-color:rgba(213,245,246,var(--border-opacity))}.xl\:focus\:border-teal-200:focus{--border-opacity:1;border-color:#afecef;border-color:rgba(175,236,239,var(--border-opacity))}.xl\:focus\:border-teal-300:focus{--border-opacity:1;border-color:#7edce2;border-color:rgba(126,220,226,var(--border-opacity))}.xl\:focus\:border-teal-400:focus{--border-opacity:1;border-color:#16bdca;border-color:rgba(22,189,202,var(--border-opacity))}.xl\:focus\:border-teal-500:focus{--border-opacity:1;border-color:#0694a2;border-color:rgba(6,148,162,var(--border-opacity))}.xl\:focus\:border-teal-600:focus{--border-opacity:1;border-color:#047481;border-color:rgba(4,116,129,var(--border-opacity))}.xl\:focus\:border-teal-700:focus{--border-opacity:1;border-color:#036672;border-color:rgba(3,102,114,var(--border-opacity))}.xl\:focus\:border-teal-800:focus{--border-opacity:1;border-color:#05505c;border-color:rgba(5,80,92,var(--border-opacity))}.xl\:focus\:border-teal-900:focus{--border-opacity:1;border-color:#014451;border-color:rgba(1,68,81,var(--border-opacity))}.xl\:focus\:border-blue-50:focus{--border-opacity:1;border-color:#ebf5ff;border-color:rgba(235,245,255,var(--border-opacity))}.xl\:focus\:border-blue-100:focus{--border-opacity:1;border-color:#e1effe;border-color:rgba(225,239,254,var(--border-opacity))}.xl\:focus\:border-blue-200:focus{--border-opacity:1;border-color:#c3ddfd;border-color:rgba(195,221,253,var(--border-opacity))}.xl\:focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.xl\:focus\:border-blue-400:focus{--border-opacity:1;border-color:#76a9fa;border-color:rgba(118,169,250,var(--border-opacity))}.xl\:focus\:border-blue-500:focus{--border-opacity:1;border-color:#3f83f8;border-color:rgba(63,131,248,var(--border-opacity))}.xl\:focus\:border-blue-600:focus{--border-opacity:1;border-color:#1c64f2;border-color:rgba(28,100,242,var(--border-opacity))}.xl\:focus\:border-blue-700:focus{--border-opacity:1;border-color:#1a56db;border-color:rgba(26,86,219,var(--border-opacity))}.xl\:focus\:border-blue-800:focus{--border-opacity:1;border-color:#1e429f;border-color:rgba(30,66,159,var(--border-opacity))}.xl\:focus\:border-blue-900:focus{--border-opacity:1;border-color:#233876;border-color:rgba(35,56,118,var(--border-opacity))}.xl\:focus\:border-indigo-50:focus{--border-opacity:1;border-color:#f0f5ff;border-color:rgba(240,245,255,var(--border-opacity))}.xl\:focus\:border-indigo-100:focus{--border-opacity:1;border-color:#e5edff;border-color:rgba(229,237,255,var(--border-opacity))}.xl\:focus\:border-indigo-200:focus{--border-opacity:1;border-color:#cddbfe;border-color:rgba(205,219,254,var(--border-opacity))}.xl\:focus\:border-indigo-300:focus{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.xl\:focus\:border-indigo-400:focus{--border-opacity:1;border-color:#8da2fb;border-color:rgba(141,162,251,var(--border-opacity))}.xl\:focus\:border-indigo-500:focus{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.xl\:focus\:border-indigo-600:focus{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.xl\:focus\:border-indigo-700:focus{--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity))}.xl\:focus\:border-indigo-800:focus{--border-opacity:1;border-color:#42389d;border-color:rgba(66,56,157,var(--border-opacity))}.xl\:focus\:border-indigo-900:focus{--border-opacity:1;border-color:#362f78;border-color:rgba(54,47,120,var(--border-opacity))}.xl\:focus\:border-purple-50:focus{--border-opacity:1;border-color:#f6f5ff;border-color:rgba(246,245,255,var(--border-opacity))}.xl\:focus\:border-purple-100:focus{--border-opacity:1;border-color:#edebfe;border-color:rgba(237,235,254,var(--border-opacity))}.xl\:focus\:border-purple-200:focus{--border-opacity:1;border-color:#dcd7fe;border-color:rgba(220,215,254,var(--border-opacity))}.xl\:focus\:border-purple-300:focus{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.xl\:focus\:border-purple-400:focus{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.xl\:focus\:border-purple-500:focus{--border-opacity:1;border-color:#9061f9;border-color:rgba(144,97,249,var(--border-opacity))}.xl\:focus\:border-purple-600:focus{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.xl\:focus\:border-purple-700:focus{--border-opacity:1;border-color:#6c2bd9;border-color:rgba(108,43,217,var(--border-opacity))}.xl\:focus\:border-purple-800:focus{--border-opacity:1;border-color:#5521b5;border-color:rgba(85,33,181,var(--border-opacity))}.xl\:focus\:border-purple-900:focus{--border-opacity:1;border-color:#4a1d96;border-color:rgba(74,29,150,var(--border-opacity))}.xl\:focus\:border-pink-50:focus{--border-opacity:1;border-color:#fdf2f8;border-color:rgba(253,242,248,var(--border-opacity))}.xl\:focus\:border-pink-100:focus{--border-opacity:1;border-color:#fce8f3;border-color:rgba(252,232,243,var(--border-opacity))}.xl\:focus\:border-pink-200:focus{--border-opacity:1;border-color:#fad1e8;border-color:rgba(250,209,232,var(--border-opacity))}.xl\:focus\:border-pink-300:focus{--border-opacity:1;border-color:#f8b4d9;border-color:rgba(248,180,217,var(--border-opacity))}.xl\:focus\:border-pink-400:focus{--border-opacity:1;border-color:#f17eb8;border-color:rgba(241,126,184,var(--border-opacity))}.xl\:focus\:border-pink-500:focus{--border-opacity:1;border-color:#e74694;border-color:rgba(231,70,148,var(--border-opacity))}.xl\:focus\:border-pink-600:focus{--border-opacity:1;border-color:#d61f69;border-color:rgba(214,31,105,var(--border-opacity))}.xl\:focus\:border-pink-700:focus{--border-opacity:1;border-color:#bf125d;border-color:rgba(191,18,93,var(--border-opacity))}.xl\:focus\:border-pink-800:focus{--border-opacity:1;border-color:#99154b;border-color:rgba(153,21,75,var(--border-opacity))}.xl\:focus\:border-pink-900:focus{--border-opacity:1;border-color:#751a3d;border-color:rgba(117,26,61,var(--border-opacity))}.xl\:border-opacity-0{--border-opacity:0}.xl\:border-opacity-25{--border-opacity:0.25}.xl\:border-opacity-50{--border-opacity:0.5}.xl\:border-opacity-75{--border-opacity:0.75}.xl\:border-opacity-100{--border-opacity:1}.xl\:hover\:border-opacity-0:hover{--border-opacity:0}.xl\:hover\:border-opacity-25:hover{--border-opacity:0.25}.xl\:hover\:border-opacity-50:hover{--border-opacity:0.5}.xl\:hover\:border-opacity-75:hover{--border-opacity:0.75}.xl\:hover\:border-opacity-100:hover{--border-opacity:1}.xl\:focus\:border-opacity-0:focus{--border-opacity:0}.xl\:focus\:border-opacity-25:focus{--border-opacity:0.25}.xl\:focus\:border-opacity-50:focus{--border-opacity:0.5}.xl\:focus\:border-opacity-75:focus{--border-opacity:0.75}.xl\:focus\:border-opacity-100:focus{--border-opacity:1}.xl\:rounded-none{border-radius:0}.xl\:rounded-sm{border-radius:.125rem}.xl\:rounded{border-radius:.25rem}.xl\:rounded-md{border-radius:.375rem}.xl\:rounded-lg{border-radius:.5rem}.xl\:rounded-full{border-radius:9999px}.xl\:rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.xl\:rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.xl\:rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.xl\:rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.xl\:rounded-t-sm{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.xl\:rounded-r-sm{border-top-right-radius:.125rem;border-bottom-right-radius:.125rem}.xl\:rounded-b-sm{border-bottom-right-radius:.125rem;border-bottom-left-radius:.125rem}.xl\:rounded-l-sm{border-top-left-radius:.125rem;border-bottom-left-radius:.125rem}.xl\:rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.xl\:rounded-r{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.xl\:rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.xl\:rounded-l{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.xl\:rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.xl\:rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.xl\:rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.xl\:rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.xl\:rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.xl\:rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.xl\:rounded-b-lg{border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.xl\:rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.xl\:rounded-t-full{border-top-left-radius:9999px;border-top-right-radius:9999px}.xl\:rounded-r-full{border-top-right-radius:9999px;border-bottom-right-radius:9999px}.xl\:rounded-b-full{border-bottom-right-radius:9999px;border-bottom-left-radius:9999px}.xl\:rounded-l-full{border-top-left-radius:9999px;border-bottom-left-radius:9999px}.xl\:rounded-tl-none{border-top-left-radius:0}.xl\:rounded-tr-none{border-top-right-radius:0}.xl\:rounded-br-none{border-bottom-right-radius:0}.xl\:rounded-bl-none{border-bottom-left-radius:0}.xl\:rounded-tl-sm{border-top-left-radius:.125rem}.xl\:rounded-tr-sm{border-top-right-radius:.125rem}.xl\:rounded-br-sm{border-bottom-right-radius:.125rem}.xl\:rounded-bl-sm{border-bottom-left-radius:.125rem}.xl\:rounded-tl{border-top-left-radius:.25rem}.xl\:rounded-tr{border-top-right-radius:.25rem}.xl\:rounded-br{border-bottom-right-radius:.25rem}.xl\:rounded-bl{border-bottom-left-radius:.25rem}.xl\:rounded-tl-md{border-top-left-radius:.375rem}.xl\:rounded-tr-md{border-top-right-radius:.375rem}.xl\:rounded-br-md{border-bottom-right-radius:.375rem}.xl\:rounded-bl-md{border-bottom-left-radius:.375rem}.xl\:rounded-tl-lg{border-top-left-radius:.5rem}.xl\:rounded-tr-lg{border-top-right-radius:.5rem}.xl\:rounded-br-lg{border-bottom-right-radius:.5rem}.xl\:rounded-bl-lg{border-bottom-left-radius:.5rem}.xl\:rounded-tl-full{border-top-left-radius:9999px}.xl\:rounded-tr-full{border-top-right-radius:9999px}.xl\:rounded-br-full{border-bottom-right-radius:9999px}.xl\:rounded-bl-full{border-bottom-left-radius:9999px}.xl\:border-solid{border-style:solid}.xl\:border-dashed{border-style:dashed}.xl\:border-dotted{border-style:dotted}.xl\:border-double{border-style:double}.xl\:border-none{border-style:none}.xl\:border-0{border-width:0}.xl\:border-2{border-width:2px}.xl\:border-4{border-width:4px}.xl\:border-8{border-width:8px}.xl\:border{border-width:1px}.xl\:border-t-0{border-top-width:0}.xl\:border-r-0{border-right-width:0}.xl\:border-b-0{border-bottom-width:0}.xl\:border-l-0{border-left-width:0}.xl\:border-t-2{border-top-width:2px}.xl\:border-r-2{border-right-width:2px}.xl\:border-b-2{border-bottom-width:2px}.xl\:border-l-2{border-left-width:2px}.xl\:border-t-4{border-top-width:4px}.xl\:border-r-4{border-right-width:4px}.xl\:border-b-4{border-bottom-width:4px}.xl\:border-l-4{border-left-width:4px}.xl\:border-t-8{border-top-width:8px}.xl\:border-r-8{border-right-width:8px}.xl\:border-b-8{border-bottom-width:8px}.xl\:border-l-8{border-left-width:8px}.xl\:border-t{border-top-width:1px}.xl\:border-r{border-right-width:1px}.xl\:border-b{border-bottom-width:1px}.xl\:border-l{border-left-width:1px}.xl\:box-border{box-sizing:border-box}.xl\:box-content{box-sizing:content-box}.xl\:cursor-auto{cursor:auto}.xl\:cursor-default{cursor:default}.xl\:cursor-pointer{cursor:pointer}.xl\:cursor-wait{cursor:wait}.xl\:cursor-text{cursor:text}.xl\:cursor-move{cursor:move}.xl\:cursor-not-allowed{cursor:not-allowed}.xl\:block{display:block}.xl\:inline-block{display:inline-block}.xl\:inline{display:inline}.xl\:flex{display:flex}.xl\:inline-flex{display:inline-flex}.xl\:table{display:table}.xl\:table-caption{display:table-caption}.xl\:table-cell{display:table-cell}.xl\:table-column{display:table-column}.xl\:table-column-group{display:table-column-group}.xl\:table-footer-group{display:table-footer-group}.xl\:table-header-group{display:table-header-group}.xl\:table-row-group{display:table-row-group}.xl\:table-row{display:table-row}.xl\:flow-root{display:flow-root}.xl\:grid{display:grid}.xl\:inline-grid{display:inline-grid}.xl\:hidden{display:none}.xl\:flex-row{flex-direction:row}.xl\:flex-row-reverse{flex-direction:row-reverse}.xl\:flex-col{flex-direction:column}.xl\:flex-col-reverse{flex-direction:column-reverse}.xl\:flex-wrap{flex-wrap:wrap}.xl\:flex-wrap-reverse{flex-wrap:wrap-reverse}.xl\:flex-no-wrap{flex-wrap:nowrap}.xl\:items-start{align-items:flex-start}.xl\:items-end{align-items:flex-end}.xl\:items-center{align-items:center}.xl\:items-baseline{align-items:baseline}.xl\:items-stretch{align-items:stretch}.xl\:self-auto{align-self:auto}.xl\:self-start{align-self:flex-start}.xl\:self-end{align-self:flex-end}.xl\:self-center{align-self:center}.xl\:self-stretch{align-self:stretch}.xl\:justify-start{justify-content:flex-start}.xl\:justify-end{justify-content:flex-end}.xl\:justify-center{justify-content:center}.xl\:justify-between{justify-content:space-between}.xl\:justify-around{justify-content:space-around}.xl\:justify-evenly{justify-content:space-evenly}.xl\:content-center{align-content:center}.xl\:content-start{align-content:flex-start}.xl\:content-end{align-content:flex-end}.xl\:content-between{align-content:space-between}.xl\:content-around{align-content:space-around}.xl\:flex-1{flex:1 1 0%}.xl\:flex-auto{flex:1 1 auto}.xl\:flex-initial{flex:0 1 auto}.xl\:flex-none{flex:none}.xl\:flex-grow-0{flex-grow:0}.xl\:flex-grow{flex-grow:1}.xl\:flex-shrink-0{flex-shrink:0}.xl\:flex-shrink{flex-shrink:1}.xl\:order-1{order:1}.xl\:order-2{order:2}.xl\:order-3{order:3}.xl\:order-4{order:4}.xl\:order-5{order:5}.xl\:order-6{order:6}.xl\:order-7{order:7}.xl\:order-8{order:8}.xl\:order-9{order:9}.xl\:order-10{order:10}.xl\:order-11{order:11}.xl\:order-12{order:12}.xl\:order-first{order:-9999}.xl\:order-last{order:9999}.xl\:order-none{order:0}.xl\:float-right{float:right}.xl\:float-left{float:left}.xl\:float-none{float:none}.xl\:clearfix:after{content:"";display:table;clear:both}.xl\:clear-left{clear:left}.xl\:clear-right{clear:right}.xl\:clear-both{clear:both}.xl\:clear-none{clear:none}.xl\:font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.xl\:font-serif{font-family:Georgia,Cambria,"Times New Roman",Times,serif}.xl\:font-mono{font-family:Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.xl\:font-hairline{font-weight:100}.xl\:font-thin{font-weight:200}.xl\:font-light{font-weight:300}.xl\:font-normal{font-weight:400}.xl\:font-medium{font-weight:500}.xl\:font-semibold{font-weight:600}.xl\:font-bold{font-weight:700}.xl\:font-extrabold{font-weight:800}.xl\:font-black{font-weight:900}.xl\:hover\:font-hairline:hover{font-weight:100}.xl\:hover\:font-thin:hover{font-weight:200}.xl\:hover\:font-light:hover{font-weight:300}.xl\:hover\:font-normal:hover{font-weight:400}.xl\:hover\:font-medium:hover{font-weight:500}.xl\:hover\:font-semibold:hover{font-weight:600}.xl\:hover\:font-bold:hover{font-weight:700}.xl\:hover\:font-extrabold:hover{font-weight:800}.xl\:hover\:font-black:hover{font-weight:900}.xl\:focus\:font-hairline:focus{font-weight:100}.xl\:focus\:font-thin:focus{font-weight:200}.xl\:focus\:font-light:focus{font-weight:300}.xl\:focus\:font-normal:focus{font-weight:400}.xl\:focus\:font-medium:focus{font-weight:500}.xl\:focus\:font-semibold:focus{font-weight:600}.xl\:focus\:font-bold:focus{font-weight:700}.xl\:focus\:font-extrabold:focus{font-weight:800}.xl\:focus\:font-black:focus{font-weight:900}.xl\:h-0{height:0}.xl\:h-1{height:.25rem}.xl\:h-2{height:.5rem}.xl\:h-3{height:.75rem}.xl\:h-4{height:1rem}.xl\:h-5{height:1.25rem}.xl\:h-6{height:1.5rem}.xl\:h-7{height:1.75rem}.xl\:h-8{height:2rem}.xl\:h-9{height:2.25rem}.xl\:h-10{height:2.5rem}.xl\:h-11{height:2.75rem}.xl\:h-12{height:3rem}.xl\:h-13{height:3.25rem}.xl\:h-14{height:3.5rem}.xl\:h-15{height:3.75rem}.xl\:h-16{height:4rem}.xl\:h-20{height:5rem}.xl\:h-24{height:6rem}.xl\:h-28{height:7rem}.xl\:h-32{height:8rem}.xl\:h-36{height:9rem}.xl\:h-40{height:10rem}.xl\:h-44{height:11rem}.xl\:h-48{height:12rem}.xl\:h-52{height:13rem}.xl\:h-56{height:14rem}.xl\:h-60{height:15rem}.xl\:h-64{height:16rem}.xl\:h-72{height:18rem}.xl\:h-80{height:20rem}.xl\:h-96{height:24rem}.xl\:h-auto{height:auto}.xl\:h-px{height:1px}.xl\:h-0\.5{height:.125rem}.xl\:h-1\.5{height:.375rem}.xl\:h-2\.5{height:.625rem}.xl\:h-3\.5{height:.875rem}.xl\:h-1\/2{height:50%}.xl\:h-1\/3{height:33.333333%}.xl\:h-2\/3{height:66.666667%}.xl\:h-1\/4{height:25%}.xl\:h-2\/4{height:50%}.xl\:h-3\/4{height:75%}.xl\:h-1\/5{height:20%}.xl\:h-2\/5{height:40%}.xl\:h-3\/5{height:60%}.xl\:h-4\/5{height:80%}.xl\:h-1\/6{height:16.666667%}.xl\:h-2\/6{height:33.333333%}.xl\:h-3\/6{height:50%}.xl\:h-4\/6{height:66.666667%}.xl\:h-5\/6{height:83.333333%}.xl\:h-1\/12{height:8.333333%}.xl\:h-2\/12{height:16.666667%}.xl\:h-3\/12{height:25%}.xl\:h-4\/12{height:33.333333%}.xl\:h-5\/12{height:41.666667%}.xl\:h-6\/12{height:50%}.xl\:h-7\/12{height:58.333333%}.xl\:h-8\/12{height:66.666667%}.xl\:h-9\/12{height:75%}.xl\:h-10\/12{height:83.333333%}.xl\:h-11\/12{height:91.666667%}.xl\:h-full{height:100%}.xl\:h-screen{height:100vh}.xl\:text-xs{font-size:.75rem}.xl\:text-sm{font-size:.875rem}.xl\:text-base{font-size:1rem}.xl\:text-lg{font-size:1.125rem}.xl\:text-xl{font-size:1.25rem}.xl\:text-2xl{font-size:1.5rem}.xl\:text-3xl{font-size:1.875rem}.xl\:text-4xl{font-size:2.25rem}.xl\:text-5xl{font-size:3rem}.xl\:text-6xl{font-size:4rem}.xl\:leading-3{line-height:.75rem}.xl\:leading-4{line-height:1rem}.xl\:leading-5{line-height:1.25rem}.xl\:leading-6{line-height:1.5rem}.xl\:leading-7{line-height:1.75rem}.xl\:leading-8{line-height:2rem}.xl\:leading-9{line-height:2.25rem}.xl\:leading-10{line-height:2.5rem}.xl\:leading-none{line-height:1}.xl\:leading-tight{line-height:1.25}.xl\:leading-snug{line-height:1.375}.xl\:leading-normal{line-height:1.5}.xl\:leading-relaxed{line-height:1.625}.xl\:leading-loose{line-height:2}.xl\:list-inside{list-style-position:inside}.xl\:list-outside{list-style-position:outside}.xl\:list-none{list-style-type:none}.xl\:list-disc{list-style-type:disc}.xl\:list-decimal{list-style-type:decimal}.xl\:m-0{margin:0}.xl\:m-1{margin:.25rem}.xl\:m-2{margin:.5rem}.xl\:m-3{margin:.75rem}.xl\:m-4{margin:1rem}.xl\:m-5{margin:1.25rem}.xl\:m-6{margin:1.5rem}.xl\:m-7{margin:1.75rem}.xl\:m-8{margin:2rem}.xl\:m-9{margin:2.25rem}.xl\:m-10{margin:2.5rem}.xl\:m-11{margin:2.75rem}.xl\:m-12{margin:3rem}.xl\:m-13{margin:3.25rem}.xl\:m-14{margin:3.5rem}.xl\:m-15{margin:3.75rem}.xl\:m-16{margin:4rem}.xl\:m-20{margin:5rem}.xl\:m-24{margin:6rem}.xl\:m-28{margin:7rem}.xl\:m-32{margin:8rem}.xl\:m-36{margin:9rem}.xl\:m-40{margin:10rem}.xl\:m-44{margin:11rem}.xl\:m-48{margin:12rem}.xl\:m-52{margin:13rem}.xl\:m-56{margin:14rem}.xl\:m-60{margin:15rem}.xl\:m-64{margin:16rem}.xl\:m-72{margin:18rem}.xl\:m-80{margin:20rem}.xl\:m-96{margin:24rem}.xl\:m-auto{margin:auto}.xl\:m-px{margin:1px}.xl\:m-0\.5{margin:.125rem}.xl\:m-1\.5{margin:.375rem}.xl\:m-2\.5{margin:.625rem}.xl\:m-3\.5{margin:.875rem}.xl\:m-1\/2{margin:50%}.xl\:m-1\/3{margin:33.333333%}.xl\:m-2\/3{margin:66.666667%}.xl\:m-1\/4{margin:25%}.xl\:m-2\/4{margin:50%}.xl\:m-3\/4{margin:75%}.xl\:m-1\/5{margin:20%}.xl\:m-2\/5{margin:40%}.xl\:m-3\/5{margin:60%}.xl\:m-4\/5{margin:80%}.xl\:m-1\/6{margin:16.666667%}.xl\:m-2\/6{margin:33.333333%}.xl\:m-3\/6{margin:50%}.xl\:m-4\/6{margin:66.666667%}.xl\:m-5\/6{margin:83.333333%}.xl\:m-1\/12{margin:8.333333%}.xl\:m-2\/12{margin:16.666667%}.xl\:m-3\/12{margin:25%}.xl\:m-4\/12{margin:33.333333%}.xl\:m-5\/12{margin:41.666667%}.xl\:m-6\/12{margin:50%}.xl\:m-7\/12{margin:58.333333%}.xl\:m-8\/12{margin:66.666667%}.xl\:m-9\/12{margin:75%}.xl\:m-10\/12{margin:83.333333%}.xl\:m-11\/12{margin:91.666667%}.xl\:m-full{margin:100%}.xl\:-m-1{margin:-.25rem}.xl\:-m-2{margin:-.5rem}.xl\:-m-3{margin:-.75rem}.xl\:-m-4{margin:-1rem}.xl\:-m-5{margin:-1.25rem}.xl\:-m-6{margin:-1.5rem}.xl\:-m-7{margin:-1.75rem}.xl\:-m-8{margin:-2rem}.xl\:-m-9{margin:-2.25rem}.xl\:-m-10{margin:-2.5rem}.xl\:-m-11{margin:-2.75rem}.xl\:-m-12{margin:-3rem}.xl\:-m-13{margin:-3.25rem}.xl\:-m-14{margin:-3.5rem}.xl\:-m-15{margin:-3.75rem}.xl\:-m-16{margin:-4rem}.xl\:-m-20{margin:-5rem}.xl\:-m-24{margin:-6rem}.xl\:-m-28{margin:-7rem}.xl\:-m-32{margin:-8rem}.xl\:-m-36{margin:-9rem}.xl\:-m-40{margin:-10rem}.xl\:-m-44{margin:-11rem}.xl\:-m-48{margin:-12rem}.xl\:-m-52{margin:-13rem}.xl\:-m-56{margin:-14rem}.xl\:-m-60{margin:-15rem}.xl\:-m-64{margin:-16rem}.xl\:-m-72{margin:-18rem}.xl\:-m-80{margin:-20rem}.xl\:-m-96{margin:-24rem}.xl\:-m-px{margin:-1px}.xl\:-m-0\.5{margin:-.125rem}.xl\:-m-1\.5{margin:-.375rem}.xl\:-m-2\.5{margin:-.625rem}.xl\:-m-3\.5{margin:-.875rem}.xl\:-m-1\/2{margin:-50%}.xl\:-m-1\/3{margin:-33.33333%}.xl\:-m-2\/3{margin:-66.66667%}.xl\:-m-1\/4{margin:-25%}.xl\:-m-2\/4{margin:-50%}.xl\:-m-3\/4{margin:-75%}.xl\:-m-1\/5{margin:-20%}.xl\:-m-2\/5{margin:-40%}.xl\:-m-3\/5{margin:-60%}.xl\:-m-4\/5{margin:-80%}.xl\:-m-1\/6{margin:-16.66667%}.xl\:-m-2\/6{margin:-33.33333%}.xl\:-m-3\/6{margin:-50%}.xl\:-m-4\/6{margin:-66.66667%}.xl\:-m-5\/6{margin:-83.33333%}.xl\:-m-1\/12{margin:-8.33333%}.xl\:-m-2\/12{margin:-16.66667%}.xl\:-m-3\/12{margin:-25%}.xl\:-m-4\/12{margin:-33.33333%}.xl\:-m-5\/12{margin:-41.66667%}.xl\:-m-6\/12{margin:-50%}.xl\:-m-7\/12{margin:-58.33333%}.xl\:-m-8\/12{margin:-66.66667%}.xl\:-m-9\/12{margin:-75%}.xl\:-m-10\/12{margin:-83.33333%}.xl\:-m-11\/12{margin:-91.66667%}.xl\:-m-full{margin:-100%}.xl\:my-0{margin-top:0;margin-bottom:0}.xl\:mx-0{margin-left:0;margin-right:0}.xl\:my-1{margin-top:.25rem;margin-bottom:.25rem}.xl\:mx-1{margin-left:.25rem;margin-right:.25rem}.xl\:my-2{margin-top:.5rem;margin-bottom:.5rem}.xl\:mx-2{margin-left:.5rem;margin-right:.5rem}.xl\:my-3{margin-top:.75rem;margin-bottom:.75rem}.xl\:mx-3{margin-left:.75rem;margin-right:.75rem}.xl\:my-4{margin-top:1rem;margin-bottom:1rem}.xl\:mx-4{margin-left:1rem;margin-right:1rem}.xl\:my-5{margin-top:1.25rem;margin-bottom:1.25rem}.xl\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.xl\:my-6{margin-top:1.5rem;margin-bottom:1.5rem}.xl\:mx-6{margin-left:1.5rem;margin-right:1.5rem}.xl\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.xl\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.xl\:my-8{margin-top:2rem;margin-bottom:2rem}.xl\:mx-8{margin-left:2rem;margin-right:2rem}.xl\:my-9{margin-top:2.25rem;margin-bottom:2.25rem}.xl\:mx-9{margin-left:2.25rem;margin-right:2.25rem}.xl\:my-10{margin-top:2.5rem;margin-bottom:2.5rem}.xl\:mx-10{margin-left:2.5rem;margin-right:2.5rem}.xl\:my-11{margin-top:2.75rem;margin-bottom:2.75rem}.xl\:mx-11{margin-left:2.75rem;margin-right:2.75rem}.xl\:my-12{margin-top:3rem;margin-bottom:3rem}.xl\:mx-12{margin-left:3rem;margin-right:3rem}.xl\:my-13{margin-top:3.25rem;margin-bottom:3.25rem}.xl\:mx-13{margin-left:3.25rem;margin-right:3.25rem}.xl\:my-14{margin-top:3.5rem;margin-bottom:3.5rem}.xl\:mx-14{margin-left:3.5rem;margin-right:3.5rem}.xl\:my-15{margin-top:3.75rem;margin-bottom:3.75rem}.xl\:mx-15{margin-left:3.75rem;margin-right:3.75rem}.xl\:my-16{margin-top:4rem;margin-bottom:4rem}.xl\:mx-16{margin-left:4rem;margin-right:4rem}.xl\:my-20{margin-top:5rem;margin-bottom:5rem}.xl\:mx-20{margin-left:5rem;margin-right:5rem}.xl\:my-24{margin-top:6rem;margin-bottom:6rem}.xl\:mx-24{margin-left:6rem;margin-right:6rem}.xl\:my-28{margin-top:7rem;margin-bottom:7rem}.xl\:mx-28{margin-left:7rem;margin-right:7rem}.xl\:my-32{margin-top:8rem;margin-bottom:8rem}.xl\:mx-32{margin-left:8rem;margin-right:8rem}.xl\:my-36{margin-top:9rem;margin-bottom:9rem}.xl\:mx-36{margin-left:9rem;margin-right:9rem}.xl\:my-40{margin-top:10rem;margin-bottom:10rem}.xl\:mx-40{margin-left:10rem;margin-right:10rem}.xl\:my-44{margin-top:11rem;margin-bottom:11rem}.xl\:mx-44{margin-left:11rem;margin-right:11rem}.xl\:my-48{margin-top:12rem;margin-bottom:12rem}.xl\:mx-48{margin-left:12rem;margin-right:12rem}.xl\:my-52{margin-top:13rem;margin-bottom:13rem}.xl\:mx-52{margin-left:13rem;margin-right:13rem}.xl\:my-56{margin-top:14rem;margin-bottom:14rem}.xl\:mx-56{margin-left:14rem;margin-right:14rem}.xl\:my-60{margin-top:15rem;margin-bottom:15rem}.xl\:mx-60{margin-left:15rem;margin-right:15rem}.xl\:my-64{margin-top:16rem;margin-bottom:16rem}.xl\:mx-64{margin-left:16rem;margin-right:16rem}.xl\:my-72{margin-top:18rem;margin-bottom:18rem}.xl\:mx-72{margin-left:18rem;margin-right:18rem}.xl\:my-80{margin-top:20rem;margin-bottom:20rem}.xl\:mx-80{margin-left:20rem;margin-right:20rem}.xl\:my-96{margin-top:24rem;margin-bottom:24rem}.xl\:mx-96{margin-left:24rem;margin-right:24rem}.xl\:my-auto{margin-top:auto;margin-bottom:auto}.xl\:mx-auto{margin-left:auto;margin-right:auto}.xl\:my-px{margin-top:1px;margin-bottom:1px}.xl\:mx-px{margin-left:1px;margin-right:1px}.xl\:my-0\.5{margin-top:.125rem;margin-bottom:.125rem}.xl\:mx-0\.5{margin-left:.125rem;margin-right:.125rem}.xl\:my-1\.5{margin-top:.375rem;margin-bottom:.375rem}.xl\:mx-1\.5{margin-left:.375rem;margin-right:.375rem}.xl\:my-2\.5{margin-top:.625rem;margin-bottom:.625rem}.xl\:mx-2\.5{margin-left:.625rem;margin-right:.625rem}.xl\:my-3\.5{margin-top:.875rem;margin-bottom:.875rem}.xl\:mx-3\.5{margin-left:.875rem;margin-right:.875rem}.xl\:my-1\/2{margin-top:50%;margin-bottom:50%}.xl\:mx-1\/2{margin-left:50%;margin-right:50%}.xl\:my-1\/3{margin-top:33.333333%;margin-bottom:33.333333%}.xl\:mx-1\/3{margin-left:33.333333%;margin-right:33.333333%}.xl\:my-2\/3{margin-top:66.666667%;margin-bottom:66.666667%}.xl\:mx-2\/3{margin-left:66.666667%;margin-right:66.666667%}.xl\:my-1\/4{margin-top:25%;margin-bottom:25%}.xl\:mx-1\/4{margin-left:25%;margin-right:25%}.xl\:my-2\/4{margin-top:50%;margin-bottom:50%}.xl\:mx-2\/4{margin-left:50%;margin-right:50%}.xl\:my-3\/4{margin-top:75%;margin-bottom:75%}.xl\:mx-3\/4{margin-left:75%;margin-right:75%}.xl\:my-1\/5{margin-top:20%;margin-bottom:20%}.xl\:mx-1\/5{margin-left:20%;margin-right:20%}.xl\:my-2\/5{margin-top:40%;margin-bottom:40%}.xl\:mx-2\/5{margin-left:40%;margin-right:40%}.xl\:my-3\/5{margin-top:60%;margin-bottom:60%}.xl\:mx-3\/5{margin-left:60%;margin-right:60%}.xl\:my-4\/5{margin-top:80%;margin-bottom:80%}.xl\:mx-4\/5{margin-left:80%;margin-right:80%}.xl\:my-1\/6{margin-top:16.666667%;margin-bottom:16.666667%}.xl\:mx-1\/6{margin-left:16.666667%;margin-right:16.666667%}.xl\:my-2\/6{margin-top:33.333333%;margin-bottom:33.333333%}.xl\:mx-2\/6{margin-left:33.333333%;margin-right:33.333333%}.xl\:my-3\/6{margin-top:50%;margin-bottom:50%}.xl\:mx-3\/6{margin-left:50%;margin-right:50%}.xl\:my-4\/6{margin-top:66.666667%;margin-bottom:66.666667%}.xl\:mx-4\/6{margin-left:66.666667%;margin-right:66.666667%}.xl\:my-5\/6{margin-top:83.333333%;margin-bottom:83.333333%}.xl\:mx-5\/6{margin-left:83.333333%;margin-right:83.333333%}.xl\:my-1\/12{margin-top:8.333333%;margin-bottom:8.333333%}.xl\:mx-1\/12{margin-left:8.333333%;margin-right:8.333333%}.xl\:my-2\/12{margin-top:16.666667%;margin-bottom:16.666667%}.xl\:mx-2\/12{margin-left:16.666667%;margin-right:16.666667%}.xl\:my-3\/12{margin-top:25%;margin-bottom:25%}.xl\:mx-3\/12{margin-left:25%;margin-right:25%}.xl\:my-4\/12{margin-top:33.333333%;margin-bottom:33.333333%}.xl\:mx-4\/12{margin-left:33.333333%;margin-right:33.333333%}.xl\:my-5\/12{margin-top:41.666667%;margin-bottom:41.666667%}.xl\:mx-5\/12{margin-left:41.666667%;margin-right:41.666667%}.xl\:my-6\/12{margin-top:50%;margin-bottom:50%}.xl\:mx-6\/12{margin-left:50%;margin-right:50%}.xl\:my-7\/12{margin-top:58.333333%;margin-bottom:58.333333%}.xl\:mx-7\/12{margin-left:58.333333%;margin-right:58.333333%}.xl\:my-8\/12{margin-top:66.666667%;margin-bottom:66.666667%}.xl\:mx-8\/12{margin-left:66.666667%;margin-right:66.666667%}.xl\:my-9\/12{margin-top:75%;margin-bottom:75%}.xl\:mx-9\/12{margin-left:75%;margin-right:75%}.xl\:my-10\/12{margin-top:83.333333%;margin-bottom:83.333333%}.xl\:mx-10\/12{margin-left:83.333333%;margin-right:83.333333%}.xl\:my-11\/12{margin-top:91.666667%;margin-bottom:91.666667%}.xl\:mx-11\/12{margin-left:91.666667%;margin-right:91.666667%}.xl\:my-full{margin-top:100%;margin-bottom:100%}.xl\:mx-full{margin-left:100%;margin-right:100%}.xl\:-my-1{margin-top:-.25rem;margin-bottom:-.25rem}.xl\:-mx-1{margin-left:-.25rem;margin-right:-.25rem}.xl\:-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.xl\:-mx-2{margin-left:-.5rem;margin-right:-.5rem}.xl\:-my-3{margin-top:-.75rem;margin-bottom:-.75rem}.xl\:-mx-3{margin-left:-.75rem;margin-right:-.75rem}.xl\:-my-4{margin-top:-1rem;margin-bottom:-1rem}.xl\:-mx-4{margin-left:-1rem;margin-right:-1rem}.xl\:-my-5{margin-top:-1.25rem;margin-bottom:-1.25rem}.xl\:-mx-5{margin-left:-1.25rem;margin-right:-1.25rem}.xl\:-my-6{margin-top:-1.5rem;margin-bottom:-1.5rem}.xl\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.xl\:-my-7{margin-top:-1.75rem;margin-bottom:-1.75rem}.xl\:-mx-7{margin-left:-1.75rem;margin-right:-1.75rem}.xl\:-my-8{margin-top:-2rem;margin-bottom:-2rem}.xl\:-mx-8{margin-left:-2rem;margin-right:-2rem}.xl\:-my-9{margin-top:-2.25rem;margin-bottom:-2.25rem}.xl\:-mx-9{margin-left:-2.25rem;margin-right:-2.25rem}.xl\:-my-10{margin-top:-2.5rem;margin-bottom:-2.5rem}.xl\:-mx-10{margin-left:-2.5rem;margin-right:-2.5rem}.xl\:-my-11{margin-top:-2.75rem;margin-bottom:-2.75rem}.xl\:-mx-11{margin-left:-2.75rem;margin-right:-2.75rem}.xl\:-my-12{margin-top:-3rem;margin-bottom:-3rem}.xl\:-mx-12{margin-left:-3rem;margin-right:-3rem}.xl\:-my-13{margin-top:-3.25rem;margin-bottom:-3.25rem}.xl\:-mx-13{margin-left:-3.25rem;margin-right:-3.25rem}.xl\:-my-14{margin-top:-3.5rem;margin-bottom:-3.5rem}.xl\:-mx-14{margin-left:-3.5rem;margin-right:-3.5rem}.xl\:-my-15{margin-top:-3.75rem;margin-bottom:-3.75rem}.xl\:-mx-15{margin-left:-3.75rem;margin-right:-3.75rem}.xl\:-my-16{margin-top:-4rem;margin-bottom:-4rem}.xl\:-mx-16{margin-left:-4rem;margin-right:-4rem}.xl\:-my-20{margin-top:-5rem;margin-bottom:-5rem}.xl\:-mx-20{margin-left:-5rem;margin-right:-5rem}.xl\:-my-24{margin-top:-6rem;margin-bottom:-6rem}.xl\:-mx-24{margin-left:-6rem;margin-right:-6rem}.xl\:-my-28{margin-top:-7rem;margin-bottom:-7rem}.xl\:-mx-28{margin-left:-7rem;margin-right:-7rem}.xl\:-my-32{margin-top:-8rem;margin-bottom:-8rem}.xl\:-mx-32{margin-left:-8rem;margin-right:-8rem}.xl\:-my-36{margin-top:-9rem;margin-bottom:-9rem}.xl\:-mx-36{margin-left:-9rem;margin-right:-9rem}.xl\:-my-40{margin-top:-10rem;margin-bottom:-10rem}.xl\:-mx-40{margin-left:-10rem;margin-right:-10rem}.xl\:-my-44{margin-top:-11rem;margin-bottom:-11rem}.xl\:-mx-44{margin-left:-11rem;margin-right:-11rem}.xl\:-my-48{margin-top:-12rem;margin-bottom:-12rem}.xl\:-mx-48{margin-left:-12rem;margin-right:-12rem}.xl\:-my-52{margin-top:-13rem;margin-bottom:-13rem}.xl\:-mx-52{margin-left:-13rem;margin-right:-13rem}.xl\:-my-56{margin-top:-14rem;margin-bottom:-14rem}.xl\:-mx-56{margin-left:-14rem;margin-right:-14rem}.xl\:-my-60{margin-top:-15rem;margin-bottom:-15rem}.xl\:-mx-60{margin-left:-15rem;margin-right:-15rem}.xl\:-my-64{margin-top:-16rem;margin-bottom:-16rem}.xl\:-mx-64{margin-left:-16rem;margin-right:-16rem}.xl\:-my-72{margin-top:-18rem;margin-bottom:-18rem}.xl\:-mx-72{margin-left:-18rem;margin-right:-18rem}.xl\:-my-80{margin-top:-20rem;margin-bottom:-20rem}.xl\:-mx-80{margin-left:-20rem;margin-right:-20rem}.xl\:-my-96{margin-top:-24rem;margin-bottom:-24rem}.xl\:-mx-96{margin-left:-24rem;margin-right:-24rem}.xl\:-my-px{margin-top:-1px;margin-bottom:-1px}.xl\:-mx-px{margin-left:-1px;margin-right:-1px}.xl\:-my-0\.5{margin-top:-.125rem;margin-bottom:-.125rem}.xl\:-mx-0\.5{margin-left:-.125rem;margin-right:-.125rem}.xl\:-my-1\.5{margin-top:-.375rem;margin-bottom:-.375rem}.xl\:-mx-1\.5{margin-left:-.375rem;margin-right:-.375rem}.xl\:-my-2\.5{margin-top:-.625rem;margin-bottom:-.625rem}.xl\:-mx-2\.5{margin-left:-.625rem;margin-right:-.625rem}.xl\:-my-3\.5{margin-top:-.875rem;margin-bottom:-.875rem}.xl\:-mx-3\.5{margin-left:-.875rem;margin-right:-.875rem}.xl\:-my-1\/2{margin-top:-50%;margin-bottom:-50%}.xl\:-mx-1\/2{margin-left:-50%;margin-right:-50%}.xl\:-my-1\/3{margin-top:-33.33333%;margin-bottom:-33.33333%}.xl\:-mx-1\/3{margin-left:-33.33333%;margin-right:-33.33333%}.xl\:-my-2\/3{margin-top:-66.66667%;margin-bottom:-66.66667%}.xl\:-mx-2\/3{margin-left:-66.66667%;margin-right:-66.66667%}.xl\:-my-1\/4{margin-top:-25%;margin-bottom:-25%}.xl\:-mx-1\/4{margin-left:-25%;margin-right:-25%}.xl\:-my-2\/4{margin-top:-50%;margin-bottom:-50%}.xl\:-mx-2\/4{margin-left:-50%;margin-right:-50%}.xl\:-my-3\/4{margin-top:-75%;margin-bottom:-75%}.xl\:-mx-3\/4{margin-left:-75%;margin-right:-75%}.xl\:-my-1\/5{margin-top:-20%;margin-bottom:-20%}.xl\:-mx-1\/5{margin-left:-20%;margin-right:-20%}.xl\:-my-2\/5{margin-top:-40%;margin-bottom:-40%}.xl\:-mx-2\/5{margin-left:-40%;margin-right:-40%}.xl\:-my-3\/5{margin-top:-60%;margin-bottom:-60%}.xl\:-mx-3\/5{margin-left:-60%;margin-right:-60%}.xl\:-my-4\/5{margin-top:-80%;margin-bottom:-80%}.xl\:-mx-4\/5{margin-left:-80%;margin-right:-80%}.xl\:-my-1\/6{margin-top:-16.66667%;margin-bottom:-16.66667%}.xl\:-mx-1\/6{margin-left:-16.66667%;margin-right:-16.66667%}.xl\:-my-2\/6{margin-top:-33.33333%;margin-bottom:-33.33333%}.xl\:-mx-2\/6{margin-left:-33.33333%;margin-right:-33.33333%}.xl\:-my-3\/6{margin-top:-50%;margin-bottom:-50%}.xl\:-mx-3\/6{margin-left:-50%;margin-right:-50%}.xl\:-my-4\/6{margin-top:-66.66667%;margin-bottom:-66.66667%}.xl\:-mx-4\/6{margin-left:-66.66667%;margin-right:-66.66667%}.xl\:-my-5\/6{margin-top:-83.33333%;margin-bottom:-83.33333%}.xl\:-mx-5\/6{margin-left:-83.33333%;margin-right:-83.33333%}.xl\:-my-1\/12{margin-top:-8.33333%;margin-bottom:-8.33333%}.xl\:-mx-1\/12{margin-left:-8.33333%;margin-right:-8.33333%}.xl\:-my-2\/12{margin-top:-16.66667%;margin-bottom:-16.66667%}.xl\:-mx-2\/12{margin-left:-16.66667%;margin-right:-16.66667%}.xl\:-my-3\/12{margin-top:-25%;margin-bottom:-25%}.xl\:-mx-3\/12{margin-left:-25%;margin-right:-25%}.xl\:-my-4\/12{margin-top:-33.33333%;margin-bottom:-33.33333%}.xl\:-mx-4\/12{margin-left:-33.33333%;margin-right:-33.33333%}.xl\:-my-5\/12{margin-top:-41.66667%;margin-bottom:-41.66667%}.xl\:-mx-5\/12{margin-left:-41.66667%;margin-right:-41.66667%}.xl\:-my-6\/12{margin-top:-50%;margin-bottom:-50%}.xl\:-mx-6\/12{margin-left:-50%;margin-right:-50%}.xl\:-my-7\/12{margin-top:-58.33333%;margin-bottom:-58.33333%}.xl\:-mx-7\/12{margin-left:-58.33333%;margin-right:-58.33333%}.xl\:-my-8\/12{margin-top:-66.66667%;margin-bottom:-66.66667%}.xl\:-mx-8\/12{margin-left:-66.66667%;margin-right:-66.66667%}.xl\:-my-9\/12{margin-top:-75%;margin-bottom:-75%}.xl\:-mx-9\/12{margin-left:-75%;margin-right:-75%}.xl\:-my-10\/12{margin-top:-83.33333%;margin-bottom:-83.33333%}.xl\:-mx-10\/12{margin-left:-83.33333%;margin-right:-83.33333%}.xl\:-my-11\/12{margin-top:-91.66667%;margin-bottom:-91.66667%}.xl\:-mx-11\/12{margin-left:-91.66667%;margin-right:-91.66667%}.xl\:-my-full{margin-top:-100%;margin-bottom:-100%}.xl\:-mx-full{margin-left:-100%;margin-right:-100%}.xl\:mt-0{margin-top:0}.xl\:mr-0{margin-right:0}.xl\:mb-0{margin-bottom:0}.xl\:ml-0{margin-left:0}.xl\:mt-1{margin-top:.25rem}.xl\:mr-1{margin-right:.25rem}.xl\:mb-1{margin-bottom:.25rem}.xl\:ml-1{margin-left:.25rem}.xl\:mt-2{margin-top:.5rem}.xl\:mr-2{margin-right:.5rem}.xl\:mb-2{margin-bottom:.5rem}.xl\:ml-2{margin-left:.5rem}.xl\:mt-3{margin-top:.75rem}.xl\:mr-3{margin-right:.75rem}.xl\:mb-3{margin-bottom:.75rem}.xl\:ml-3{margin-left:.75rem}.xl\:mt-4{margin-top:1rem}.xl\:mr-4{margin-right:1rem}.xl\:mb-4{margin-bottom:1rem}.xl\:ml-4{margin-left:1rem}.xl\:mt-5{margin-top:1.25rem}.xl\:mr-5{margin-right:1.25rem}.xl\:mb-5{margin-bottom:1.25rem}.xl\:ml-5{margin-left:1.25rem}.xl\:mt-6{margin-top:1.5rem}.xl\:mr-6{margin-right:1.5rem}.xl\:mb-6{margin-bottom:1.5rem}.xl\:ml-6{margin-left:1.5rem}.xl\:mt-7{margin-top:1.75rem}.xl\:mr-7{margin-right:1.75rem}.xl\:mb-7{margin-bottom:1.75rem}.xl\:ml-7{margin-left:1.75rem}.xl\:mt-8{margin-top:2rem}.xl\:mr-8{margin-right:2rem}.xl\:mb-8{margin-bottom:2rem}.xl\:ml-8{margin-left:2rem}.xl\:mt-9{margin-top:2.25rem}.xl\:mr-9{margin-right:2.25rem}.xl\:mb-9{margin-bottom:2.25rem}.xl\:ml-9{margin-left:2.25rem}.xl\:mt-10{margin-top:2.5rem}.xl\:mr-10{margin-right:2.5rem}.xl\:mb-10{margin-bottom:2.5rem}.xl\:ml-10{margin-left:2.5rem}.xl\:mt-11{margin-top:2.75rem}.xl\:mr-11{margin-right:2.75rem}.xl\:mb-11{margin-bottom:2.75rem}.xl\:ml-11{margin-left:2.75rem}.xl\:mt-12{margin-top:3rem}.xl\:mr-12{margin-right:3rem}.xl\:mb-12{margin-bottom:3rem}.xl\:ml-12{margin-left:3rem}.xl\:mt-13{margin-top:3.25rem}.xl\:mr-13{margin-right:3.25rem}.xl\:mb-13{margin-bottom:3.25rem}.xl\:ml-13{margin-left:3.25rem}.xl\:mt-14{margin-top:3.5rem}.xl\:mr-14{margin-right:3.5rem}.xl\:mb-14{margin-bottom:3.5rem}.xl\:ml-14{margin-left:3.5rem}.xl\:mt-15{margin-top:3.75rem}.xl\:mr-15{margin-right:3.75rem}.xl\:mb-15{margin-bottom:3.75rem}.xl\:ml-15{margin-left:3.75rem}.xl\:mt-16{margin-top:4rem}.xl\:mr-16{margin-right:4rem}.xl\:mb-16{margin-bottom:4rem}.xl\:ml-16{margin-left:4rem}.xl\:mt-20{margin-top:5rem}.xl\:mr-20{margin-right:5rem}.xl\:mb-20{margin-bottom:5rem}.xl\:ml-20{margin-left:5rem}.xl\:mt-24{margin-top:6rem}.xl\:mr-24{margin-right:6rem}.xl\:mb-24{margin-bottom:6rem}.xl\:ml-24{margin-left:6rem}.xl\:mt-28{margin-top:7rem}.xl\:mr-28{margin-right:7rem}.xl\:mb-28{margin-bottom:7rem}.xl\:ml-28{margin-left:7rem}.xl\:mt-32{margin-top:8rem}.xl\:mr-32{margin-right:8rem}.xl\:mb-32{margin-bottom:8rem}.xl\:ml-32{margin-left:8rem}.xl\:mt-36{margin-top:9rem}.xl\:mr-36{margin-right:9rem}.xl\:mb-36{margin-bottom:9rem}.xl\:ml-36{margin-left:9rem}.xl\:mt-40{margin-top:10rem}.xl\:mr-40{margin-right:10rem}.xl\:mb-40{margin-bottom:10rem}.xl\:ml-40{margin-left:10rem}.xl\:mt-44{margin-top:11rem}.xl\:mr-44{margin-right:11rem}.xl\:mb-44{margin-bottom:11rem}.xl\:ml-44{margin-left:11rem}.xl\:mt-48{margin-top:12rem}.xl\:mr-48{margin-right:12rem}.xl\:mb-48{margin-bottom:12rem}.xl\:ml-48{margin-left:12rem}.xl\:mt-52{margin-top:13rem}.xl\:mr-52{margin-right:13rem}.xl\:mb-52{margin-bottom:13rem}.xl\:ml-52{margin-left:13rem}.xl\:mt-56{margin-top:14rem}.xl\:mr-56{margin-right:14rem}.xl\:mb-56{margin-bottom:14rem}.xl\:ml-56{margin-left:14rem}.xl\:mt-60{margin-top:15rem}.xl\:mr-60{margin-right:15rem}.xl\:mb-60{margin-bottom:15rem}.xl\:ml-60{margin-left:15rem}.xl\:mt-64{margin-top:16rem}.xl\:mr-64{margin-right:16rem}.xl\:mb-64{margin-bottom:16rem}.xl\:ml-64{margin-left:16rem}.xl\:mt-72{margin-top:18rem}.xl\:mr-72{margin-right:18rem}.xl\:mb-72{margin-bottom:18rem}.xl\:ml-72{margin-left:18rem}.xl\:mt-80{margin-top:20rem}.xl\:mr-80{margin-right:20rem}.xl\:mb-80{margin-bottom:20rem}.xl\:ml-80{margin-left:20rem}.xl\:mt-96{margin-top:24rem}.xl\:mr-96{margin-right:24rem}.xl\:mb-96{margin-bottom:24rem}.xl\:ml-96{margin-left:24rem}.xl\:mt-auto{margin-top:auto}.xl\:mr-auto{margin-right:auto}.xl\:mb-auto{margin-bottom:auto}.xl\:ml-auto{margin-left:auto}.xl\:mt-px{margin-top:1px}.xl\:mr-px{margin-right:1px}.xl\:mb-px{margin-bottom:1px}.xl\:ml-px{margin-left:1px}.xl\:mt-0\.5{margin-top:.125rem}.xl\:mr-0\.5{margin-right:.125rem}.xl\:mb-0\.5{margin-bottom:.125rem}.xl\:ml-0\.5{margin-left:.125rem}.xl\:mt-1\.5{margin-top:.375rem}.xl\:mr-1\.5{margin-right:.375rem}.xl\:mb-1\.5{margin-bottom:.375rem}.xl\:ml-1\.5{margin-left:.375rem}.xl\:mt-2\.5{margin-top:.625rem}.xl\:mr-2\.5{margin-right:.625rem}.xl\:mb-2\.5{margin-bottom:.625rem}.xl\:ml-2\.5{margin-left:.625rem}.xl\:mt-3\.5{margin-top:.875rem}.xl\:mr-3\.5{margin-right:.875rem}.xl\:mb-3\.5{margin-bottom:.875rem}.xl\:ml-3\.5{margin-left:.875rem}.xl\:mt-1\/2{margin-top:50%}.xl\:mr-1\/2{margin-right:50%}.xl\:mb-1\/2{margin-bottom:50%}.xl\:ml-1\/2{margin-left:50%}.xl\:mt-1\/3{margin-top:33.333333%}.xl\:mr-1\/3{margin-right:33.333333%}.xl\:mb-1\/3{margin-bottom:33.333333%}.xl\:ml-1\/3{margin-left:33.333333%}.xl\:mt-2\/3{margin-top:66.666667%}.xl\:mr-2\/3{margin-right:66.666667%}.xl\:mb-2\/3{margin-bottom:66.666667%}.xl\:ml-2\/3{margin-left:66.666667%}.xl\:mt-1\/4{margin-top:25%}.xl\:mr-1\/4{margin-right:25%}.xl\:mb-1\/4{margin-bottom:25%}.xl\:ml-1\/4{margin-left:25%}.xl\:mt-2\/4{margin-top:50%}.xl\:mr-2\/4{margin-right:50%}.xl\:mb-2\/4{margin-bottom:50%}.xl\:ml-2\/4{margin-left:50%}.xl\:mt-3\/4{margin-top:75%}.xl\:mr-3\/4{margin-right:75%}.xl\:mb-3\/4{margin-bottom:75%}.xl\:ml-3\/4{margin-left:75%}.xl\:mt-1\/5{margin-top:20%}.xl\:mr-1\/5{margin-right:20%}.xl\:mb-1\/5{margin-bottom:20%}.xl\:ml-1\/5{margin-left:20%}.xl\:mt-2\/5{margin-top:40%}.xl\:mr-2\/5{margin-right:40%}.xl\:mb-2\/5{margin-bottom:40%}.xl\:ml-2\/5{margin-left:40%}.xl\:mt-3\/5{margin-top:60%}.xl\:mr-3\/5{margin-right:60%}.xl\:mb-3\/5{margin-bottom:60%}.xl\:ml-3\/5{margin-left:60%}.xl\:mt-4\/5{margin-top:80%}.xl\:mr-4\/5{margin-right:80%}.xl\:mb-4\/5{margin-bottom:80%}.xl\:ml-4\/5{margin-left:80%}.xl\:mt-1\/6{margin-top:16.666667%}.xl\:mr-1\/6{margin-right:16.666667%}.xl\:mb-1\/6{margin-bottom:16.666667%}.xl\:ml-1\/6{margin-left:16.666667%}.xl\:mt-2\/6{margin-top:33.333333%}.xl\:mr-2\/6{margin-right:33.333333%}.xl\:mb-2\/6{margin-bottom:33.333333%}.xl\:ml-2\/6{margin-left:33.333333%}.xl\:mt-3\/6{margin-top:50%}.xl\:mr-3\/6{margin-right:50%}.xl\:mb-3\/6{margin-bottom:50%}.xl\:ml-3\/6{margin-left:50%}.xl\:mt-4\/6{margin-top:66.666667%}.xl\:mr-4\/6{margin-right:66.666667%}.xl\:mb-4\/6{margin-bottom:66.666667%}.xl\:ml-4\/6{margin-left:66.666667%}.xl\:mt-5\/6{margin-top:83.333333%}.xl\:mr-5\/6{margin-right:83.333333%}.xl\:mb-5\/6{margin-bottom:83.333333%}.xl\:ml-5\/6{margin-left:83.333333%}.xl\:mt-1\/12{margin-top:8.333333%}.xl\:mr-1\/12{margin-right:8.333333%}.xl\:mb-1\/12{margin-bottom:8.333333%}.xl\:ml-1\/12{margin-left:8.333333%}.xl\:mt-2\/12{margin-top:16.666667%}.xl\:mr-2\/12{margin-right:16.666667%}.xl\:mb-2\/12{margin-bottom:16.666667%}.xl\:ml-2\/12{margin-left:16.666667%}.xl\:mt-3\/12{margin-top:25%}.xl\:mr-3\/12{margin-right:25%}.xl\:mb-3\/12{margin-bottom:25%}.xl\:ml-3\/12{margin-left:25%}.xl\:mt-4\/12{margin-top:33.333333%}.xl\:mr-4\/12{margin-right:33.333333%}.xl\:mb-4\/12{margin-bottom:33.333333%}.xl\:ml-4\/12{margin-left:33.333333%}.xl\:mt-5\/12{margin-top:41.666667%}.xl\:mr-5\/12{margin-right:41.666667%}.xl\:mb-5\/12{margin-bottom:41.666667%}.xl\:ml-5\/12{margin-left:41.666667%}.xl\:mt-6\/12{margin-top:50%}.xl\:mr-6\/12{margin-right:50%}.xl\:mb-6\/12{margin-bottom:50%}.xl\:ml-6\/12{margin-left:50%}.xl\:mt-7\/12{margin-top:58.333333%}.xl\:mr-7\/12{margin-right:58.333333%}.xl\:mb-7\/12{margin-bottom:58.333333%}.xl\:ml-7\/12{margin-left:58.333333%}.xl\:mt-8\/12{margin-top:66.666667%}.xl\:mr-8\/12{margin-right:66.666667%}.xl\:mb-8\/12{margin-bottom:66.666667%}.xl\:ml-8\/12{margin-left:66.666667%}.xl\:mt-9\/12{margin-top:75%}.xl\:mr-9\/12{margin-right:75%}.xl\:mb-9\/12{margin-bottom:75%}.xl\:ml-9\/12{margin-left:75%}.xl\:mt-10\/12{margin-top:83.333333%}.xl\:mr-10\/12{margin-right:83.333333%}.xl\:mb-10\/12{margin-bottom:83.333333%}.xl\:ml-10\/12{margin-left:83.333333%}.xl\:mt-11\/12{margin-top:91.666667%}.xl\:mr-11\/12{margin-right:91.666667%}.xl\:mb-11\/12{margin-bottom:91.666667%}.xl\:ml-11\/12{margin-left:91.666667%}.xl\:mt-full{margin-top:100%}.xl\:mr-full{margin-right:100%}.xl\:mb-full{margin-bottom:100%}.xl\:ml-full{margin-left:100%}.xl\:-mt-1{margin-top:-.25rem}.xl\:-mr-1{margin-right:-.25rem}.xl\:-mb-1{margin-bottom:-.25rem}.xl\:-ml-1{margin-left:-.25rem}.xl\:-mt-2{margin-top:-.5rem}.xl\:-mr-2{margin-right:-.5rem}.xl\:-mb-2{margin-bottom:-.5rem}.xl\:-ml-2{margin-left:-.5rem}.xl\:-mt-3{margin-top:-.75rem}.xl\:-mr-3{margin-right:-.75rem}.xl\:-mb-3{margin-bottom:-.75rem}.xl\:-ml-3{margin-left:-.75rem}.xl\:-mt-4{margin-top:-1rem}.xl\:-mr-4{margin-right:-1rem}.xl\:-mb-4{margin-bottom:-1rem}.xl\:-ml-4{margin-left:-1rem}.xl\:-mt-5{margin-top:-1.25rem}.xl\:-mr-5{margin-right:-1.25rem}.xl\:-mb-5{margin-bottom:-1.25rem}.xl\:-ml-5{margin-left:-1.25rem}.xl\:-mt-6{margin-top:-1.5rem}.xl\:-mr-6{margin-right:-1.5rem}.xl\:-mb-6{margin-bottom:-1.5rem}.xl\:-ml-6{margin-left:-1.5rem}.xl\:-mt-7{margin-top:-1.75rem}.xl\:-mr-7{margin-right:-1.75rem}.xl\:-mb-7{margin-bottom:-1.75rem}.xl\:-ml-7{margin-left:-1.75rem}.xl\:-mt-8{margin-top:-2rem}.xl\:-mr-8{margin-right:-2rem}.xl\:-mb-8{margin-bottom:-2rem}.xl\:-ml-8{margin-left:-2rem}.xl\:-mt-9{margin-top:-2.25rem}.xl\:-mr-9{margin-right:-2.25rem}.xl\:-mb-9{margin-bottom:-2.25rem}.xl\:-ml-9{margin-left:-2.25rem}.xl\:-mt-10{margin-top:-2.5rem}.xl\:-mr-10{margin-right:-2.5rem}.xl\:-mb-10{margin-bottom:-2.5rem}.xl\:-ml-10{margin-left:-2.5rem}.xl\:-mt-11{margin-top:-2.75rem}.xl\:-mr-11{margin-right:-2.75rem}.xl\:-mb-11{margin-bottom:-2.75rem}.xl\:-ml-11{margin-left:-2.75rem}.xl\:-mt-12{margin-top:-3rem}.xl\:-mr-12{margin-right:-3rem}.xl\:-mb-12{margin-bottom:-3rem}.xl\:-ml-12{margin-left:-3rem}.xl\:-mt-13{margin-top:-3.25rem}.xl\:-mr-13{margin-right:-3.25rem}.xl\:-mb-13{margin-bottom:-3.25rem}.xl\:-ml-13{margin-left:-3.25rem}.xl\:-mt-14{margin-top:-3.5rem}.xl\:-mr-14{margin-right:-3.5rem}.xl\:-mb-14{margin-bottom:-3.5rem}.xl\:-ml-14{margin-left:-3.5rem}.xl\:-mt-15{margin-top:-3.75rem}.xl\:-mr-15{margin-right:-3.75rem}.xl\:-mb-15{margin-bottom:-3.75rem}.xl\:-ml-15{margin-left:-3.75rem}.xl\:-mt-16{margin-top:-4rem}.xl\:-mr-16{margin-right:-4rem}.xl\:-mb-16{margin-bottom:-4rem}.xl\:-ml-16{margin-left:-4rem}.xl\:-mt-20{margin-top:-5rem}.xl\:-mr-20{margin-right:-5rem}.xl\:-mb-20{margin-bottom:-5rem}.xl\:-ml-20{margin-left:-5rem}.xl\:-mt-24{margin-top:-6rem}.xl\:-mr-24{margin-right:-6rem}.xl\:-mb-24{margin-bottom:-6rem}.xl\:-ml-24{margin-left:-6rem}.xl\:-mt-28{margin-top:-7rem}.xl\:-mr-28{margin-right:-7rem}.xl\:-mb-28{margin-bottom:-7rem}.xl\:-ml-28{margin-left:-7rem}.xl\:-mt-32{margin-top:-8rem}.xl\:-mr-32{margin-right:-8rem}.xl\:-mb-32{margin-bottom:-8rem}.xl\:-ml-32{margin-left:-8rem}.xl\:-mt-36{margin-top:-9rem}.xl\:-mr-36{margin-right:-9rem}.xl\:-mb-36{margin-bottom:-9rem}.xl\:-ml-36{margin-left:-9rem}.xl\:-mt-40{margin-top:-10rem}.xl\:-mr-40{margin-right:-10rem}.xl\:-mb-40{margin-bottom:-10rem}.xl\:-ml-40{margin-left:-10rem}.xl\:-mt-44{margin-top:-11rem}.xl\:-mr-44{margin-right:-11rem}.xl\:-mb-44{margin-bottom:-11rem}.xl\:-ml-44{margin-left:-11rem}.xl\:-mt-48{margin-top:-12rem}.xl\:-mr-48{margin-right:-12rem}.xl\:-mb-48{margin-bottom:-12rem}.xl\:-ml-48{margin-left:-12rem}.xl\:-mt-52{margin-top:-13rem}.xl\:-mr-52{margin-right:-13rem}.xl\:-mb-52{margin-bottom:-13rem}.xl\:-ml-52{margin-left:-13rem}.xl\:-mt-56{margin-top:-14rem}.xl\:-mr-56{margin-right:-14rem}.xl\:-mb-56{margin-bottom:-14rem}.xl\:-ml-56{margin-left:-14rem}.xl\:-mt-60{margin-top:-15rem}.xl\:-mr-60{margin-right:-15rem}.xl\:-mb-60{margin-bottom:-15rem}.xl\:-ml-60{margin-left:-15rem}.xl\:-mt-64{margin-top:-16rem}.xl\:-mr-64{margin-right:-16rem}.xl\:-mb-64{margin-bottom:-16rem}.xl\:-ml-64{margin-left:-16rem}.xl\:-mt-72{margin-top:-18rem}.xl\:-mr-72{margin-right:-18rem}.xl\:-mb-72{margin-bottom:-18rem}.xl\:-ml-72{margin-left:-18rem}.xl\:-mt-80{margin-top:-20rem}.xl\:-mr-80{margin-right:-20rem}.xl\:-mb-80{margin-bottom:-20rem}.xl\:-ml-80{margin-left:-20rem}.xl\:-mt-96{margin-top:-24rem}.xl\:-mr-96{margin-right:-24rem}.xl\:-mb-96{margin-bottom:-24rem}.xl\:-ml-96{margin-left:-24rem}.xl\:-mt-px{margin-top:-1px}.xl\:-mr-px{margin-right:-1px}.xl\:-mb-px{margin-bottom:-1px}.xl\:-ml-px{margin-left:-1px}.xl\:-mt-0\.5{margin-top:-.125rem}.xl\:-mr-0\.5{margin-right:-.125rem}.xl\:-mb-0\.5{margin-bottom:-.125rem}.xl\:-ml-0\.5{margin-left:-.125rem}.xl\:-mt-1\.5{margin-top:-.375rem}.xl\:-mr-1\.5{margin-right:-.375rem}.xl\:-mb-1\.5{margin-bottom:-.375rem}.xl\:-ml-1\.5{margin-left:-.375rem}.xl\:-mt-2\.5{margin-top:-.625rem}.xl\:-mr-2\.5{margin-right:-.625rem}.xl\:-mb-2\.5{margin-bottom:-.625rem}.xl\:-ml-2\.5{margin-left:-.625rem}.xl\:-mt-3\.5{margin-top:-.875rem}.xl\:-mr-3\.5{margin-right:-.875rem}.xl\:-mb-3\.5{margin-bottom:-.875rem}.xl\:-ml-3\.5{margin-left:-.875rem}.xl\:-mt-1\/2{margin-top:-50%}.xl\:-mr-1\/2{margin-right:-50%}.xl\:-mb-1\/2{margin-bottom:-50%}.xl\:-ml-1\/2{margin-left:-50%}.xl\:-mt-1\/3{margin-top:-33.33333%}.xl\:-mr-1\/3{margin-right:-33.33333%}.xl\:-mb-1\/3{margin-bottom:-33.33333%}.xl\:-ml-1\/3{margin-left:-33.33333%}.xl\:-mt-2\/3{margin-top:-66.66667%}.xl\:-mr-2\/3{margin-right:-66.66667%}.xl\:-mb-2\/3{margin-bottom:-66.66667%}.xl\:-ml-2\/3{margin-left:-66.66667%}.xl\:-mt-1\/4{margin-top:-25%}.xl\:-mr-1\/4{margin-right:-25%}.xl\:-mb-1\/4{margin-bottom:-25%}.xl\:-ml-1\/4{margin-left:-25%}.xl\:-mt-2\/4{margin-top:-50%}.xl\:-mr-2\/4{margin-right:-50%}.xl\:-mb-2\/4{margin-bottom:-50%}.xl\:-ml-2\/4{margin-left:-50%}.xl\:-mt-3\/4{margin-top:-75%}.xl\:-mr-3\/4{margin-right:-75%}.xl\:-mb-3\/4{margin-bottom:-75%}.xl\:-ml-3\/4{margin-left:-75%}.xl\:-mt-1\/5{margin-top:-20%}.xl\:-mr-1\/5{margin-right:-20%}.xl\:-mb-1\/5{margin-bottom:-20%}.xl\:-ml-1\/5{margin-left:-20%}.xl\:-mt-2\/5{margin-top:-40%}.xl\:-mr-2\/5{margin-right:-40%}.xl\:-mb-2\/5{margin-bottom:-40%}.xl\:-ml-2\/5{margin-left:-40%}.xl\:-mt-3\/5{margin-top:-60%}.xl\:-mr-3\/5{margin-right:-60%}.xl\:-mb-3\/5{margin-bottom:-60%}.xl\:-ml-3\/5{margin-left:-60%}.xl\:-mt-4\/5{margin-top:-80%}.xl\:-mr-4\/5{margin-right:-80%}.xl\:-mb-4\/5{margin-bottom:-80%}.xl\:-ml-4\/5{margin-left:-80%}.xl\:-mt-1\/6{margin-top:-16.66667%}.xl\:-mr-1\/6{margin-right:-16.66667%}.xl\:-mb-1\/6{margin-bottom:-16.66667%}.xl\:-ml-1\/6{margin-left:-16.66667%}.xl\:-mt-2\/6{margin-top:-33.33333%}.xl\:-mr-2\/6{margin-right:-33.33333%}.xl\:-mb-2\/6{margin-bottom:-33.33333%}.xl\:-ml-2\/6{margin-left:-33.33333%}.xl\:-mt-3\/6{margin-top:-50%}.xl\:-mr-3\/6{margin-right:-50%}.xl\:-mb-3\/6{margin-bottom:-50%}.xl\:-ml-3\/6{margin-left:-50%}.xl\:-mt-4\/6{margin-top:-66.66667%}.xl\:-mr-4\/6{margin-right:-66.66667%}.xl\:-mb-4\/6{margin-bottom:-66.66667%}.xl\:-ml-4\/6{margin-left:-66.66667%}.xl\:-mt-5\/6{margin-top:-83.33333%}.xl\:-mr-5\/6{margin-right:-83.33333%}.xl\:-mb-5\/6{margin-bottom:-83.33333%}.xl\:-ml-5\/6{margin-left:-83.33333%}.xl\:-mt-1\/12{margin-top:-8.33333%}.xl\:-mr-1\/12{margin-right:-8.33333%}.xl\:-mb-1\/12{margin-bottom:-8.33333%}.xl\:-ml-1\/12{margin-left:-8.33333%}.xl\:-mt-2\/12{margin-top:-16.66667%}.xl\:-mr-2\/12{margin-right:-16.66667%}.xl\:-mb-2\/12{margin-bottom:-16.66667%}.xl\:-ml-2\/12{margin-left:-16.66667%}.xl\:-mt-3\/12{margin-top:-25%}.xl\:-mr-3\/12{margin-right:-25%}.xl\:-mb-3\/12{margin-bottom:-25%}.xl\:-ml-3\/12{margin-left:-25%}.xl\:-mt-4\/12{margin-top:-33.33333%}.xl\:-mr-4\/12{margin-right:-33.33333%}.xl\:-mb-4\/12{margin-bottom:-33.33333%}.xl\:-ml-4\/12{margin-left:-33.33333%}.xl\:-mt-5\/12{margin-top:-41.66667%}.xl\:-mr-5\/12{margin-right:-41.66667%}.xl\:-mb-5\/12{margin-bottom:-41.66667%}.xl\:-ml-5\/12{margin-left:-41.66667%}.xl\:-mt-6\/12{margin-top:-50%}.xl\:-mr-6\/12{margin-right:-50%}.xl\:-mb-6\/12{margin-bottom:-50%}.xl\:-ml-6\/12{margin-left:-50%}.xl\:-mt-7\/12{margin-top:-58.33333%}.xl\:-mr-7\/12{margin-right:-58.33333%}.xl\:-mb-7\/12{margin-bottom:-58.33333%}.xl\:-ml-7\/12{margin-left:-58.33333%}.xl\:-mt-8\/12{margin-top:-66.66667%}.xl\:-mr-8\/12{margin-right:-66.66667%}.xl\:-mb-8\/12{margin-bottom:-66.66667%}.xl\:-ml-8\/12{margin-left:-66.66667%}.xl\:-mt-9\/12{margin-top:-75%}.xl\:-mr-9\/12{margin-right:-75%}.xl\:-mb-9\/12{margin-bottom:-75%}.xl\:-ml-9\/12{margin-left:-75%}.xl\:-mt-10\/12{margin-top:-83.33333%}.xl\:-mr-10\/12{margin-right:-83.33333%}.xl\:-mb-10\/12{margin-bottom:-83.33333%}.xl\:-ml-10\/12{margin-left:-83.33333%}.xl\:-mt-11\/12{margin-top:-91.66667%}.xl\:-mr-11\/12{margin-right:-91.66667%}.xl\:-mb-11\/12{margin-bottom:-91.66667%}.xl\:-ml-11\/12{margin-left:-91.66667%}.xl\:-mt-full{margin-top:-100%}.xl\:-mr-full{margin-right:-100%}.xl\:-mb-full{margin-bottom:-100%}.xl\:-ml-full{margin-left:-100%}.xl\:max-h-0{max-height:0}.xl\:max-h-1{max-height:.25rem}.xl\:max-h-2{max-height:.5rem}.xl\:max-h-3{max-height:.75rem}.xl\:max-h-4{max-height:1rem}.xl\:max-h-5{max-height:1.25rem}.xl\:max-h-6{max-height:1.5rem}.xl\:max-h-7{max-height:1.75rem}.xl\:max-h-8{max-height:2rem}.xl\:max-h-9{max-height:2.25rem}.xl\:max-h-10{max-height:2.5rem}.xl\:max-h-11{max-height:2.75rem}.xl\:max-h-12{max-height:3rem}.xl\:max-h-13{max-height:3.25rem}.xl\:max-h-14{max-height:3.5rem}.xl\:max-h-15{max-height:3.75rem}.xl\:max-h-16{max-height:4rem}.xl\:max-h-20{max-height:5rem}.xl\:max-h-24{max-height:6rem}.xl\:max-h-28{max-height:7rem}.xl\:max-h-32{max-height:8rem}.xl\:max-h-36{max-height:9rem}.xl\:max-h-40{max-height:10rem}.xl\:max-h-44{max-height:11rem}.xl\:max-h-48{max-height:12rem}.xl\:max-h-52{max-height:13rem}.xl\:max-h-56{max-height:14rem}.xl\:max-h-60{max-height:15rem}.xl\:max-h-64{max-height:16rem}.xl\:max-h-72{max-height:18rem}.xl\:max-h-80{max-height:20rem}.xl\:max-h-96{max-height:24rem}.xl\:max-h-screen{max-height:100vh}.xl\:max-h-px{max-height:1px}.xl\:max-h-0\.5{max-height:.125rem}.xl\:max-h-1\.5{max-height:.375rem}.xl\:max-h-2\.5{max-height:.625rem}.xl\:max-h-3\.5{max-height:.875rem}.xl\:max-h-1\/2{max-height:50%}.xl\:max-h-1\/3{max-height:33.333333%}.xl\:max-h-2\/3{max-height:66.666667%}.xl\:max-h-1\/4{max-height:25%}.xl\:max-h-2\/4{max-height:50%}.xl\:max-h-3\/4{max-height:75%}.xl\:max-h-1\/5{max-height:20%}.xl\:max-h-2\/5{max-height:40%}.xl\:max-h-3\/5{max-height:60%}.xl\:max-h-4\/5{max-height:80%}.xl\:max-h-1\/6{max-height:16.666667%}.xl\:max-h-2\/6{max-height:33.333333%}.xl\:max-h-3\/6{max-height:50%}.xl\:max-h-4\/6{max-height:66.666667%}.xl\:max-h-5\/6{max-height:83.333333%}.xl\:max-h-1\/12{max-height:8.333333%}.xl\:max-h-2\/12{max-height:16.666667%}.xl\:max-h-3\/12{max-height:25%}.xl\:max-h-4\/12{max-height:33.333333%}.xl\:max-h-5\/12{max-height:41.666667%}.xl\:max-h-6\/12{max-height:50%}.xl\:max-h-7\/12{max-height:58.333333%}.xl\:max-h-8\/12{max-height:66.666667%}.xl\:max-h-9\/12{max-height:75%}.xl\:max-h-10\/12{max-height:83.333333%}.xl\:max-h-11\/12{max-height:91.666667%}.xl\:max-h-full{max-height:100%}.xl\:max-w-0{max-width:0}.xl\:max-w-none{max-width:none}.xl\:max-w-xs{max-width:20rem}.xl\:max-w-sm{max-width:24rem}.xl\:max-w-md{max-width:28rem}.xl\:max-w-lg{max-width:32rem}.xl\:max-w-xl{max-width:36rem}.xl\:max-w-2xl{max-width:42rem}.xl\:max-w-3xl{max-width:48rem}.xl\:max-w-4xl{max-width:56rem}.xl\:max-w-5xl{max-width:64rem}.xl\:max-w-6xl{max-width:72rem}.xl\:max-w-7xl{max-width:80rem}.xl\:max-w-full{max-width:100%}.xl\:max-w-min-content{max-width:-webkit-min-content;max-width:-moz-min-content;max-width:min-content}.xl\:max-w-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.xl\:max-w-prose{max-width:65ch}.xl\:max-w-screen-sm{max-width:640px}.xl\:max-w-screen-md{max-width:768px}.xl\:max-w-screen-lg{max-width:1024px}.xl\:max-w-screen-xl{max-width:1280px}.xl\:min-h-0{min-height:0}.xl\:min-h-full{min-height:100%}.xl\:min-h-screen{min-height:100vh}.xl\:min-w-0{min-width:0}.xl\:min-w-full{min-width:100%}.xl\:min-w-min-content{min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.xl\:min-w-max-content{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.xl\:object-contain{-o-object-fit:contain;object-fit:contain}.xl\:object-cover{-o-object-fit:cover;object-fit:cover}.xl\:object-fill{-o-object-fit:fill;object-fit:fill}.xl\:object-none{-o-object-fit:none;object-fit:none}.xl\:object-scale-down{-o-object-fit:scale-down;object-fit:scale-down}.xl\:object-bottom{-o-object-position:bottom;object-position:bottom}.xl\:object-center{-o-object-position:center;object-position:center}.xl\:object-left{-o-object-position:left;object-position:left}.xl\:object-left-bottom{-o-object-position:left bottom;object-position:left bottom}.xl\:object-left-top{-o-object-position:left top;object-position:left top}.xl\:object-right{-o-object-position:right;object-position:right}.xl\:object-right-bottom{-o-object-position:right bottom;object-position:right bottom}.xl\:object-right-top{-o-object-position:right top;object-position:right top}.xl\:object-top{-o-object-position:top;object-position:top}.xl\:opacity-0{opacity:0}.xl\:opacity-25{opacity:.25}.xl\:opacity-50{opacity:.5}.xl\:opacity-75{opacity:.75}.xl\:opacity-100{opacity:1}.xl\:hover\:opacity-0:hover{opacity:0}.xl\:hover\:opacity-25:hover{opacity:.25}.xl\:hover\:opacity-50:hover{opacity:.5}.xl\:hover\:opacity-75:hover{opacity:.75}.xl\:hover\:opacity-100:hover{opacity:1}.xl\:focus\:opacity-0:focus{opacity:0}.xl\:focus\:opacity-25:focus{opacity:.25}.xl\:focus\:opacity-50:focus{opacity:.5}.xl\:focus\:opacity-75:focus{opacity:.75}.xl\:focus\:opacity-100:focus{opacity:1}.xl\:outline-none{outline:0}.xl\:focus\:outline-none:focus{outline:0}.xl\:overflow-auto{overflow:auto}.xl\:overflow-hidden{overflow:hidden}.xl\:overflow-visible{overflow:visible}.xl\:overflow-scroll{overflow:scroll}.xl\:overflow-x-auto{overflow-x:auto}.xl\:overflow-y-auto{overflow-y:auto}.xl\:overflow-x-hidden{overflow-x:hidden}.xl\:overflow-y-hidden{overflow-y:hidden}.xl\:overflow-x-visible{overflow-x:visible}.xl\:overflow-y-visible{overflow-y:visible}.xl\:overflow-x-scroll{overflow-x:scroll}.xl\:overflow-y-scroll{overflow-y:scroll}.xl\:scrolling-touch{-webkit-overflow-scrolling:touch}.xl\:scrolling-auto{-webkit-overflow-scrolling:auto}.xl\:p-0{padding:0}.xl\:p-1{padding:.25rem}.xl\:p-2{padding:.5rem}.xl\:p-3{padding:.75rem}.xl\:p-4{padding:1rem}.xl\:p-5{padding:1.25rem}.xl\:p-6{padding:1.5rem}.xl\:p-7{padding:1.75rem}.xl\:p-8{padding:2rem}.xl\:p-9{padding:2.25rem}.xl\:p-10{padding:2.5rem}.xl\:p-11{padding:2.75rem}.xl\:p-12{padding:3rem}.xl\:p-13{padding:3.25rem}.xl\:p-14{padding:3.5rem}.xl\:p-15{padding:3.75rem}.xl\:p-16{padding:4rem}.xl\:p-20{padding:5rem}.xl\:p-24{padding:6rem}.xl\:p-28{padding:7rem}.xl\:p-32{padding:8rem}.xl\:p-36{padding:9rem}.xl\:p-40{padding:10rem}.xl\:p-44{padding:11rem}.xl\:p-48{padding:12rem}.xl\:p-52{padding:13rem}.xl\:p-56{padding:14rem}.xl\:p-60{padding:15rem}.xl\:p-64{padding:16rem}.xl\:p-72{padding:18rem}.xl\:p-80{padding:20rem}.xl\:p-96{padding:24rem}.xl\:p-px{padding:1px}.xl\:p-0\.5{padding:.125rem}.xl\:p-1\.5{padding:.375rem}.xl\:p-2\.5{padding:.625rem}.xl\:p-3\.5{padding:.875rem}.xl\:p-1\/2{padding:50%}.xl\:p-1\/3{padding:33.333333%}.xl\:p-2\/3{padding:66.666667%}.xl\:p-1\/4{padding:25%}.xl\:p-2\/4{padding:50%}.xl\:p-3\/4{padding:75%}.xl\:p-1\/5{padding:20%}.xl\:p-2\/5{padding:40%}.xl\:p-3\/5{padding:60%}.xl\:p-4\/5{padding:80%}.xl\:p-1\/6{padding:16.666667%}.xl\:p-2\/6{padding:33.333333%}.xl\:p-3\/6{padding:50%}.xl\:p-4\/6{padding:66.666667%}.xl\:p-5\/6{padding:83.333333%}.xl\:p-1\/12{padding:8.333333%}.xl\:p-2\/12{padding:16.666667%}.xl\:p-3\/12{padding:25%}.xl\:p-4\/12{padding:33.333333%}.xl\:p-5\/12{padding:41.666667%}.xl\:p-6\/12{padding:50%}.xl\:p-7\/12{padding:58.333333%}.xl\:p-8\/12{padding:66.666667%}.xl\:p-9\/12{padding:75%}.xl\:p-10\/12{padding:83.333333%}.xl\:p-11\/12{padding:91.666667%}.xl\:p-full{padding:100%}.xl\:py-0{padding-top:0;padding-bottom:0}.xl\:px-0{padding-left:0;padding-right:0}.xl\:py-1{padding-top:.25rem;padding-bottom:.25rem}.xl\:px-1{padding-left:.25rem;padding-right:.25rem}.xl\:py-2{padding-top:.5rem;padding-bottom:.5rem}.xl\:px-2{padding-left:.5rem;padding-right:.5rem}.xl\:py-3{padding-top:.75rem;padding-bottom:.75rem}.xl\:px-3{padding-left:.75rem;padding-right:.75rem}.xl\:py-4{padding-top:1rem;padding-bottom:1rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.xl\:px-5{padding-left:1.25rem;padding-right:1.25rem}.xl\:py-6{padding-top:1.5rem;padding-bottom:1.5rem}.xl\:px-6{padding-left:1.5rem;padding-right:1.5rem}.xl\:py-7{padding-top:1.75rem;padding-bottom:1.75rem}.xl\:px-7{padding-left:1.75rem;padding-right:1.75rem}.xl\:py-8{padding-top:2rem;padding-bottom:2rem}.xl\:px-8{padding-left:2rem;padding-right:2rem}.xl\:py-9{padding-top:2.25rem;padding-bottom:2.25rem}.xl\:px-9{padding-left:2.25rem;padding-right:2.25rem}.xl\:py-10{padding-top:2.5rem;padding-bottom:2.5rem}.xl\:px-10{padding-left:2.5rem;padding-right:2.5rem}.xl\:py-11{padding-top:2.75rem;padding-bottom:2.75rem}.xl\:px-11{padding-left:2.75rem;padding-right:2.75rem}.xl\:py-12{padding-top:3rem;padding-bottom:3rem}.xl\:px-12{padding-left:3rem;padding-right:3rem}.xl\:py-13{padding-top:3.25rem;padding-bottom:3.25rem}.xl\:px-13{padding-left:3.25rem;padding-right:3.25rem}.xl\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}.xl\:px-14{padding-left:3.5rem;padding-right:3.5rem}.xl\:py-15{padding-top:3.75rem;padding-bottom:3.75rem}.xl\:px-15{padding-left:3.75rem;padding-right:3.75rem}.xl\:py-16{padding-top:4rem;padding-bottom:4rem}.xl\:px-16{padding-left:4rem;padding-right:4rem}.xl\:py-20{padding-top:5rem;padding-bottom:5rem}.xl\:px-20{padding-left:5rem;padding-right:5rem}.xl\:py-24{padding-top:6rem;padding-bottom:6rem}.xl\:px-24{padding-left:6rem;padding-right:6rem}.xl\:py-28{padding-top:7rem;padding-bottom:7rem}.xl\:px-28{padding-left:7rem;padding-right:7rem}.xl\:py-32{padding-top:8rem;padding-bottom:8rem}.xl\:px-32{padding-left:8rem;padding-right:8rem}.xl\:py-36{padding-top:9rem;padding-bottom:9rem}.xl\:px-36{padding-left:9rem;padding-right:9rem}.xl\:py-40{padding-top:10rem;padding-bottom:10rem}.xl\:px-40{padding-left:10rem;padding-right:10rem}.xl\:py-44{padding-top:11rem;padding-bottom:11rem}.xl\:px-44{padding-left:11rem;padding-right:11rem}.xl\:py-48{padding-top:12rem;padding-bottom:12rem}.xl\:px-48{padding-left:12rem;padding-right:12rem}.xl\:py-52{padding-top:13rem;padding-bottom:13rem}.xl\:px-52{padding-left:13rem;padding-right:13rem}.xl\:py-56{padding-top:14rem;padding-bottom:14rem}.xl\:px-56{padding-left:14rem;padding-right:14rem}.xl\:py-60{padding-top:15rem;padding-bottom:15rem}.xl\:px-60{padding-left:15rem;padding-right:15rem}.xl\:py-64{padding-top:16rem;padding-bottom:16rem}.xl\:px-64{padding-left:16rem;padding-right:16rem}.xl\:py-72{padding-top:18rem;padding-bottom:18rem}.xl\:px-72{padding-left:18rem;padding-right:18rem}.xl\:py-80{padding-top:20rem;padding-bottom:20rem}.xl\:px-80{padding-left:20rem;padding-right:20rem}.xl\:py-96{padding-top:24rem;padding-bottom:24rem}.xl\:px-96{padding-left:24rem;padding-right:24rem}.xl\:py-px{padding-top:1px;padding-bottom:1px}.xl\:px-px{padding-left:1px;padding-right:1px}.xl\:py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.xl\:px-0\.5{padding-left:.125rem;padding-right:.125rem}.xl\:py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.xl\:px-1\.5{padding-left:.375rem;padding-right:.375rem}.xl\:py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.xl\:px-2\.5{padding-left:.625rem;padding-right:.625rem}.xl\:py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.xl\:px-3\.5{padding-left:.875rem;padding-right:.875rem}.xl\:py-1\/2{padding-top:50%;padding-bottom:50%}.xl\:px-1\/2{padding-left:50%;padding-right:50%}.xl\:py-1\/3{padding-top:33.333333%;padding-bottom:33.333333%}.xl\:px-1\/3{padding-left:33.333333%;padding-right:33.333333%}.xl\:py-2\/3{padding-top:66.666667%;padding-bottom:66.666667%}.xl\:px-2\/3{padding-left:66.666667%;padding-right:66.666667%}.xl\:py-1\/4{padding-top:25%;padding-bottom:25%}.xl\:px-1\/4{padding-left:25%;padding-right:25%}.xl\:py-2\/4{padding-top:50%;padding-bottom:50%}.xl\:px-2\/4{padding-left:50%;padding-right:50%}.xl\:py-3\/4{padding-top:75%;padding-bottom:75%}.xl\:px-3\/4{padding-left:75%;padding-right:75%}.xl\:py-1\/5{padding-top:20%;padding-bottom:20%}.xl\:px-1\/5{padding-left:20%;padding-right:20%}.xl\:py-2\/5{padding-top:40%;padding-bottom:40%}.xl\:px-2\/5{padding-left:40%;padding-right:40%}.xl\:py-3\/5{padding-top:60%;padding-bottom:60%}.xl\:px-3\/5{padding-left:60%;padding-right:60%}.xl\:py-4\/5{padding-top:80%;padding-bottom:80%}.xl\:px-4\/5{padding-left:80%;padding-right:80%}.xl\:py-1\/6{padding-top:16.666667%;padding-bottom:16.666667%}.xl\:px-1\/6{padding-left:16.666667%;padding-right:16.666667%}.xl\:py-2\/6{padding-top:33.333333%;padding-bottom:33.333333%}.xl\:px-2\/6{padding-left:33.333333%;padding-right:33.333333%}.xl\:py-3\/6{padding-top:50%;padding-bottom:50%}.xl\:px-3\/6{padding-left:50%;padding-right:50%}.xl\:py-4\/6{padding-top:66.666667%;padding-bottom:66.666667%}.xl\:px-4\/6{padding-left:66.666667%;padding-right:66.666667%}.xl\:py-5\/6{padding-top:83.333333%;padding-bottom:83.333333%}.xl\:px-5\/6{padding-left:83.333333%;padding-right:83.333333%}.xl\:py-1\/12{padding-top:8.333333%;padding-bottom:8.333333%}.xl\:px-1\/12{padding-left:8.333333%;padding-right:8.333333%}.xl\:py-2\/12{padding-top:16.666667%;padding-bottom:16.666667%}.xl\:px-2\/12{padding-left:16.666667%;padding-right:16.666667%}.xl\:py-3\/12{padding-top:25%;padding-bottom:25%}.xl\:px-3\/12{padding-left:25%;padding-right:25%}.xl\:py-4\/12{padding-top:33.333333%;padding-bottom:33.333333%}.xl\:px-4\/12{padding-left:33.333333%;padding-right:33.333333%}.xl\:py-5\/12{padding-top:41.666667%;padding-bottom:41.666667%}.xl\:px-5\/12{padding-left:41.666667%;padding-right:41.666667%}.xl\:py-6\/12{padding-top:50%;padding-bottom:50%}.xl\:px-6\/12{padding-left:50%;padding-right:50%}.xl\:py-7\/12{padding-top:58.333333%;padding-bottom:58.333333%}.xl\:px-7\/12{padding-left:58.333333%;padding-right:58.333333%}.xl\:py-8\/12{padding-top:66.666667%;padding-bottom:66.666667%}.xl\:px-8\/12{padding-left:66.666667%;padding-right:66.666667%}.xl\:py-9\/12{padding-top:75%;padding-bottom:75%}.xl\:px-9\/12{padding-left:75%;padding-right:75%}.xl\:py-10\/12{padding-top:83.333333%;padding-bottom:83.333333%}.xl\:px-10\/12{padding-left:83.333333%;padding-right:83.333333%}.xl\:py-11\/12{padding-top:91.666667%;padding-bottom:91.666667%}.xl\:px-11\/12{padding-left:91.666667%;padding-right:91.666667%}.xl\:py-full{padding-top:100%;padding-bottom:100%}.xl\:px-full{padding-left:100%;padding-right:100%}.xl\:pt-0{padding-top:0}.xl\:pr-0{padding-right:0}.xl\:pb-0{padding-bottom:0}.xl\:pl-0{padding-left:0}.xl\:pt-1{padding-top:.25rem}.xl\:pr-1{padding-right:.25rem}.xl\:pb-1{padding-bottom:.25rem}.xl\:pl-1{padding-left:.25rem}.xl\:pt-2{padding-top:.5rem}.xl\:pr-2{padding-right:.5rem}.xl\:pb-2{padding-bottom:.5rem}.xl\:pl-2{padding-left:.5rem}.xl\:pt-3{padding-top:.75rem}.xl\:pr-3{padding-right:.75rem}.xl\:pb-3{padding-bottom:.75rem}.xl\:pl-3{padding-left:.75rem}.xl\:pt-4{padding-top:1rem}.xl\:pr-4{padding-right:1rem}.xl\:pb-4{padding-bottom:1rem}.xl\:pl-4{padding-left:1rem}.xl\:pt-5{padding-top:1.25rem}.xl\:pr-5{padding-right:1.25rem}.xl\:pb-5{padding-bottom:1.25rem}.xl\:pl-5{padding-left:1.25rem}.xl\:pt-6{padding-top:1.5rem}.xl\:pr-6{padding-right:1.5rem}.xl\:pb-6{padding-bottom:1.5rem}.xl\:pl-6{padding-left:1.5rem}.xl\:pt-7{padding-top:1.75rem}.xl\:pr-7{padding-right:1.75rem}.xl\:pb-7{padding-bottom:1.75rem}.xl\:pl-7{padding-left:1.75rem}.xl\:pt-8{padding-top:2rem}.xl\:pr-8{padding-right:2rem}.xl\:pb-8{padding-bottom:2rem}.xl\:pl-8{padding-left:2rem}.xl\:pt-9{padding-top:2.25rem}.xl\:pr-9{padding-right:2.25rem}.xl\:pb-9{padding-bottom:2.25rem}.xl\:pl-9{padding-left:2.25rem}.xl\:pt-10{padding-top:2.5rem}.xl\:pr-10{padding-right:2.5rem}.xl\:pb-10{padding-bottom:2.5rem}.xl\:pl-10{padding-left:2.5rem}.xl\:pt-11{padding-top:2.75rem}.xl\:pr-11{padding-right:2.75rem}.xl\:pb-11{padding-bottom:2.75rem}.xl\:pl-11{padding-left:2.75rem}.xl\:pt-12{padding-top:3rem}.xl\:pr-12{padding-right:3rem}.xl\:pb-12{padding-bottom:3rem}.xl\:pl-12{padding-left:3rem}.xl\:pt-13{padding-top:3.25rem}.xl\:pr-13{padding-right:3.25rem}.xl\:pb-13{padding-bottom:3.25rem}.xl\:pl-13{padding-left:3.25rem}.xl\:pt-14{padding-top:3.5rem}.xl\:pr-14{padding-right:3.5rem}.xl\:pb-14{padding-bottom:3.5rem}.xl\:pl-14{padding-left:3.5rem}.xl\:pt-15{padding-top:3.75rem}.xl\:pr-15{padding-right:3.75rem}.xl\:pb-15{padding-bottom:3.75rem}.xl\:pl-15{padding-left:3.75rem}.xl\:pt-16{padding-top:4rem}.xl\:pr-16{padding-right:4rem}.xl\:pb-16{padding-bottom:4rem}.xl\:pl-16{padding-left:4rem}.xl\:pt-20{padding-top:5rem}.xl\:pr-20{padding-right:5rem}.xl\:pb-20{padding-bottom:5rem}.xl\:pl-20{padding-left:5rem}.xl\:pt-24{padding-top:6rem}.xl\:pr-24{padding-right:6rem}.xl\:pb-24{padding-bottom:6rem}.xl\:pl-24{padding-left:6rem}.xl\:pt-28{padding-top:7rem}.xl\:pr-28{padding-right:7rem}.xl\:pb-28{padding-bottom:7rem}.xl\:pl-28{padding-left:7rem}.xl\:pt-32{padding-top:8rem}.xl\:pr-32{padding-right:8rem}.xl\:pb-32{padding-bottom:8rem}.xl\:pl-32{padding-left:8rem}.xl\:pt-36{padding-top:9rem}.xl\:pr-36{padding-right:9rem}.xl\:pb-36{padding-bottom:9rem}.xl\:pl-36{padding-left:9rem}.xl\:pt-40{padding-top:10rem}.xl\:pr-40{padding-right:10rem}.xl\:pb-40{padding-bottom:10rem}.xl\:pl-40{padding-left:10rem}.xl\:pt-44{padding-top:11rem}.xl\:pr-44{padding-right:11rem}.xl\:pb-44{padding-bottom:11rem}.xl\:pl-44{padding-left:11rem}.xl\:pt-48{padding-top:12rem}.xl\:pr-48{padding-right:12rem}.xl\:pb-48{padding-bottom:12rem}.xl\:pl-48{padding-left:12rem}.xl\:pt-52{padding-top:13rem}.xl\:pr-52{padding-right:13rem}.xl\:pb-52{padding-bottom:13rem}.xl\:pl-52{padding-left:13rem}.xl\:pt-56{padding-top:14rem}.xl\:pr-56{padding-right:14rem}.xl\:pb-56{padding-bottom:14rem}.xl\:pl-56{padding-left:14rem}.xl\:pt-60{padding-top:15rem}.xl\:pr-60{padding-right:15rem}.xl\:pb-60{padding-bottom:15rem}.xl\:pl-60{padding-left:15rem}.xl\:pt-64{padding-top:16rem}.xl\:pr-64{padding-right:16rem}.xl\:pb-64{padding-bottom:16rem}.xl\:pl-64{padding-left:16rem}.xl\:pt-72{padding-top:18rem}.xl\:pr-72{padding-right:18rem}.xl\:pb-72{padding-bottom:18rem}.xl\:pl-72{padding-left:18rem}.xl\:pt-80{padding-top:20rem}.xl\:pr-80{padding-right:20rem}.xl\:pb-80{padding-bottom:20rem}.xl\:pl-80{padding-left:20rem}.xl\:pt-96{padding-top:24rem}.xl\:pr-96{padding-right:24rem}.xl\:pb-96{padding-bottom:24rem}.xl\:pl-96{padding-left:24rem}.xl\:pt-px{padding-top:1px}.xl\:pr-px{padding-right:1px}.xl\:pb-px{padding-bottom:1px}.xl\:pl-px{padding-left:1px}.xl\:pt-0\.5{padding-top:.125rem}.xl\:pr-0\.5{padding-right:.125rem}.xl\:pb-0\.5{padding-bottom:.125rem}.xl\:pl-0\.5{padding-left:.125rem}.xl\:pt-1\.5{padding-top:.375rem}.xl\:pr-1\.5{padding-right:.375rem}.xl\:pb-1\.5{padding-bottom:.375rem}.xl\:pl-1\.5{padding-left:.375rem}.xl\:pt-2\.5{padding-top:.625rem}.xl\:pr-2\.5{padding-right:.625rem}.xl\:pb-2\.5{padding-bottom:.625rem}.xl\:pl-2\.5{padding-left:.625rem}.xl\:pt-3\.5{padding-top:.875rem}.xl\:pr-3\.5{padding-right:.875rem}.xl\:pb-3\.5{padding-bottom:.875rem}.xl\:pl-3\.5{padding-left:.875rem}.xl\:pt-1\/2{padding-top:50%}.xl\:pr-1\/2{padding-right:50%}.xl\:pb-1\/2{padding-bottom:50%}.xl\:pl-1\/2{padding-left:50%}.xl\:pt-1\/3{padding-top:33.333333%}.xl\:pr-1\/3{padding-right:33.333333%}.xl\:pb-1\/3{padding-bottom:33.333333%}.xl\:pl-1\/3{padding-left:33.333333%}.xl\:pt-2\/3{padding-top:66.666667%}.xl\:pr-2\/3{padding-right:66.666667%}.xl\:pb-2\/3{padding-bottom:66.666667%}.xl\:pl-2\/3{padding-left:66.666667%}.xl\:pt-1\/4{padding-top:25%}.xl\:pr-1\/4{padding-right:25%}.xl\:pb-1\/4{padding-bottom:25%}.xl\:pl-1\/4{padding-left:25%}.xl\:pt-2\/4{padding-top:50%}.xl\:pr-2\/4{padding-right:50%}.xl\:pb-2\/4{padding-bottom:50%}.xl\:pl-2\/4{padding-left:50%}.xl\:pt-3\/4{padding-top:75%}.xl\:pr-3\/4{padding-right:75%}.xl\:pb-3\/4{padding-bottom:75%}.xl\:pl-3\/4{padding-left:75%}.xl\:pt-1\/5{padding-top:20%}.xl\:pr-1\/5{padding-right:20%}.xl\:pb-1\/5{padding-bottom:20%}.xl\:pl-1\/5{padding-left:20%}.xl\:pt-2\/5{padding-top:40%}.xl\:pr-2\/5{padding-right:40%}.xl\:pb-2\/5{padding-bottom:40%}.xl\:pl-2\/5{padding-left:40%}.xl\:pt-3\/5{padding-top:60%}.xl\:pr-3\/5{padding-right:60%}.xl\:pb-3\/5{padding-bottom:60%}.xl\:pl-3\/5{padding-left:60%}.xl\:pt-4\/5{padding-top:80%}.xl\:pr-4\/5{padding-right:80%}.xl\:pb-4\/5{padding-bottom:80%}.xl\:pl-4\/5{padding-left:80%}.xl\:pt-1\/6{padding-top:16.666667%}.xl\:pr-1\/6{padding-right:16.666667%}.xl\:pb-1\/6{padding-bottom:16.666667%}.xl\:pl-1\/6{padding-left:16.666667%}.xl\:pt-2\/6{padding-top:33.333333%}.xl\:pr-2\/6{padding-right:33.333333%}.xl\:pb-2\/6{padding-bottom:33.333333%}.xl\:pl-2\/6{padding-left:33.333333%}.xl\:pt-3\/6{padding-top:50%}.xl\:pr-3\/6{padding-right:50%}.xl\:pb-3\/6{padding-bottom:50%}.xl\:pl-3\/6{padding-left:50%}.xl\:pt-4\/6{padding-top:66.666667%}.xl\:pr-4\/6{padding-right:66.666667%}.xl\:pb-4\/6{padding-bottom:66.666667%}.xl\:pl-4\/6{padding-left:66.666667%}.xl\:pt-5\/6{padding-top:83.333333%}.xl\:pr-5\/6{padding-right:83.333333%}.xl\:pb-5\/6{padding-bottom:83.333333%}.xl\:pl-5\/6{padding-left:83.333333%}.xl\:pt-1\/12{padding-top:8.333333%}.xl\:pr-1\/12{padding-right:8.333333%}.xl\:pb-1\/12{padding-bottom:8.333333%}.xl\:pl-1\/12{padding-left:8.333333%}.xl\:pt-2\/12{padding-top:16.666667%}.xl\:pr-2\/12{padding-right:16.666667%}.xl\:pb-2\/12{padding-bottom:16.666667%}.xl\:pl-2\/12{padding-left:16.666667%}.xl\:pt-3\/12{padding-top:25%}.xl\:pr-3\/12{padding-right:25%}.xl\:pb-3\/12{padding-bottom:25%}.xl\:pl-3\/12{padding-left:25%}.xl\:pt-4\/12{padding-top:33.333333%}.xl\:pr-4\/12{padding-right:33.333333%}.xl\:pb-4\/12{padding-bottom:33.333333%}.xl\:pl-4\/12{padding-left:33.333333%}.xl\:pt-5\/12{padding-top:41.666667%}.xl\:pr-5\/12{padding-right:41.666667%}.xl\:pb-5\/12{padding-bottom:41.666667%}.xl\:pl-5\/12{padding-left:41.666667%}.xl\:pt-6\/12{padding-top:50%}.xl\:pr-6\/12{padding-right:50%}.xl\:pb-6\/12{padding-bottom:50%}.xl\:pl-6\/12{padding-left:50%}.xl\:pt-7\/12{padding-top:58.333333%}.xl\:pr-7\/12{padding-right:58.333333%}.xl\:pb-7\/12{padding-bottom:58.333333%}.xl\:pl-7\/12{padding-left:58.333333%}.xl\:pt-8\/12{padding-top:66.666667%}.xl\:pr-8\/12{padding-right:66.666667%}.xl\:pb-8\/12{padding-bottom:66.666667%}.xl\:pl-8\/12{padding-left:66.666667%}.xl\:pt-9\/12{padding-top:75%}.xl\:pr-9\/12{padding-right:75%}.xl\:pb-9\/12{padding-bottom:75%}.xl\:pl-9\/12{padding-left:75%}.xl\:pt-10\/12{padding-top:83.333333%}.xl\:pr-10\/12{padding-right:83.333333%}.xl\:pb-10\/12{padding-bottom:83.333333%}.xl\:pl-10\/12{padding-left:83.333333%}.xl\:pt-11\/12{padding-top:91.666667%}.xl\:pr-11\/12{padding-right:91.666667%}.xl\:pb-11\/12{padding-bottom:91.666667%}.xl\:pl-11\/12{padding-left:91.666667%}.xl\:pt-full{padding-top:100%}.xl\:pr-full{padding-right:100%}.xl\:pb-full{padding-bottom:100%}.xl\:pl-full{padding-left:100%}.xl\:placeholder-transparent::-moz-placeholder{color:transparent}.xl\:placeholder-transparent:-ms-input-placeholder{color:transparent}.xl\:placeholder-transparent::-ms-input-placeholder{color:transparent}.xl\:placeholder-transparent::placeholder{color:transparent}.xl\:placeholder-white::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:placeholder-white:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:placeholder-white::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:placeholder-white::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:placeholder-black::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:placeholder-black:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:placeholder-black::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:placeholder-black::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:placeholder-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:placeholder-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:placeholder-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:placeholder-gray-50::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:placeholder-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:placeholder-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:placeholder-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:placeholder-gray-100::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:placeholder-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:placeholder-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:placeholder-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:placeholder-gray-200::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:placeholder-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:placeholder-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:placeholder-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:placeholder-gray-300::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:placeholder-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:placeholder-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:placeholder-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:placeholder-gray-400::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:placeholder-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:placeholder-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:placeholder-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:placeholder-gray-500::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:placeholder-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:placeholder-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:placeholder-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:placeholder-gray-600::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:placeholder-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:placeholder-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:placeholder-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:placeholder-gray-700::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:placeholder-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:placeholder-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:placeholder-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:placeholder-gray-800::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:placeholder-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:placeholder-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:placeholder-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:placeholder-gray-900::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-50::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-50::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-100::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-100:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-100::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-100::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-200::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-200:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-200::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-200::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-300::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-300::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-400::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-400:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-400::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-400::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-500::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-600::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-700::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-700:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-700::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-700::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-800::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-800:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-800::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-800::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-900::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-900:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-900::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:placeholder-cool-gray-900::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:placeholder-red-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:placeholder-red-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:placeholder-red-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:placeholder-red-50::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:placeholder-red-100::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:placeholder-red-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:placeholder-red-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:placeholder-red-100::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:placeholder-red-200::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:placeholder-red-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:placeholder-red-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:placeholder-red-200::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:placeholder-red-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:placeholder-red-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:placeholder-red-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:placeholder-red-300::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:placeholder-red-400::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:placeholder-red-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:placeholder-red-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:placeholder-red-400::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:placeholder-red-500::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:placeholder-red-500:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:placeholder-red-500::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:placeholder-red-500::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:placeholder-red-600::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:placeholder-red-600:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:placeholder-red-600::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:placeholder-red-600::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:placeholder-red-700::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:placeholder-red-700:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:placeholder-red-700::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:placeholder-red-700::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:placeholder-red-800::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:placeholder-red-800:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:placeholder-red-800::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:placeholder-red-800::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:placeholder-red-900::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:placeholder-red-900:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:placeholder-red-900::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:placeholder-red-900::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:placeholder-orange-50::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:placeholder-orange-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:placeholder-orange-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:placeholder-orange-50::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:placeholder-orange-100::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:placeholder-orange-100:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:placeholder-orange-100::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:placeholder-orange-100::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:placeholder-orange-200::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:placeholder-orange-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:placeholder-orange-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:placeholder-orange-200::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:placeholder-orange-300::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:placeholder-orange-300:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:placeholder-orange-300::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:placeholder-orange-300::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:placeholder-orange-400::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:placeholder-orange-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:placeholder-orange-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:placeholder-orange-400::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:placeholder-orange-500::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:placeholder-orange-500:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:placeholder-orange-500::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:placeholder-orange-500::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:placeholder-orange-600::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:placeholder-orange-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:placeholder-orange-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:placeholder-orange-600::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:placeholder-orange-700::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:placeholder-orange-700:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:placeholder-orange-700::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:placeholder-orange-700::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:placeholder-orange-800::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:placeholder-orange-800:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:placeholder-orange-800::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:placeholder-orange-800::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:placeholder-orange-900::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:placeholder-orange-900:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:placeholder-orange-900::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:placeholder-orange-900::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:placeholder-yellow-50::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:placeholder-yellow-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:placeholder-yellow-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:placeholder-yellow-50::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:placeholder-yellow-100::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:placeholder-yellow-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:placeholder-yellow-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:placeholder-yellow-100::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:placeholder-yellow-200::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:placeholder-yellow-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:placeholder-yellow-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:placeholder-yellow-200::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:placeholder-yellow-300::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:placeholder-yellow-300:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:placeholder-yellow-300::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:placeholder-yellow-300::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:placeholder-yellow-400::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:placeholder-yellow-400:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:placeholder-yellow-400::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:placeholder-yellow-400::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:placeholder-yellow-500::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:placeholder-yellow-500:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:placeholder-yellow-500::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:placeholder-yellow-500::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:placeholder-yellow-600::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:placeholder-yellow-600:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:placeholder-yellow-600::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:placeholder-yellow-600::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:placeholder-yellow-700::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:placeholder-yellow-700:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:placeholder-yellow-700::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:placeholder-yellow-700::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:placeholder-yellow-800::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:placeholder-yellow-800:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:placeholder-yellow-800::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:placeholder-yellow-800::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:placeholder-yellow-900::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:placeholder-yellow-900:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:placeholder-yellow-900::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:placeholder-yellow-900::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:placeholder-green-50::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:placeholder-green-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:placeholder-green-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:placeholder-green-50::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:placeholder-green-100::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:placeholder-green-100:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:placeholder-green-100::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:placeholder-green-100::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:placeholder-green-200::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:placeholder-green-200:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:placeholder-green-200::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:placeholder-green-200::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:placeholder-green-300::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:placeholder-green-300:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:placeholder-green-300::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:placeholder-green-300::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:placeholder-green-400::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:placeholder-green-400:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:placeholder-green-400::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:placeholder-green-400::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:placeholder-green-500::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:placeholder-green-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:placeholder-green-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:placeholder-green-500::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:placeholder-green-600::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:placeholder-green-600:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:placeholder-green-600::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:placeholder-green-600::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:placeholder-green-700::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:placeholder-green-700:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:placeholder-green-700::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:placeholder-green-700::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:placeholder-green-800::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:placeholder-green-800:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:placeholder-green-800::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:placeholder-green-800::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:placeholder-green-900::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:placeholder-green-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:placeholder-green-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:placeholder-green-900::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:placeholder-teal-50::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:placeholder-teal-50:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:placeholder-teal-50::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:placeholder-teal-50::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:placeholder-teal-100::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:placeholder-teal-100:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:placeholder-teal-100::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:placeholder-teal-100::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:placeholder-teal-200::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:placeholder-teal-200:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:placeholder-teal-200::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:placeholder-teal-200::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:placeholder-teal-300::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:placeholder-teal-300:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:placeholder-teal-300::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:placeholder-teal-300::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:placeholder-teal-400::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:placeholder-teal-400:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:placeholder-teal-400::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:placeholder-teal-400::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:placeholder-teal-500::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:placeholder-teal-500:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:placeholder-teal-500::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:placeholder-teal-500::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:placeholder-teal-600::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:placeholder-teal-600:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:placeholder-teal-600::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:placeholder-teal-600::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:placeholder-teal-700::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:placeholder-teal-700:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:placeholder-teal-700::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:placeholder-teal-700::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:placeholder-teal-800::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:placeholder-teal-800:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:placeholder-teal-800::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:placeholder-teal-800::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:placeholder-teal-900::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:placeholder-teal-900:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:placeholder-teal-900::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:placeholder-teal-900::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:placeholder-blue-50::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:placeholder-blue-50:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:placeholder-blue-50::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:placeholder-blue-50::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:placeholder-blue-100::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:placeholder-blue-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:placeholder-blue-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:placeholder-blue-100::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:placeholder-blue-200::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:placeholder-blue-200:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:placeholder-blue-200::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:placeholder-blue-200::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:placeholder-blue-300::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:placeholder-blue-300:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:placeholder-blue-300::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:placeholder-blue-300::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:placeholder-blue-400::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:placeholder-blue-400:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:placeholder-blue-400::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:placeholder-blue-400::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:placeholder-blue-500::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:placeholder-blue-500:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:placeholder-blue-500::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:placeholder-blue-500::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:placeholder-blue-600::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:placeholder-blue-600:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:placeholder-blue-600::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:placeholder-blue-600::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:placeholder-blue-700::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:placeholder-blue-700:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:placeholder-blue-700::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:placeholder-blue-700::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:placeholder-blue-800::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:placeholder-blue-800:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:placeholder-blue-800::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:placeholder-blue-800::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:placeholder-blue-900::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:placeholder-blue-900:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:placeholder-blue-900::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:placeholder-blue-900::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:placeholder-indigo-50::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-50::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-100::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-100:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-100::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-100::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:placeholder-indigo-200::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:placeholder-indigo-200:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:placeholder-indigo-200::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:placeholder-indigo-200::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:placeholder-indigo-300::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:placeholder-indigo-300:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:placeholder-indigo-300::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:placeholder-indigo-300::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:placeholder-indigo-400::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:placeholder-indigo-400:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:placeholder-indigo-400::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:placeholder-indigo-400::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:placeholder-indigo-500::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:placeholder-indigo-500:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:placeholder-indigo-500::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:placeholder-indigo-500::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:placeholder-indigo-600::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:placeholder-indigo-600:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:placeholder-indigo-600::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:placeholder-indigo-600::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:placeholder-indigo-700::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:placeholder-indigo-700:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:placeholder-indigo-700::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:placeholder-indigo-700::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:placeholder-indigo-800::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:placeholder-indigo-800:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:placeholder-indigo-800::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:placeholder-indigo-800::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:placeholder-indigo-900::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:placeholder-indigo-900:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:placeholder-indigo-900::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:placeholder-indigo-900::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:placeholder-purple-50::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:placeholder-purple-50:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:placeholder-purple-50::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:placeholder-purple-50::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:placeholder-purple-100::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:placeholder-purple-100:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:placeholder-purple-100::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:placeholder-purple-100::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:placeholder-purple-200::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:placeholder-purple-200:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:placeholder-purple-200::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:placeholder-purple-200::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:placeholder-purple-300::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:placeholder-purple-300:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:placeholder-purple-300::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:placeholder-purple-300::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:placeholder-purple-400::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:placeholder-purple-400:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:placeholder-purple-400::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:placeholder-purple-400::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:placeholder-purple-500::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:placeholder-purple-500:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:placeholder-purple-500::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:placeholder-purple-500::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:placeholder-purple-600::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:placeholder-purple-600:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:placeholder-purple-600::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:placeholder-purple-600::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:placeholder-purple-700::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:placeholder-purple-700:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:placeholder-purple-700::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:placeholder-purple-700::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:placeholder-purple-800::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:placeholder-purple-800:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:placeholder-purple-800::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:placeholder-purple-800::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:placeholder-purple-900::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:placeholder-purple-900:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:placeholder-purple-900::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:placeholder-purple-900::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:placeholder-pink-50::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:placeholder-pink-50:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:placeholder-pink-50::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:placeholder-pink-50::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:placeholder-pink-100::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:placeholder-pink-100:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:placeholder-pink-100::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:placeholder-pink-100::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:placeholder-pink-200::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:placeholder-pink-200:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:placeholder-pink-200::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:placeholder-pink-200::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:placeholder-pink-300::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:placeholder-pink-300:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:placeholder-pink-300::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:placeholder-pink-300::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:placeholder-pink-400::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:placeholder-pink-400:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:placeholder-pink-400::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:placeholder-pink-400::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:placeholder-pink-500::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:placeholder-pink-500:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:placeholder-pink-500::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:placeholder-pink-500::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:placeholder-pink-600::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:placeholder-pink-600:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:placeholder-pink-600::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:placeholder-pink-600::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:placeholder-pink-700::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:placeholder-pink-700:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:placeholder-pink-700::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:placeholder-pink-700::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:placeholder-pink-800::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:placeholder-pink-800:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:placeholder-pink-800::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:placeholder-pink-800::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:placeholder-pink-900::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:placeholder-pink-900:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:placeholder-pink-900::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:placeholder-pink-900::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:focus\:placeholder-transparent:focus::-moz-placeholder{color:transparent}.xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder{color:transparent}.xl\:focus\:placeholder-transparent:focus::-ms-input-placeholder{color:transparent}.xl\:focus\:placeholder-transparent:focus::placeholder{color:transparent}.xl\:focus\:placeholder-white:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-white:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-white:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-white:focus::placeholder{--placeholder-opacity:1;color:#fff;color:rgba(255,255,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-black:focus::-moz-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:focus\:placeholder-black:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:focus\:placeholder-black:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:focus\:placeholder-black:focus::placeholder{--placeholder-opacity:1;color:#000;color:rgba(0,0,0,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-300:focus::placeholder{--placeholder-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-400:focus::placeholder{--placeholder-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-500:focus::placeholder{--placeholder-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-600:focus::placeholder{--placeholder-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-700:focus::placeholder{--placeholder-opacity:1;color:#374151;color:rgba(55,65,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-800:focus::placeholder{--placeholder-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-gray-900:focus::placeholder{--placeholder-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-50:focus::placeholder{--placeholder-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-100:focus::placeholder{--placeholder-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-200:focus::placeholder{--placeholder-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-300:focus::placeholder{--placeholder-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-400:focus::placeholder{--placeholder-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-500:focus::placeholder{--placeholder-opacity:1;color:#64748b;color:rgba(100,116,139,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-600:focus::placeholder{--placeholder-opacity:1;color:#475569;color:rgba(71,85,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-700:focus::placeholder{--placeholder-opacity:1;color:#364152;color:rgba(54,65,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-800:focus::placeholder{--placeholder-opacity:1;color:#27303f;color:rgba(39,48,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-cool-gray-900:focus::placeholder{--placeholder-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-100:focus::placeholder{--placeholder-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-200:focus::placeholder{--placeholder-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-400:focus::placeholder{--placeholder-opacity:1;color:#f98080;color:rgba(249,128,128,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-500:focus::placeholder{--placeholder-opacity:1;color:#f05252;color:rgba(240,82,82,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-600:focus::placeholder{--placeholder-opacity:1;color:#e02424;color:rgba(224,36,36,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-700:focus::placeholder{--placeholder-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-800:focus::placeholder{--placeholder-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:focus\:placeholder-red-900:focus::placeholder{--placeholder-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-50:focus::placeholder{--placeholder-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-100:focus::placeholder{--placeholder-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-200:focus::placeholder{--placeholder-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-300:focus::placeholder{--placeholder-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-400:focus::placeholder{--placeholder-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-500:focus::placeholder{--placeholder-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-600:focus::placeholder{--placeholder-opacity:1;color:#d03801;color:rgba(208,56,1,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-700:focus::placeholder{--placeholder-opacity:1;color:#b43403;color:rgba(180,52,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-800:focus::placeholder{--placeholder-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-orange-900:focus::placeholder{--placeholder-opacity:1;color:#73230d;color:rgba(115,35,13,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-50:focus::placeholder{--placeholder-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-100:focus::placeholder{--placeholder-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-200:focus::placeholder{--placeholder-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-300:focus::placeholder{--placeholder-opacity:1;color:#faca15;color:rgba(250,202,21,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-400:focus::placeholder{--placeholder-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-500:focus::placeholder{--placeholder-opacity:1;color:#c27803;color:rgba(194,120,3,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-600:focus::placeholder{--placeholder-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-700:focus::placeholder{--placeholder-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-800:focus::placeholder{--placeholder-opacity:1;color:#723b13;color:rgba(114,59,19,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:focus\:placeholder-yellow-900:focus::placeholder{--placeholder-opacity:1;color:#633112;color:rgba(99,49,18,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-50:focus::placeholder{--placeholder-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-100:focus::placeholder{--placeholder-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-200:focus::placeholder{--placeholder-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-300:focus::placeholder{--placeholder-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-400:focus::placeholder{--placeholder-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-500:focus::placeholder{--placeholder-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-600:focus::placeholder{--placeholder-opacity:1;color:#057a55;color:rgba(5,122,85,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-700:focus::placeholder{--placeholder-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-800:focus::placeholder{--placeholder-opacity:1;color:#03543f;color:rgba(3,84,63,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:focus\:placeholder-green-900:focus::placeholder{--placeholder-opacity:1;color:#014737;color:rgba(1,71,55,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-50:focus::placeholder{--placeholder-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-100:focus::placeholder{--placeholder-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-200:focus::placeholder{--placeholder-opacity:1;color:#afecef;color:rgba(175,236,239,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-300:focus::placeholder{--placeholder-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-400:focus::placeholder{--placeholder-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-500:focus::placeholder{--placeholder-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-600:focus::placeholder{--placeholder-opacity:1;color:#047481;color:rgba(4,116,129,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-700:focus::placeholder{--placeholder-opacity:1;color:#036672;color:rgba(3,102,114,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-800:focus::placeholder{--placeholder-opacity:1;color:#05505c;color:rgba(5,80,92,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-teal-900:focus::placeholder{--placeholder-opacity:1;color:#014451;color:rgba(1,68,81,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-50:focus::placeholder{--placeholder-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-100:focus::placeholder{--placeholder-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-200:focus::placeholder{--placeholder-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-300:focus::placeholder{--placeholder-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-400:focus::placeholder{--placeholder-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-500:focus::placeholder{--placeholder-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-600:focus::placeholder{--placeholder-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-700:focus::placeholder{--placeholder-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-800:focus::placeholder{--placeholder-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:focus\:placeholder-blue-900:focus::placeholder{--placeholder-opacity:1;color:#233876;color:rgba(35,56,118,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-50:focus::placeholder{--placeholder-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-100:focus::placeholder{--placeholder-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-200:focus::placeholder{--placeholder-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-300:focus::placeholder{--placeholder-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-400:focus::placeholder{--placeholder-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-500:focus::placeholder{--placeholder-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-600:focus::placeholder{--placeholder-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-700:focus::placeholder{--placeholder-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-800:focus::placeholder{--placeholder-opacity:1;color:#42389d;color:rgba(66,56,157,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:focus\:placeholder-indigo-900:focus::placeholder{--placeholder-opacity:1;color:#362f78;color:rgba(54,47,120,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-50:focus::placeholder{--placeholder-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-100:focus::placeholder{--placeholder-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-200:focus::placeholder{--placeholder-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-300:focus::placeholder{--placeholder-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-400:focus::placeholder{--placeholder-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-500:focus::placeholder{--placeholder-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-600:focus::placeholder{--placeholder-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-700:focus::placeholder{--placeholder-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-800:focus::placeholder{--placeholder-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:focus\:placeholder-purple-900:focus::placeholder{--placeholder-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-50:focus::-moz-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-50:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-50:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-50:focus::placeholder{--placeholder-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-100:focus::-moz-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-100:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-100:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-100:focus::placeholder{--placeholder-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-200:focus::-moz-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-200:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-200:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-200:focus::placeholder{--placeholder-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-300:focus::-moz-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-300:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-300:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-300:focus::placeholder{--placeholder-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-400:focus::-moz-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-400:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-400:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-400:focus::placeholder{--placeholder-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-500:focus::placeholder{--placeholder-opacity:1;color:#e74694;color:rgba(231,70,148,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-600:focus::placeholder{--placeholder-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-700:focus::-moz-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-700:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-700:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-700:focus::placeholder{--placeholder-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-800:focus::-moz-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-800:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-800:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-800:focus::placeholder{--placeholder-opacity:1;color:#99154b;color:rgba(153,21,75,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-900:focus::-moz-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-900:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-900:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:focus\:placeholder-pink-900:focus::placeholder{--placeholder-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--placeholder-opacity))}.xl\:placeholder-opacity-0::-moz-placeholder{--placeholder-opacity:0}.xl\:placeholder-opacity-0:-ms-input-placeholder{--placeholder-opacity:0}.xl\:placeholder-opacity-0::-ms-input-placeholder{--placeholder-opacity:0}.xl\:placeholder-opacity-0::placeholder{--placeholder-opacity:0}.xl\:placeholder-opacity-25::-moz-placeholder{--placeholder-opacity:0.25}.xl\:placeholder-opacity-25:-ms-input-placeholder{--placeholder-opacity:0.25}.xl\:placeholder-opacity-25::-ms-input-placeholder{--placeholder-opacity:0.25}.xl\:placeholder-opacity-25::placeholder{--placeholder-opacity:0.25}.xl\:placeholder-opacity-50::-moz-placeholder{--placeholder-opacity:0.5}.xl\:placeholder-opacity-50:-ms-input-placeholder{--placeholder-opacity:0.5}.xl\:placeholder-opacity-50::-ms-input-placeholder{--placeholder-opacity:0.5}.xl\:placeholder-opacity-50::placeholder{--placeholder-opacity:0.5}.xl\:placeholder-opacity-75::-moz-placeholder{--placeholder-opacity:0.75}.xl\:placeholder-opacity-75:-ms-input-placeholder{--placeholder-opacity:0.75}.xl\:placeholder-opacity-75::-ms-input-placeholder{--placeholder-opacity:0.75}.xl\:placeholder-opacity-75::placeholder{--placeholder-opacity:0.75}.xl\:placeholder-opacity-100::-moz-placeholder{--placeholder-opacity:1}.xl\:placeholder-opacity-100:-ms-input-placeholder{--placeholder-opacity:1}.xl\:placeholder-opacity-100::-ms-input-placeholder{--placeholder-opacity:1}.xl\:placeholder-opacity-100::placeholder{--placeholder-opacity:1}.xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder{--placeholder-opacity:0}.xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder{--placeholder-opacity:0}.xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder{--placeholder-opacity:0}.xl\:focus\:placeholder-opacity-0:focus::placeholder{--placeholder-opacity:0}.xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder{--placeholder-opacity:0.25}.xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder{--placeholder-opacity:0.25}.xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder{--placeholder-opacity:0.25}.xl\:focus\:placeholder-opacity-25:focus::placeholder{--placeholder-opacity:0.25}.xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder{--placeholder-opacity:0.5}.xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder{--placeholder-opacity:0.5}.xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder{--placeholder-opacity:0.5}.xl\:focus\:placeholder-opacity-50:focus::placeholder{--placeholder-opacity:0.5}.xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder{--placeholder-opacity:0.75}.xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder{--placeholder-opacity:0.75}.xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder{--placeholder-opacity:0.75}.xl\:focus\:placeholder-opacity-75:focus::placeholder{--placeholder-opacity:0.75}.xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder{--placeholder-opacity:1}.xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder{--placeholder-opacity:1}.xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder{--placeholder-opacity:1}.xl\:focus\:placeholder-opacity-100:focus::placeholder{--placeholder-opacity:1}.xl\:pointer-events-none{pointer-events:none}.xl\:pointer-events-auto{pointer-events:auto}.xl\:static{position:static}.xl\:fixed{position:fixed}.xl\:absolute{position:absolute}.xl\:relative{position:relative}.xl\:sticky{position:-webkit-sticky;position:sticky}.xl\:inset-0{top:0;right:0;bottom:0;left:0}.xl\:inset-1{top:.25rem;right:.25rem;bottom:.25rem;left:.25rem}.xl\:inset-2{top:.5rem;right:.5rem;bottom:.5rem;left:.5rem}.xl\:inset-3{top:.75rem;right:.75rem;bottom:.75rem;left:.75rem}.xl\:inset-4{top:1rem;right:1rem;bottom:1rem;left:1rem}.xl\:inset-5{top:1.25rem;right:1.25rem;bottom:1.25rem;left:1.25rem}.xl\:inset-6{top:1.5rem;right:1.5rem;bottom:1.5rem;left:1.5rem}.xl\:inset-7{top:1.75rem;right:1.75rem;bottom:1.75rem;left:1.75rem}.xl\:inset-8{top:2rem;right:2rem;bottom:2rem;left:2rem}.xl\:inset-9{top:2.25rem;right:2.25rem;bottom:2.25rem;left:2.25rem}.xl\:inset-10{top:2.5rem;right:2.5rem;bottom:2.5rem;left:2.5rem}.xl\:inset-11{top:2.75rem;right:2.75rem;bottom:2.75rem;left:2.75rem}.xl\:inset-12{top:3rem;right:3rem;bottom:3rem;left:3rem}.xl\:inset-13{top:3.25rem;right:3.25rem;bottom:3.25rem;left:3.25rem}.xl\:inset-14{top:3.5rem;right:3.5rem;bottom:3.5rem;left:3.5rem}.xl\:inset-15{top:3.75rem;right:3.75rem;bottom:3.75rem;left:3.75rem}.xl\:inset-16{top:4rem;right:4rem;bottom:4rem;left:4rem}.xl\:inset-20{top:5rem;right:5rem;bottom:5rem;left:5rem}.xl\:inset-24{top:6rem;right:6rem;bottom:6rem;left:6rem}.xl\:inset-28{top:7rem;right:7rem;bottom:7rem;left:7rem}.xl\:inset-32{top:8rem;right:8rem;bottom:8rem;left:8rem}.xl\:inset-36{top:9rem;right:9rem;bottom:9rem;left:9rem}.xl\:inset-40{top:10rem;right:10rem;bottom:10rem;left:10rem}.xl\:inset-44{top:11rem;right:11rem;bottom:11rem;left:11rem}.xl\:inset-48{top:12rem;right:12rem;bottom:12rem;left:12rem}.xl\:inset-52{top:13rem;right:13rem;bottom:13rem;left:13rem}.xl\:inset-56{top:14rem;right:14rem;bottom:14rem;left:14rem}.xl\:inset-60{top:15rem;right:15rem;bottom:15rem;left:15rem}.xl\:inset-64{top:16rem;right:16rem;bottom:16rem;left:16rem}.xl\:inset-72{top:18rem;right:18rem;bottom:18rem;left:18rem}.xl\:inset-80{top:20rem;right:20rem;bottom:20rem;left:20rem}.xl\:inset-96{top:24rem;right:24rem;bottom:24rem;left:24rem}.xl\:inset-auto{top:auto;right:auto;bottom:auto;left:auto}.xl\:inset-px{top:1px;right:1px;bottom:1px;left:1px}.xl\:inset-0\.5{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.xl\:inset-1\.5{top:.375rem;right:.375rem;bottom:.375rem;left:.375rem}.xl\:inset-2\.5{top:.625rem;right:.625rem;bottom:.625rem;left:.625rem}.xl\:inset-3\.5{top:.875rem;right:.875rem;bottom:.875rem;left:.875rem}.xl\:inset-1\/2{top:50%;right:50%;bottom:50%;left:50%}.xl\:inset-1\/3{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.xl\:inset-2\/3{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.xl\:inset-1\/4{top:25%;right:25%;bottom:25%;left:25%}.xl\:inset-2\/4{top:50%;right:50%;bottom:50%;left:50%}.xl\:inset-3\/4{top:75%;right:75%;bottom:75%;left:75%}.xl\:inset-1\/5{top:20%;right:20%;bottom:20%;left:20%}.xl\:inset-2\/5{top:40%;right:40%;bottom:40%;left:40%}.xl\:inset-3\/5{top:60%;right:60%;bottom:60%;left:60%}.xl\:inset-4\/5{top:80%;right:80%;bottom:80%;left:80%}.xl\:inset-1\/6{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.xl\:inset-2\/6{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.xl\:inset-3\/6{top:50%;right:50%;bottom:50%;left:50%}.xl\:inset-4\/6{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.xl\:inset-5\/6{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.xl\:inset-1\/12{top:8.333333%;right:8.333333%;bottom:8.333333%;left:8.333333%}.xl\:inset-2\/12{top:16.666667%;right:16.666667%;bottom:16.666667%;left:16.666667%}.xl\:inset-3\/12{top:25%;right:25%;bottom:25%;left:25%}.xl\:inset-4\/12{top:33.333333%;right:33.333333%;bottom:33.333333%;left:33.333333%}.xl\:inset-5\/12{top:41.666667%;right:41.666667%;bottom:41.666667%;left:41.666667%}.xl\:inset-6\/12{top:50%;right:50%;bottom:50%;left:50%}.xl\:inset-7\/12{top:58.333333%;right:58.333333%;bottom:58.333333%;left:58.333333%}.xl\:inset-8\/12{top:66.666667%;right:66.666667%;bottom:66.666667%;left:66.666667%}.xl\:inset-9\/12{top:75%;right:75%;bottom:75%;left:75%}.xl\:inset-10\/12{top:83.333333%;right:83.333333%;bottom:83.333333%;left:83.333333%}.xl\:inset-11\/12{top:91.666667%;right:91.666667%;bottom:91.666667%;left:91.666667%}.xl\:inset-full{top:100%;right:100%;bottom:100%;left:100%}.xl\:inset-y-0{top:0;bottom:0}.xl\:inset-x-0{right:0;left:0}.xl\:inset-y-1{top:.25rem;bottom:.25rem}.xl\:inset-x-1{right:.25rem;left:.25rem}.xl\:inset-y-2{top:.5rem;bottom:.5rem}.xl\:inset-x-2{right:.5rem;left:.5rem}.xl\:inset-y-3{top:.75rem;bottom:.75rem}.xl\:inset-x-3{right:.75rem;left:.75rem}.xl\:inset-y-4{top:1rem;bottom:1rem}.xl\:inset-x-4{right:1rem;left:1rem}.xl\:inset-y-5{top:1.25rem;bottom:1.25rem}.xl\:inset-x-5{right:1.25rem;left:1.25rem}.xl\:inset-y-6{top:1.5rem;bottom:1.5rem}.xl\:inset-x-6{right:1.5rem;left:1.5rem}.xl\:inset-y-7{top:1.75rem;bottom:1.75rem}.xl\:inset-x-7{right:1.75rem;left:1.75rem}.xl\:inset-y-8{top:2rem;bottom:2rem}.xl\:inset-x-8{right:2rem;left:2rem}.xl\:inset-y-9{top:2.25rem;bottom:2.25rem}.xl\:inset-x-9{right:2.25rem;left:2.25rem}.xl\:inset-y-10{top:2.5rem;bottom:2.5rem}.xl\:inset-x-10{right:2.5rem;left:2.5rem}.xl\:inset-y-11{top:2.75rem;bottom:2.75rem}.xl\:inset-x-11{right:2.75rem;left:2.75rem}.xl\:inset-y-12{top:3rem;bottom:3rem}.xl\:inset-x-12{right:3rem;left:3rem}.xl\:inset-y-13{top:3.25rem;bottom:3.25rem}.xl\:inset-x-13{right:3.25rem;left:3.25rem}.xl\:inset-y-14{top:3.5rem;bottom:3.5rem}.xl\:inset-x-14{right:3.5rem;left:3.5rem}.xl\:inset-y-15{top:3.75rem;bottom:3.75rem}.xl\:inset-x-15{right:3.75rem;left:3.75rem}.xl\:inset-y-16{top:4rem;bottom:4rem}.xl\:inset-x-16{right:4rem;left:4rem}.xl\:inset-y-20{top:5rem;bottom:5rem}.xl\:inset-x-20{right:5rem;left:5rem}.xl\:inset-y-24{top:6rem;bottom:6rem}.xl\:inset-x-24{right:6rem;left:6rem}.xl\:inset-y-28{top:7rem;bottom:7rem}.xl\:inset-x-28{right:7rem;left:7rem}.xl\:inset-y-32{top:8rem;bottom:8rem}.xl\:inset-x-32{right:8rem;left:8rem}.xl\:inset-y-36{top:9rem;bottom:9rem}.xl\:inset-x-36{right:9rem;left:9rem}.xl\:inset-y-40{top:10rem;bottom:10rem}.xl\:inset-x-40{right:10rem;left:10rem}.xl\:inset-y-44{top:11rem;bottom:11rem}.xl\:inset-x-44{right:11rem;left:11rem}.xl\:inset-y-48{top:12rem;bottom:12rem}.xl\:inset-x-48{right:12rem;left:12rem}.xl\:inset-y-52{top:13rem;bottom:13rem}.xl\:inset-x-52{right:13rem;left:13rem}.xl\:inset-y-56{top:14rem;bottom:14rem}.xl\:inset-x-56{right:14rem;left:14rem}.xl\:inset-y-60{top:15rem;bottom:15rem}.xl\:inset-x-60{right:15rem;left:15rem}.xl\:inset-y-64{top:16rem;bottom:16rem}.xl\:inset-x-64{right:16rem;left:16rem}.xl\:inset-y-72{top:18rem;bottom:18rem}.xl\:inset-x-72{right:18rem;left:18rem}.xl\:inset-y-80{top:20rem;bottom:20rem}.xl\:inset-x-80{right:20rem;left:20rem}.xl\:inset-y-96{top:24rem;bottom:24rem}.xl\:inset-x-96{right:24rem;left:24rem}.xl\:inset-y-auto{top:auto;bottom:auto}.xl\:inset-x-auto{right:auto;left:auto}.xl\:inset-y-px{top:1px;bottom:1px}.xl\:inset-x-px{right:1px;left:1px}.xl\:inset-y-0\.5{top:.125rem;bottom:.125rem}.xl\:inset-x-0\.5{right:.125rem;left:.125rem}.xl\:inset-y-1\.5{top:.375rem;bottom:.375rem}.xl\:inset-x-1\.5{right:.375rem;left:.375rem}.xl\:inset-y-2\.5{top:.625rem;bottom:.625rem}.xl\:inset-x-2\.5{right:.625rem;left:.625rem}.xl\:inset-y-3\.5{top:.875rem;bottom:.875rem}.xl\:inset-x-3\.5{right:.875rem;left:.875rem}.xl\:inset-y-1\/2{top:50%;bottom:50%}.xl\:inset-x-1\/2{right:50%;left:50%}.xl\:inset-y-1\/3{top:33.333333%;bottom:33.333333%}.xl\:inset-x-1\/3{right:33.333333%;left:33.333333%}.xl\:inset-y-2\/3{top:66.666667%;bottom:66.666667%}.xl\:inset-x-2\/3{right:66.666667%;left:66.666667%}.xl\:inset-y-1\/4{top:25%;bottom:25%}.xl\:inset-x-1\/4{right:25%;left:25%}.xl\:inset-y-2\/4{top:50%;bottom:50%}.xl\:inset-x-2\/4{right:50%;left:50%}.xl\:inset-y-3\/4{top:75%;bottom:75%}.xl\:inset-x-3\/4{right:75%;left:75%}.xl\:inset-y-1\/5{top:20%;bottom:20%}.xl\:inset-x-1\/5{right:20%;left:20%}.xl\:inset-y-2\/5{top:40%;bottom:40%}.xl\:inset-x-2\/5{right:40%;left:40%}.xl\:inset-y-3\/5{top:60%;bottom:60%}.xl\:inset-x-3\/5{right:60%;left:60%}.xl\:inset-y-4\/5{top:80%;bottom:80%}.xl\:inset-x-4\/5{right:80%;left:80%}.xl\:inset-y-1\/6{top:16.666667%;bottom:16.666667%}.xl\:inset-x-1\/6{right:16.666667%;left:16.666667%}.xl\:inset-y-2\/6{top:33.333333%;bottom:33.333333%}.xl\:inset-x-2\/6{right:33.333333%;left:33.333333%}.xl\:inset-y-3\/6{top:50%;bottom:50%}.xl\:inset-x-3\/6{right:50%;left:50%}.xl\:inset-y-4\/6{top:66.666667%;bottom:66.666667%}.xl\:inset-x-4\/6{right:66.666667%;left:66.666667%}.xl\:inset-y-5\/6{top:83.333333%;bottom:83.333333%}.xl\:inset-x-5\/6{right:83.333333%;left:83.333333%}.xl\:inset-y-1\/12{top:8.333333%;bottom:8.333333%}.xl\:inset-x-1\/12{right:8.333333%;left:8.333333%}.xl\:inset-y-2\/12{top:16.666667%;bottom:16.666667%}.xl\:inset-x-2\/12{right:16.666667%;left:16.666667%}.xl\:inset-y-3\/12{top:25%;bottom:25%}.xl\:inset-x-3\/12{right:25%;left:25%}.xl\:inset-y-4\/12{top:33.333333%;bottom:33.333333%}.xl\:inset-x-4\/12{right:33.333333%;left:33.333333%}.xl\:inset-y-5\/12{top:41.666667%;bottom:41.666667%}.xl\:inset-x-5\/12{right:41.666667%;left:41.666667%}.xl\:inset-y-6\/12{top:50%;bottom:50%}.xl\:inset-x-6\/12{right:50%;left:50%}.xl\:inset-y-7\/12{top:58.333333%;bottom:58.333333%}.xl\:inset-x-7\/12{right:58.333333%;left:58.333333%}.xl\:inset-y-8\/12{top:66.666667%;bottom:66.666667%}.xl\:inset-x-8\/12{right:66.666667%;left:66.666667%}.xl\:inset-y-9\/12{top:75%;bottom:75%}.xl\:inset-x-9\/12{right:75%;left:75%}.xl\:inset-y-10\/12{top:83.333333%;bottom:83.333333%}.xl\:inset-x-10\/12{right:83.333333%;left:83.333333%}.xl\:inset-y-11\/12{top:91.666667%;bottom:91.666667%}.xl\:inset-x-11\/12{right:91.666667%;left:91.666667%}.xl\:inset-y-full{top:100%;bottom:100%}.xl\:inset-x-full{right:100%;left:100%}.xl\:top-0{top:0}.xl\:right-0{right:0}.xl\:bottom-0{bottom:0}.xl\:left-0{left:0}.xl\:top-1{top:.25rem}.xl\:right-1{right:.25rem}.xl\:bottom-1{bottom:.25rem}.xl\:left-1{left:.25rem}.xl\:top-2{top:.5rem}.xl\:right-2{right:.5rem}.xl\:bottom-2{bottom:.5rem}.xl\:left-2{left:.5rem}.xl\:top-3{top:.75rem}.xl\:right-3{right:.75rem}.xl\:bottom-3{bottom:.75rem}.xl\:left-3{left:.75rem}.xl\:top-4{top:1rem}.xl\:right-4{right:1rem}.xl\:bottom-4{bottom:1rem}.xl\:left-4{left:1rem}.xl\:top-5{top:1.25rem}.xl\:right-5{right:1.25rem}.xl\:bottom-5{bottom:1.25rem}.xl\:left-5{left:1.25rem}.xl\:top-6{top:1.5rem}.xl\:right-6{right:1.5rem}.xl\:bottom-6{bottom:1.5rem}.xl\:left-6{left:1.5rem}.xl\:top-7{top:1.75rem}.xl\:right-7{right:1.75rem}.xl\:bottom-7{bottom:1.75rem}.xl\:left-7{left:1.75rem}.xl\:top-8{top:2rem}.xl\:right-8{right:2rem}.xl\:bottom-8{bottom:2rem}.xl\:left-8{left:2rem}.xl\:top-9{top:2.25rem}.xl\:right-9{right:2.25rem}.xl\:bottom-9{bottom:2.25rem}.xl\:left-9{left:2.25rem}.xl\:top-10{top:2.5rem}.xl\:right-10{right:2.5rem}.xl\:bottom-10{bottom:2.5rem}.xl\:left-10{left:2.5rem}.xl\:top-11{top:2.75rem}.xl\:right-11{right:2.75rem}.xl\:bottom-11{bottom:2.75rem}.xl\:left-11{left:2.75rem}.xl\:top-12{top:3rem}.xl\:right-12{right:3rem}.xl\:bottom-12{bottom:3rem}.xl\:left-12{left:3rem}.xl\:top-13{top:3.25rem}.xl\:right-13{right:3.25rem}.xl\:bottom-13{bottom:3.25rem}.xl\:left-13{left:3.25rem}.xl\:top-14{top:3.5rem}.xl\:right-14{right:3.5rem}.xl\:bottom-14{bottom:3.5rem}.xl\:left-14{left:3.5rem}.xl\:top-15{top:3.75rem}.xl\:right-15{right:3.75rem}.xl\:bottom-15{bottom:3.75rem}.xl\:left-15{left:3.75rem}.xl\:top-16{top:4rem}.xl\:right-16{right:4rem}.xl\:bottom-16{bottom:4rem}.xl\:left-16{left:4rem}.xl\:top-20{top:5rem}.xl\:right-20{right:5rem}.xl\:bottom-20{bottom:5rem}.xl\:left-20{left:5rem}.xl\:top-24{top:6rem}.xl\:right-24{right:6rem}.xl\:bottom-24{bottom:6rem}.xl\:left-24{left:6rem}.xl\:top-28{top:7rem}.xl\:right-28{right:7rem}.xl\:bottom-28{bottom:7rem}.xl\:left-28{left:7rem}.xl\:top-32{top:8rem}.xl\:right-32{right:8rem}.xl\:bottom-32{bottom:8rem}.xl\:left-32{left:8rem}.xl\:top-36{top:9rem}.xl\:right-36{right:9rem}.xl\:bottom-36{bottom:9rem}.xl\:left-36{left:9rem}.xl\:top-40{top:10rem}.xl\:right-40{right:10rem}.xl\:bottom-40{bottom:10rem}.xl\:left-40{left:10rem}.xl\:top-44{top:11rem}.xl\:right-44{right:11rem}.xl\:bottom-44{bottom:11rem}.xl\:left-44{left:11rem}.xl\:top-48{top:12rem}.xl\:right-48{right:12rem}.xl\:bottom-48{bottom:12rem}.xl\:left-48{left:12rem}.xl\:top-52{top:13rem}.xl\:right-52{right:13rem}.xl\:bottom-52{bottom:13rem}.xl\:left-52{left:13rem}.xl\:top-56{top:14rem}.xl\:right-56{right:14rem}.xl\:bottom-56{bottom:14rem}.xl\:left-56{left:14rem}.xl\:top-60{top:15rem}.xl\:right-60{right:15rem}.xl\:bottom-60{bottom:15rem}.xl\:left-60{left:15rem}.xl\:top-64{top:16rem}.xl\:right-64{right:16rem}.xl\:bottom-64{bottom:16rem}.xl\:left-64{left:16rem}.xl\:top-72{top:18rem}.xl\:right-72{right:18rem}.xl\:bottom-72{bottom:18rem}.xl\:left-72{left:18rem}.xl\:top-80{top:20rem}.xl\:right-80{right:20rem}.xl\:bottom-80{bottom:20rem}.xl\:left-80{left:20rem}.xl\:top-96{top:24rem}.xl\:right-96{right:24rem}.xl\:bottom-96{bottom:24rem}.xl\:left-96{left:24rem}.xl\:top-auto{top:auto}.xl\:right-auto{right:auto}.xl\:bottom-auto{bottom:auto}.xl\:left-auto{left:auto}.xl\:top-px{top:1px}.xl\:right-px{right:1px}.xl\:bottom-px{bottom:1px}.xl\:left-px{left:1px}.xl\:top-0\.5{top:.125rem}.xl\:right-0\.5{right:.125rem}.xl\:bottom-0\.5{bottom:.125rem}.xl\:left-0\.5{left:.125rem}.xl\:top-1\.5{top:.375rem}.xl\:right-1\.5{right:.375rem}.xl\:bottom-1\.5{bottom:.375rem}.xl\:left-1\.5{left:.375rem}.xl\:top-2\.5{top:.625rem}.xl\:right-2\.5{right:.625rem}.xl\:bottom-2\.5{bottom:.625rem}.xl\:left-2\.5{left:.625rem}.xl\:top-3\.5{top:.875rem}.xl\:right-3\.5{right:.875rem}.xl\:bottom-3\.5{bottom:.875rem}.xl\:left-3\.5{left:.875rem}.xl\:top-1\/2{top:50%}.xl\:right-1\/2{right:50%}.xl\:bottom-1\/2{bottom:50%}.xl\:left-1\/2{left:50%}.xl\:top-1\/3{top:33.333333%}.xl\:right-1\/3{right:33.333333%}.xl\:bottom-1\/3{bottom:33.333333%}.xl\:left-1\/3{left:33.333333%}.xl\:top-2\/3{top:66.666667%}.xl\:right-2\/3{right:66.666667%}.xl\:bottom-2\/3{bottom:66.666667%}.xl\:left-2\/3{left:66.666667%}.xl\:top-1\/4{top:25%}.xl\:right-1\/4{right:25%}.xl\:bottom-1\/4{bottom:25%}.xl\:left-1\/4{left:25%}.xl\:top-2\/4{top:50%}.xl\:right-2\/4{right:50%}.xl\:bottom-2\/4{bottom:50%}.xl\:left-2\/4{left:50%}.xl\:top-3\/4{top:75%}.xl\:right-3\/4{right:75%}.xl\:bottom-3\/4{bottom:75%}.xl\:left-3\/4{left:75%}.xl\:top-1\/5{top:20%}.xl\:right-1\/5{right:20%}.xl\:bottom-1\/5{bottom:20%}.xl\:left-1\/5{left:20%}.xl\:top-2\/5{top:40%}.xl\:right-2\/5{right:40%}.xl\:bottom-2\/5{bottom:40%}.xl\:left-2\/5{left:40%}.xl\:top-3\/5{top:60%}.xl\:right-3\/5{right:60%}.xl\:bottom-3\/5{bottom:60%}.xl\:left-3\/5{left:60%}.xl\:top-4\/5{top:80%}.xl\:right-4\/5{right:80%}.xl\:bottom-4\/5{bottom:80%}.xl\:left-4\/5{left:80%}.xl\:top-1\/6{top:16.666667%}.xl\:right-1\/6{right:16.666667%}.xl\:bottom-1\/6{bottom:16.666667%}.xl\:left-1\/6{left:16.666667%}.xl\:top-2\/6{top:33.333333%}.xl\:right-2\/6{right:33.333333%}.xl\:bottom-2\/6{bottom:33.333333%}.xl\:left-2\/6{left:33.333333%}.xl\:top-3\/6{top:50%}.xl\:right-3\/6{right:50%}.xl\:bottom-3\/6{bottom:50%}.xl\:left-3\/6{left:50%}.xl\:top-4\/6{top:66.666667%}.xl\:right-4\/6{right:66.666667%}.xl\:bottom-4\/6{bottom:66.666667%}.xl\:left-4\/6{left:66.666667%}.xl\:top-5\/6{top:83.333333%}.xl\:right-5\/6{right:83.333333%}.xl\:bottom-5\/6{bottom:83.333333%}.xl\:left-5\/6{left:83.333333%}.xl\:top-1\/12{top:8.333333%}.xl\:right-1\/12{right:8.333333%}.xl\:bottom-1\/12{bottom:8.333333%}.xl\:left-1\/12{left:8.333333%}.xl\:top-2\/12{top:16.666667%}.xl\:right-2\/12{right:16.666667%}.xl\:bottom-2\/12{bottom:16.666667%}.xl\:left-2\/12{left:16.666667%}.xl\:top-3\/12{top:25%}.xl\:right-3\/12{right:25%}.xl\:bottom-3\/12{bottom:25%}.xl\:left-3\/12{left:25%}.xl\:top-4\/12{top:33.333333%}.xl\:right-4\/12{right:33.333333%}.xl\:bottom-4\/12{bottom:33.333333%}.xl\:left-4\/12{left:33.333333%}.xl\:top-5\/12{top:41.666667%}.xl\:right-5\/12{right:41.666667%}.xl\:bottom-5\/12{bottom:41.666667%}.xl\:left-5\/12{left:41.666667%}.xl\:top-6\/12{top:50%}.xl\:right-6\/12{right:50%}.xl\:bottom-6\/12{bottom:50%}.xl\:left-6\/12{left:50%}.xl\:top-7\/12{top:58.333333%}.xl\:right-7\/12{right:58.333333%}.xl\:bottom-7\/12{bottom:58.333333%}.xl\:left-7\/12{left:58.333333%}.xl\:top-8\/12{top:66.666667%}.xl\:right-8\/12{right:66.666667%}.xl\:bottom-8\/12{bottom:66.666667%}.xl\:left-8\/12{left:66.666667%}.xl\:top-9\/12{top:75%}.xl\:right-9\/12{right:75%}.xl\:bottom-9\/12{bottom:75%}.xl\:left-9\/12{left:75%}.xl\:top-10\/12{top:83.333333%}.xl\:right-10\/12{right:83.333333%}.xl\:bottom-10\/12{bottom:83.333333%}.xl\:left-10\/12{left:83.333333%}.xl\:top-11\/12{top:91.666667%}.xl\:right-11\/12{right:91.666667%}.xl\:bottom-11\/12{bottom:91.666667%}.xl\:left-11\/12{left:91.666667%}.xl\:top-full{top:100%}.xl\:right-full{right:100%}.xl\:bottom-full{bottom:100%}.xl\:left-full{left:100%}.xl\:resize-none{resize:none}.xl\:resize-y{resize:vertical}.xl\:resize-x{resize:horizontal}.xl\:resize{resize:both}.xl\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.xl\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.xl\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.xl\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.xl\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.xl\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.xl\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.xl\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.xl\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.xl\:shadow-none{box-shadow:none}.xl\:shadow-solid{box-shadow:0 0 0 2px currentColor}.xl\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.xl\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.xl\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.xl\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.xl\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.xl\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.xl\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.xl\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.xl\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.xl\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.group:focus .xl\:group-focus\:shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.group:focus .xl\:group-focus\:shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.group:focus .xl\:group-focus\:shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.group:focus .xl\:group-focus\:shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.group:focus .xl\:group-focus\:shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.group:focus .xl\:group-focus\:shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.group:focus .xl\:group-focus\:shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.group:focus .xl\:group-focus\:shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.group:focus .xl\:group-focus\:shadow-outline{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.group:focus .xl\:group-focus\:shadow-none{box-shadow:none}.group:focus .xl\:group-focus\:shadow-solid{box-shadow:0 0 0 2px currentColor}.group:focus .xl\:group-focus\:shadow-outline-gray{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.group:focus .xl\:group-focus\:shadow-outline-blue{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.group:focus .xl\:group-focus\:shadow-outline-teal{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.group:focus .xl\:group-focus\:shadow-outline-green{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.group:focus .xl\:group-focus\:shadow-outline-yellow{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.group:focus .xl\:group-focus\:shadow-outline-orange{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.group:focus .xl\:group-focus\:shadow-outline-red{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.group:focus .xl\:group-focus\:shadow-outline-pink{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.group:focus .xl\:group-focus\:shadow-outline-purple{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.group:focus .xl\:group-focus\:shadow-outline-indigo{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.xl\:hover\:shadow-xs:hover{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.xl\:hover\:shadow-sm:hover{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.xl\:hover\:shadow:hover{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.xl\:hover\:shadow-md:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.xl\:hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.xl\:hover\:shadow-xl:hover{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.xl\:hover\:shadow-2xl:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.xl\:hover\:shadow-inner:hover{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.xl\:hover\:shadow-outline:hover{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.xl\:hover\:shadow-none:hover{box-shadow:none}.xl\:hover\:shadow-solid:hover{box-shadow:0 0 0 2px currentColor}.xl\:hover\:shadow-outline-gray:hover{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.xl\:hover\:shadow-outline-blue:hover{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.xl\:hover\:shadow-outline-teal:hover{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.xl\:hover\:shadow-outline-green:hover{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.xl\:hover\:shadow-outline-yellow:hover{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.xl\:hover\:shadow-outline-orange:hover{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.xl\:hover\:shadow-outline-red:hover{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.xl\:hover\:shadow-outline-pink:hover{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.xl\:hover\:shadow-outline-purple:hover{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.xl\:hover\:shadow-outline-indigo:hover{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.xl\:focus\:shadow-xs:focus{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.xl\:focus\:shadow-sm:focus{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.xl\:focus\:shadow:focus{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.xl\:focus\:shadow-md:focus{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.xl\:focus\:shadow-lg:focus{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.xl\:focus\:shadow-xl:focus{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.xl\:focus\:shadow-2xl:focus{box-shadow:0 25px 50px -12px rgba(0,0,0,.25)}.xl\:focus\:shadow-inner:focus{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.xl\:focus\:shadow-outline:focus{box-shadow:0 0 0 3px rgba(118,169,250,.45)}.xl\:focus\:shadow-none:focus{box-shadow:none}.xl\:focus\:shadow-solid:focus{box-shadow:0 0 0 2px currentColor}.xl\:focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(159,166,178,.45)}.xl\:focus\:shadow-outline-blue:focus{box-shadow:0 0 0 3px rgba(164,202,254,.45)}.xl\:focus\:shadow-outline-teal:focus{box-shadow:0 0 0 3px rgba(126,220,226,.45)}.xl\:focus\:shadow-outline-green:focus{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.xl\:focus\:shadow-outline-yellow:focus{box-shadow:0 0 0 3px rgba(250,202,21,.45)}.xl\:focus\:shadow-outline-orange:focus{box-shadow:0 0 0 3px rgba(253,186,140,.45)}.xl\:focus\:shadow-outline-red:focus{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.xl\:focus\:shadow-outline-pink:focus{box-shadow:0 0 0 3px rgba(248,180,217,.45)}.xl\:focus\:shadow-outline-purple:focus{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.xl\:focus\:shadow-outline-indigo:focus{box-shadow:0 0 0 3px rgba(180,198,252,.45)}.xl\:fill-current{fill:currentColor}.xl\:stroke-current{stroke:currentColor}.xl\:stroke-0{stroke-width:0}.xl\:stroke-1{stroke-width:1}.xl\:stroke-2{stroke-width:2}.xl\:table-auto{table-layout:auto}.xl\:table-fixed{table-layout:fixed}.xl\:text-left{text-align:left}.xl\:text-center{text-align:center}.xl\:text-right{text-align:right}.xl\:text-justify{text-align:justify}.xl\:text-transparent{color:transparent}.xl\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.xl\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.xl\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.xl\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.xl\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.xl\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.xl\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.xl\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.xl\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.xl\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.xl\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.xl\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.xl\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.xl\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.xl\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.xl\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.xl\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.xl\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.xl\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.xl\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.xl\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.xl\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.xl\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.xl\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.xl\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.xl\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.xl\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.xl\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.xl\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.xl\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.xl\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.xl\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.xl\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.xl\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.xl\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.xl\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.xl\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.xl\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.xl\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.xl\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.xl\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.xl\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.xl\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.xl\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.xl\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.xl\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.xl\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.xl\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.xl\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.xl\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.xl\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.xl\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.xl\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.xl\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.xl\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.xl\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.xl\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.xl\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.xl\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.xl\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.xl\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.xl\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.xl\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.xl\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.xl\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.xl\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.xl\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.xl\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.xl\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.xl\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.xl\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.xl\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.xl\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.xl\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.xl\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.xl\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.xl\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.xl\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.xl\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.xl\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.xl\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.xl\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.xl\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.xl\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.xl\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.xl\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.xl\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.xl\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.xl\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.xl\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.xl\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.xl\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.xl\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.xl\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.xl\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.xl\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.xl\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.xl\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.xl\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.xl\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.xl\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.xl\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.xl\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.xl\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.xl\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.xl\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.xl\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.xl\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.xl\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.xl\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.xl\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.xl\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:hover .xl\:group-hover\:text-transparent{color:transparent}.group:hover .xl\:group-hover\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:hover .xl\:group-hover\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:hover .xl\:group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:hover .xl\:group-hover\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:hover .xl\:group-hover\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:hover .xl\:group-hover\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:hover .xl\:group-hover\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:hover .xl\:group-hover\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:hover .xl\:group-hover\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:hover .xl\:group-hover\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .xl\:group-hover\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:hover .xl\:group-hover\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:hover .xl\:group-hover\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.group:focus .xl\:group-focus\:text-transparent{color:transparent}.group:focus .xl\:group-focus\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.group:focus .xl\:group-focus\:text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-50{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.group:focus .xl\:group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-50{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-100{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-200{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-300{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-400{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-500{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-600{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-700{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-800{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.group:focus .xl\:group-focus\:text-cool-gray-900{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-50{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-200{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-300{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.group:focus .xl\:group-focus\:text-red-900{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-50{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-200{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-300{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-600{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-800{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.group:focus .xl\:group-focus\:text-orange-900{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-50{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-100{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-200{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-300{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-500{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-700{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-800{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.group:focus .xl\:group-focus\:text-yellow-900{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-50{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-200{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-300{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.group:focus .xl\:group-focus\:text-green-900{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-50{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-200{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-300{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-600{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.group:focus .xl\:group-focus\:text-teal-900{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-50{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-200{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-300{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-600{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.group:focus .xl\:group-focus\:text-blue-900{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-50{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-200{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-300{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .xl\:group-focus\:text-indigo-900{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-50{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-500{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-700{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-800{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.group:focus .xl\:group-focus\:text-purple-900{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-50{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-100{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-200{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-300{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-400{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-500{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-600{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-700{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-800{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.group:focus .xl\:group-focus\:text-pink-900{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.xl\:hover\:text-transparent:hover{color:transparent}.xl\:hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.xl\:hover\:text-black:hover{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.xl\:hover\:text-gray-50:hover{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.xl\:hover\:text-gray-100:hover{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.xl\:hover\:text-gray-200:hover{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.xl\:hover\:text-gray-300:hover{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.xl\:hover\:text-gray-400:hover{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.xl\:hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.xl\:hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.xl\:hover\:text-gray-700:hover{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.xl\:hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.xl\:hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.xl\:hover\:text-cool-gray-50:hover{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.xl\:hover\:text-cool-gray-100:hover{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.xl\:hover\:text-cool-gray-200:hover{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.xl\:hover\:text-cool-gray-300:hover{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.xl\:hover\:text-cool-gray-400:hover{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.xl\:hover\:text-cool-gray-500:hover{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.xl\:hover\:text-cool-gray-600:hover{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.xl\:hover\:text-cool-gray-700:hover{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.xl\:hover\:text-cool-gray-800:hover{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.xl\:hover\:text-cool-gray-900:hover{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.xl\:hover\:text-red-50:hover{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.xl\:hover\:text-red-100:hover{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.xl\:hover\:text-red-200:hover{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.xl\:hover\:text-red-300:hover{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.xl\:hover\:text-red-400:hover{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.xl\:hover\:text-red-500:hover{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.xl\:hover\:text-red-600:hover{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.xl\:hover\:text-red-700:hover{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.xl\:hover\:text-red-800:hover{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.xl\:hover\:text-red-900:hover{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.xl\:hover\:text-orange-50:hover{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.xl\:hover\:text-orange-100:hover{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.xl\:hover\:text-orange-200:hover{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.xl\:hover\:text-orange-300:hover{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.xl\:hover\:text-orange-400:hover{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.xl\:hover\:text-orange-500:hover{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.xl\:hover\:text-orange-600:hover{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.xl\:hover\:text-orange-700:hover{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.xl\:hover\:text-orange-800:hover{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.xl\:hover\:text-orange-900:hover{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.xl\:hover\:text-yellow-50:hover{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.xl\:hover\:text-yellow-100:hover{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.xl\:hover\:text-yellow-200:hover{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.xl\:hover\:text-yellow-300:hover{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.xl\:hover\:text-yellow-400:hover{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.xl\:hover\:text-yellow-500:hover{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.xl\:hover\:text-yellow-600:hover{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.xl\:hover\:text-yellow-700:hover{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.xl\:hover\:text-yellow-800:hover{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.xl\:hover\:text-yellow-900:hover{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.xl\:hover\:text-green-50:hover{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.xl\:hover\:text-green-100:hover{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.xl\:hover\:text-green-200:hover{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.xl\:hover\:text-green-300:hover{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.xl\:hover\:text-green-400:hover{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.xl\:hover\:text-green-500:hover{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.xl\:hover\:text-green-600:hover{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.xl\:hover\:text-green-700:hover{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.xl\:hover\:text-green-800:hover{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.xl\:hover\:text-green-900:hover{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.xl\:hover\:text-teal-50:hover{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.xl\:hover\:text-teal-100:hover{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.xl\:hover\:text-teal-200:hover{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.xl\:hover\:text-teal-300:hover{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.xl\:hover\:text-teal-400:hover{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.xl\:hover\:text-teal-500:hover{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.xl\:hover\:text-teal-600:hover{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.xl\:hover\:text-teal-700:hover{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.xl\:hover\:text-teal-800:hover{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.xl\:hover\:text-teal-900:hover{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.xl\:hover\:text-blue-50:hover{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.xl\:hover\:text-blue-100:hover{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.xl\:hover\:text-blue-200:hover{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.xl\:hover\:text-blue-300:hover{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.xl\:hover\:text-blue-400:hover{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.xl\:hover\:text-blue-500:hover{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.xl\:hover\:text-blue-600:hover{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.xl\:hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.xl\:hover\:text-blue-800:hover{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.xl\:hover\:text-blue-900:hover{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.xl\:hover\:text-indigo-50:hover{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.xl\:hover\:text-indigo-100:hover{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.xl\:hover\:text-indigo-200:hover{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.xl\:hover\:text-indigo-300:hover{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.xl\:hover\:text-indigo-400:hover{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.xl\:hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.xl\:hover\:text-indigo-600:hover{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.xl\:hover\:text-indigo-700:hover{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.xl\:hover\:text-indigo-800:hover{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.xl\:hover\:text-indigo-900:hover{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.xl\:hover\:text-purple-50:hover{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.xl\:hover\:text-purple-100:hover{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.xl\:hover\:text-purple-200:hover{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.xl\:hover\:text-purple-300:hover{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.xl\:hover\:text-purple-400:hover{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.xl\:hover\:text-purple-500:hover{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.xl\:hover\:text-purple-600:hover{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.xl\:hover\:text-purple-700:hover{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.xl\:hover\:text-purple-800:hover{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.xl\:hover\:text-purple-900:hover{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.xl\:hover\:text-pink-50:hover{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.xl\:hover\:text-pink-100:hover{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.xl\:hover\:text-pink-200:hover{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.xl\:hover\:text-pink-300:hover{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.xl\:hover\:text-pink-400:hover{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.xl\:hover\:text-pink-500:hover{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.xl\:hover\:text-pink-600:hover{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.xl\:hover\:text-pink-700:hover{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.xl\:hover\:text-pink-800:hover{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.xl\:hover\:text-pink-900:hover{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.xl\:focus-within\:text-transparent:focus-within{color:transparent}.xl\:focus-within\:text-white:focus-within{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.xl\:focus-within\:text-black:focus-within{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.xl\:focus-within\:text-gray-50:focus-within{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.xl\:focus-within\:text-gray-100:focus-within{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.xl\:focus-within\:text-gray-200:focus-within{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.xl\:focus-within\:text-gray-300:focus-within{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.xl\:focus-within\:text-gray-400:focus-within{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.xl\:focus-within\:text-gray-500:focus-within{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.xl\:focus-within\:text-gray-600:focus-within{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.xl\:focus-within\:text-gray-700:focus-within{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.xl\:focus-within\:text-gray-800:focus-within{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.xl\:focus-within\:text-gray-900:focus-within{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-50:focus-within{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-100:focus-within{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-200:focus-within{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-300:focus-within{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-400:focus-within{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-500:focus-within{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-600:focus-within{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-700:focus-within{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-800:focus-within{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.xl\:focus-within\:text-cool-gray-900:focus-within{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.xl\:focus-within\:text-red-50:focus-within{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.xl\:focus-within\:text-red-100:focus-within{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.xl\:focus-within\:text-red-200:focus-within{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.xl\:focus-within\:text-red-300:focus-within{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.xl\:focus-within\:text-red-400:focus-within{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.xl\:focus-within\:text-red-500:focus-within{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.xl\:focus-within\:text-red-600:focus-within{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.xl\:focus-within\:text-red-700:focus-within{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.xl\:focus-within\:text-red-800:focus-within{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.xl\:focus-within\:text-red-900:focus-within{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.xl\:focus-within\:text-orange-50:focus-within{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.xl\:focus-within\:text-orange-100:focus-within{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.xl\:focus-within\:text-orange-200:focus-within{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.xl\:focus-within\:text-orange-300:focus-within{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.xl\:focus-within\:text-orange-400:focus-within{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.xl\:focus-within\:text-orange-500:focus-within{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.xl\:focus-within\:text-orange-600:focus-within{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.xl\:focus-within\:text-orange-700:focus-within{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.xl\:focus-within\:text-orange-800:focus-within{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.xl\:focus-within\:text-orange-900:focus-within{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.xl\:focus-within\:text-yellow-50:focus-within{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.xl\:focus-within\:text-yellow-100:focus-within{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.xl\:focus-within\:text-yellow-200:focus-within{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.xl\:focus-within\:text-yellow-300:focus-within{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.xl\:focus-within\:text-yellow-400:focus-within{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.xl\:focus-within\:text-yellow-500:focus-within{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.xl\:focus-within\:text-yellow-600:focus-within{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.xl\:focus-within\:text-yellow-700:focus-within{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.xl\:focus-within\:text-yellow-800:focus-within{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.xl\:focus-within\:text-yellow-900:focus-within{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.xl\:focus-within\:text-green-50:focus-within{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.xl\:focus-within\:text-green-100:focus-within{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.xl\:focus-within\:text-green-200:focus-within{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.xl\:focus-within\:text-green-300:focus-within{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.xl\:focus-within\:text-green-400:focus-within{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.xl\:focus-within\:text-green-500:focus-within{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.xl\:focus-within\:text-green-600:focus-within{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.xl\:focus-within\:text-green-700:focus-within{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.xl\:focus-within\:text-green-800:focus-within{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.xl\:focus-within\:text-green-900:focus-within{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.xl\:focus-within\:text-teal-50:focus-within{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.xl\:focus-within\:text-teal-100:focus-within{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.xl\:focus-within\:text-teal-200:focus-within{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.xl\:focus-within\:text-teal-300:focus-within{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.xl\:focus-within\:text-teal-400:focus-within{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.xl\:focus-within\:text-teal-500:focus-within{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.xl\:focus-within\:text-teal-600:focus-within{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.xl\:focus-within\:text-teal-700:focus-within{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.xl\:focus-within\:text-teal-800:focus-within{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.xl\:focus-within\:text-teal-900:focus-within{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.xl\:focus-within\:text-blue-50:focus-within{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.xl\:focus-within\:text-blue-100:focus-within{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.xl\:focus-within\:text-blue-200:focus-within{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.xl\:focus-within\:text-blue-300:focus-within{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.xl\:focus-within\:text-blue-400:focus-within{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.xl\:focus-within\:text-blue-500:focus-within{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.xl\:focus-within\:text-blue-600:focus-within{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.xl\:focus-within\:text-blue-700:focus-within{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.xl\:focus-within\:text-blue-800:focus-within{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.xl\:focus-within\:text-blue-900:focus-within{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.xl\:focus-within\:text-indigo-50:focus-within{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.xl\:focus-within\:text-indigo-100:focus-within{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.xl\:focus-within\:text-indigo-200:focus-within{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.xl\:focus-within\:text-indigo-300:focus-within{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.xl\:focus-within\:text-indigo-400:focus-within{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.xl\:focus-within\:text-indigo-500:focus-within{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.xl\:focus-within\:text-indigo-600:focus-within{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.xl\:focus-within\:text-indigo-700:focus-within{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.xl\:focus-within\:text-indigo-800:focus-within{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.xl\:focus-within\:text-indigo-900:focus-within{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.xl\:focus-within\:text-purple-50:focus-within{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.xl\:focus-within\:text-purple-100:focus-within{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.xl\:focus-within\:text-purple-200:focus-within{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.xl\:focus-within\:text-purple-300:focus-within{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.xl\:focus-within\:text-purple-400:focus-within{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.xl\:focus-within\:text-purple-500:focus-within{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.xl\:focus-within\:text-purple-600:focus-within{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.xl\:focus-within\:text-purple-700:focus-within{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.xl\:focus-within\:text-purple-800:focus-within{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.xl\:focus-within\:text-purple-900:focus-within{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.xl\:focus-within\:text-pink-50:focus-within{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.xl\:focus-within\:text-pink-100:focus-within{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.xl\:focus-within\:text-pink-200:focus-within{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.xl\:focus-within\:text-pink-300:focus-within{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.xl\:focus-within\:text-pink-400:focus-within{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.xl\:focus-within\:text-pink-500:focus-within{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.xl\:focus-within\:text-pink-600:focus-within{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.xl\:focus-within\:text-pink-700:focus-within{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.xl\:focus-within\:text-pink-800:focus-within{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.xl\:focus-within\:text-pink-900:focus-within{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.xl\:focus\:text-transparent:focus{color:transparent}.xl\:focus\:text-white:focus{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.xl\:focus\:text-black:focus{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.xl\:focus\:text-gray-50:focus{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.xl\:focus\:text-gray-100:focus{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.xl\:focus\:text-gray-200:focus{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.xl\:focus\:text-gray-300:focus{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.xl\:focus\:text-gray-400:focus{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.xl\:focus\:text-gray-500:focus{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.xl\:focus\:text-gray-600:focus{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.xl\:focus\:text-gray-700:focus{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.xl\:focus\:text-gray-800:focus{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.xl\:focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.xl\:focus\:text-cool-gray-50:focus{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.xl\:focus\:text-cool-gray-100:focus{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.xl\:focus\:text-cool-gray-200:focus{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.xl\:focus\:text-cool-gray-300:focus{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.xl\:focus\:text-cool-gray-400:focus{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.xl\:focus\:text-cool-gray-500:focus{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.xl\:focus\:text-cool-gray-600:focus{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.xl\:focus\:text-cool-gray-700:focus{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.xl\:focus\:text-cool-gray-800:focus{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.xl\:focus\:text-cool-gray-900:focus{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.xl\:focus\:text-red-50:focus{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.xl\:focus\:text-red-100:focus{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.xl\:focus\:text-red-200:focus{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.xl\:focus\:text-red-300:focus{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.xl\:focus\:text-red-400:focus{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.xl\:focus\:text-red-500:focus{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.xl\:focus\:text-red-600:focus{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.xl\:focus\:text-red-700:focus{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.xl\:focus\:text-red-800:focus{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.xl\:focus\:text-red-900:focus{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.xl\:focus\:text-orange-50:focus{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.xl\:focus\:text-orange-100:focus{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.xl\:focus\:text-orange-200:focus{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.xl\:focus\:text-orange-300:focus{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.xl\:focus\:text-orange-400:focus{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.xl\:focus\:text-orange-500:focus{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.xl\:focus\:text-orange-600:focus{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.xl\:focus\:text-orange-700:focus{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.xl\:focus\:text-orange-800:focus{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.xl\:focus\:text-orange-900:focus{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.xl\:focus\:text-yellow-50:focus{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.xl\:focus\:text-yellow-100:focus{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.xl\:focus\:text-yellow-200:focus{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.xl\:focus\:text-yellow-300:focus{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.xl\:focus\:text-yellow-400:focus{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.xl\:focus\:text-yellow-500:focus{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.xl\:focus\:text-yellow-600:focus{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.xl\:focus\:text-yellow-700:focus{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.xl\:focus\:text-yellow-800:focus{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.xl\:focus\:text-yellow-900:focus{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.xl\:focus\:text-green-50:focus{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.xl\:focus\:text-green-100:focus{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.xl\:focus\:text-green-200:focus{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.xl\:focus\:text-green-300:focus{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.xl\:focus\:text-green-400:focus{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.xl\:focus\:text-green-500:focus{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.xl\:focus\:text-green-600:focus{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.xl\:focus\:text-green-700:focus{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.xl\:focus\:text-green-800:focus{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.xl\:focus\:text-green-900:focus{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.xl\:focus\:text-teal-50:focus{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.xl\:focus\:text-teal-100:focus{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.xl\:focus\:text-teal-200:focus{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.xl\:focus\:text-teal-300:focus{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.xl\:focus\:text-teal-400:focus{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.xl\:focus\:text-teal-500:focus{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.xl\:focus\:text-teal-600:focus{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.xl\:focus\:text-teal-700:focus{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.xl\:focus\:text-teal-800:focus{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.xl\:focus\:text-teal-900:focus{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.xl\:focus\:text-blue-50:focus{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.xl\:focus\:text-blue-100:focus{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.xl\:focus\:text-blue-200:focus{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.xl\:focus\:text-blue-300:focus{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.xl\:focus\:text-blue-400:focus{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.xl\:focus\:text-blue-500:focus{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.xl\:focus\:text-blue-600:focus{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.xl\:focus\:text-blue-700:focus{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.xl\:focus\:text-blue-800:focus{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.xl\:focus\:text-blue-900:focus{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.xl\:focus\:text-indigo-50:focus{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.xl\:focus\:text-indigo-100:focus{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.xl\:focus\:text-indigo-200:focus{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.xl\:focus\:text-indigo-300:focus{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.xl\:focus\:text-indigo-400:focus{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.xl\:focus\:text-indigo-500:focus{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.xl\:focus\:text-indigo-600:focus{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.xl\:focus\:text-indigo-700:focus{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.xl\:focus\:text-indigo-800:focus{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.xl\:focus\:text-indigo-900:focus{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.xl\:focus\:text-purple-50:focus{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.xl\:focus\:text-purple-100:focus{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.xl\:focus\:text-purple-200:focus{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.xl\:focus\:text-purple-300:focus{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.xl\:focus\:text-purple-400:focus{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.xl\:focus\:text-purple-500:focus{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.xl\:focus\:text-purple-600:focus{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.xl\:focus\:text-purple-700:focus{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.xl\:focus\:text-purple-800:focus{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.xl\:focus\:text-purple-900:focus{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.xl\:focus\:text-pink-50:focus{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.xl\:focus\:text-pink-100:focus{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.xl\:focus\:text-pink-200:focus{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.xl\:focus\:text-pink-300:focus{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.xl\:focus\:text-pink-400:focus{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.xl\:focus\:text-pink-500:focus{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.xl\:focus\:text-pink-600:focus{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.xl\:focus\:text-pink-700:focus{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.xl\:focus\:text-pink-800:focus{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.xl\:focus\:text-pink-900:focus{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.xl\:active\:text-transparent:active{color:transparent}.xl\:active\:text-white:active{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.xl\:active\:text-black:active{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.xl\:active\:text-gray-50:active{--text-opacity:1;color:#f9fafb;color:rgba(249,250,251,var(--text-opacity))}.xl\:active\:text-gray-100:active{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.xl\:active\:text-gray-200:active{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.xl\:active\:text-gray-300:active{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.xl\:active\:text-gray-400:active{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.xl\:active\:text-gray-500:active{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.xl\:active\:text-gray-600:active{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.xl\:active\:text-gray-700:active{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.xl\:active\:text-gray-800:active{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.xl\:active\:text-gray-900:active{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.xl\:active\:text-cool-gray-50:active{--text-opacity:1;color:#f8fafc;color:rgba(248,250,252,var(--text-opacity))}.xl\:active\:text-cool-gray-100:active{--text-opacity:1;color:#f1f5f9;color:rgba(241,245,249,var(--text-opacity))}.xl\:active\:text-cool-gray-200:active{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.xl\:active\:text-cool-gray-300:active{--text-opacity:1;color:#cfd8e3;color:rgba(207,216,227,var(--text-opacity))}.xl\:active\:text-cool-gray-400:active{--text-opacity:1;color:#97a6ba;color:rgba(151,166,186,var(--text-opacity))}.xl\:active\:text-cool-gray-500:active{--text-opacity:1;color:#64748b;color:rgba(100,116,139,var(--text-opacity))}.xl\:active\:text-cool-gray-600:active{--text-opacity:1;color:#475569;color:rgba(71,85,105,var(--text-opacity))}.xl\:active\:text-cool-gray-700:active{--text-opacity:1;color:#364152;color:rgba(54,65,82,var(--text-opacity))}.xl\:active\:text-cool-gray-800:active{--text-opacity:1;color:#27303f;color:rgba(39,48,63,var(--text-opacity))}.xl\:active\:text-cool-gray-900:active{--text-opacity:1;color:#1a202e;color:rgba(26,32,46,var(--text-opacity))}.xl\:active\:text-red-50:active{--text-opacity:1;color:#fdf2f2;color:rgba(253,242,242,var(--text-opacity))}.xl\:active\:text-red-100:active{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.xl\:active\:text-red-200:active{--text-opacity:1;color:#fbd5d5;color:rgba(251,213,213,var(--text-opacity))}.xl\:active\:text-red-300:active{--text-opacity:1;color:#f8b4b4;color:rgba(248,180,180,var(--text-opacity))}.xl\:active\:text-red-400:active{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.xl\:active\:text-red-500:active{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.xl\:active\:text-red-600:active{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.xl\:active\:text-red-700:active{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.xl\:active\:text-red-800:active{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.xl\:active\:text-red-900:active{--text-opacity:1;color:#771d1d;color:rgba(119,29,29,var(--text-opacity))}.xl\:active\:text-orange-50:active{--text-opacity:1;color:#fff8f1;color:rgba(255,248,241,var(--text-opacity))}.xl\:active\:text-orange-100:active{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.xl\:active\:text-orange-200:active{--text-opacity:1;color:#fcd9bd;color:rgba(252,217,189,var(--text-opacity))}.xl\:active\:text-orange-300:active{--text-opacity:1;color:#fdba8c;color:rgba(253,186,140,var(--text-opacity))}.xl\:active\:text-orange-400:active{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.xl\:active\:text-orange-500:active{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.xl\:active\:text-orange-600:active{--text-opacity:1;color:#d03801;color:rgba(208,56,1,var(--text-opacity))}.xl\:active\:text-orange-700:active{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.xl\:active\:text-orange-800:active{--text-opacity:1;color:#8a2c0d;color:rgba(138,44,13,var(--text-opacity))}.xl\:active\:text-orange-900:active{--text-opacity:1;color:#73230d;color:rgba(115,35,13,var(--text-opacity))}.xl\:active\:text-yellow-50:active{--text-opacity:1;color:#fdfdea;color:rgba(253,253,234,var(--text-opacity))}.xl\:active\:text-yellow-100:active{--text-opacity:1;color:#fdf6b2;color:rgba(253,246,178,var(--text-opacity))}.xl\:active\:text-yellow-200:active{--text-opacity:1;color:#fce96a;color:rgba(252,233,106,var(--text-opacity))}.xl\:active\:text-yellow-300:active{--text-opacity:1;color:#faca15;color:rgba(250,202,21,var(--text-opacity))}.xl\:active\:text-yellow-400:active{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.xl\:active\:text-yellow-500:active{--text-opacity:1;color:#c27803;color:rgba(194,120,3,var(--text-opacity))}.xl\:active\:text-yellow-600:active{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.xl\:active\:text-yellow-700:active{--text-opacity:1;color:#8e4b10;color:rgba(142,75,16,var(--text-opacity))}.xl\:active\:text-yellow-800:active{--text-opacity:1;color:#723b13;color:rgba(114,59,19,var(--text-opacity))}.xl\:active\:text-yellow-900:active{--text-opacity:1;color:#633112;color:rgba(99,49,18,var(--text-opacity))}.xl\:active\:text-green-50:active{--text-opacity:1;color:#f3faf7;color:rgba(243,250,247,var(--text-opacity))}.xl\:active\:text-green-100:active{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.xl\:active\:text-green-200:active{--text-opacity:1;color:#bcf0da;color:rgba(188,240,218,var(--text-opacity))}.xl\:active\:text-green-300:active{--text-opacity:1;color:#84e1bc;color:rgba(132,225,188,var(--text-opacity))}.xl\:active\:text-green-400:active{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.xl\:active\:text-green-500:active{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.xl\:active\:text-green-600:active{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.xl\:active\:text-green-700:active{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.xl\:active\:text-green-800:active{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.xl\:active\:text-green-900:active{--text-opacity:1;color:#014737;color:rgba(1,71,55,var(--text-opacity))}.xl\:active\:text-teal-50:active{--text-opacity:1;color:#edfafa;color:rgba(237,250,250,var(--text-opacity))}.xl\:active\:text-teal-100:active{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.xl\:active\:text-teal-200:active{--text-opacity:1;color:#afecef;color:rgba(175,236,239,var(--text-opacity))}.xl\:active\:text-teal-300:active{--text-opacity:1;color:#7edce2;color:rgba(126,220,226,var(--text-opacity))}.xl\:active\:text-teal-400:active{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.xl\:active\:text-teal-500:active{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.xl\:active\:text-teal-600:active{--text-opacity:1;color:#047481;color:rgba(4,116,129,var(--text-opacity))}.xl\:active\:text-teal-700:active{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.xl\:active\:text-teal-800:active{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.xl\:active\:text-teal-900:active{--text-opacity:1;color:#014451;color:rgba(1,68,81,var(--text-opacity))}.xl\:active\:text-blue-50:active{--text-opacity:1;color:#ebf5ff;color:rgba(235,245,255,var(--text-opacity))}.xl\:active\:text-blue-100:active{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.xl\:active\:text-blue-200:active{--text-opacity:1;color:#c3ddfd;color:rgba(195,221,253,var(--text-opacity))}.xl\:active\:text-blue-300:active{--text-opacity:1;color:#a4cafe;color:rgba(164,202,254,var(--text-opacity))}.xl\:active\:text-blue-400:active{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.xl\:active\:text-blue-500:active{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.xl\:active\:text-blue-600:active{--text-opacity:1;color:#1c64f2;color:rgba(28,100,242,var(--text-opacity))}.xl\:active\:text-blue-700:active{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.xl\:active\:text-blue-800:active{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.xl\:active\:text-blue-900:active{--text-opacity:1;color:#233876;color:rgba(35,56,118,var(--text-opacity))}.xl\:active\:text-indigo-50:active{--text-opacity:1;color:#f0f5ff;color:rgba(240,245,255,var(--text-opacity))}.xl\:active\:text-indigo-100:active{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.xl\:active\:text-indigo-200:active{--text-opacity:1;color:#cddbfe;color:rgba(205,219,254,var(--text-opacity))}.xl\:active\:text-indigo-300:active{--text-opacity:1;color:#b4c6fc;color:rgba(180,198,252,var(--text-opacity))}.xl\:active\:text-indigo-400:active{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.xl\:active\:text-indigo-500:active{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.xl\:active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.xl\:active\:text-indigo-700:active{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.xl\:active\:text-indigo-800:active{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.xl\:active\:text-indigo-900:active{--text-opacity:1;color:#362f78;color:rgba(54,47,120,var(--text-opacity))}.xl\:active\:text-purple-50:active{--text-opacity:1;color:#f6f5ff;color:rgba(246,245,255,var(--text-opacity))}.xl\:active\:text-purple-100:active{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.xl\:active\:text-purple-200:active{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.xl\:active\:text-purple-300:active{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.xl\:active\:text-purple-400:active{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.xl\:active\:text-purple-500:active{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.xl\:active\:text-purple-600:active{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.xl\:active\:text-purple-700:active{--text-opacity:1;color:#6c2bd9;color:rgba(108,43,217,var(--text-opacity))}.xl\:active\:text-purple-800:active{--text-opacity:1;color:#5521b5;color:rgba(85,33,181,var(--text-opacity))}.xl\:active\:text-purple-900:active{--text-opacity:1;color:#4a1d96;color:rgba(74,29,150,var(--text-opacity))}.xl\:active\:text-pink-50:active{--text-opacity:1;color:#fdf2f8;color:rgba(253,242,248,var(--text-opacity))}.xl\:active\:text-pink-100:active{--text-opacity:1;color:#fce8f3;color:rgba(252,232,243,var(--text-opacity))}.xl\:active\:text-pink-200:active{--text-opacity:1;color:#fad1e8;color:rgba(250,209,232,var(--text-opacity))}.xl\:active\:text-pink-300:active{--text-opacity:1;color:#f8b4d9;color:rgba(248,180,217,var(--text-opacity))}.xl\:active\:text-pink-400:active{--text-opacity:1;color:#f17eb8;color:rgba(241,126,184,var(--text-opacity))}.xl\:active\:text-pink-500:active{--text-opacity:1;color:#e74694;color:rgba(231,70,148,var(--text-opacity))}.xl\:active\:text-pink-600:active{--text-opacity:1;color:#d61f69;color:rgba(214,31,105,var(--text-opacity))}.xl\:active\:text-pink-700:active{--text-opacity:1;color:#bf125d;color:rgba(191,18,93,var(--text-opacity))}.xl\:active\:text-pink-800:active{--text-opacity:1;color:#99154b;color:rgba(153,21,75,var(--text-opacity))}.xl\:active\:text-pink-900:active{--text-opacity:1;color:#751a3d;color:rgba(117,26,61,var(--text-opacity))}.xl\:text-opacity-0{--text-opacity:0}.xl\:text-opacity-25{--text-opacity:0.25}.xl\:text-opacity-50{--text-opacity:0.5}.xl\:text-opacity-75{--text-opacity:0.75}.xl\:text-opacity-100{--text-opacity:1}.xl\:hover\:text-opacity-0:hover{--text-opacity:0}.xl\:hover\:text-opacity-25:hover{--text-opacity:0.25}.xl\:hover\:text-opacity-50:hover{--text-opacity:0.5}.xl\:hover\:text-opacity-75:hover{--text-opacity:0.75}.xl\:hover\:text-opacity-100:hover{--text-opacity:1}.xl\:focus\:text-opacity-0:focus{--text-opacity:0}.xl\:focus\:text-opacity-25:focus{--text-opacity:0.25}.xl\:focus\:text-opacity-50:focus{--text-opacity:0.5}.xl\:focus\:text-opacity-75:focus{--text-opacity:0.75}.xl\:focus\:text-opacity-100:focus{--text-opacity:1}.xl\:italic{font-style:italic}.xl\:not-italic{font-style:normal}.xl\:uppercase{text-transform:uppercase}.xl\:lowercase{text-transform:lowercase}.xl\:capitalize{text-transform:capitalize}.xl\:normal-case{text-transform:none}.xl\:underline{text-decoration:underline}.xl\:line-through{text-decoration:line-through}.xl\:no-underline{text-decoration:none}.group:hover .xl\:group-hover\:underline{text-decoration:underline}.group:hover .xl\:group-hover\:line-through{text-decoration:line-through}.group:hover .xl\:group-hover\:no-underline{text-decoration:none}.group:focus .xl\:group-focus\:underline{text-decoration:underline}.group:focus .xl\:group-focus\:line-through{text-decoration:line-through}.group:focus .xl\:group-focus\:no-underline{text-decoration:none}.xl\:hover\:underline:hover{text-decoration:underline}.xl\:hover\:line-through:hover{text-decoration:line-through}.xl\:hover\:no-underline:hover{text-decoration:none}.xl\:focus\:underline:focus{text-decoration:underline}.xl\:focus\:line-through:focus{text-decoration:line-through}.xl\:focus\:no-underline:focus{text-decoration:none}.xl\:antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.xl\:subpixel-antialiased{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}.xl\:tracking-tighter{letter-spacing:-.05em}.xl\:tracking-tight{letter-spacing:-.025em}.xl\:tracking-normal{letter-spacing:0}.xl\:tracking-wide{letter-spacing:.025em}.xl\:tracking-wider{letter-spacing:.05em}.xl\:tracking-widest{letter-spacing:.1em}.xl\:select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.xl\:select-text{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.xl\:select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.xl\:select-auto{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.xl\:align-baseline{vertical-align:baseline}.xl\:align-top{vertical-align:top}.xl\:align-middle{vertical-align:middle}.xl\:align-bottom{vertical-align:bottom}.xl\:align-text-top{vertical-align:text-top}.xl\:align-text-bottom{vertical-align:text-bottom}.xl\:visible{visibility:visible}.xl\:invisible{visibility:hidden}.xl\:whitespace-normal{white-space:normal}.xl\:whitespace-no-wrap{white-space:nowrap}.xl\:whitespace-pre{white-space:pre}.xl\:whitespace-pre-line{white-space:pre-line}.xl\:whitespace-pre-wrap{white-space:pre-wrap}.xl\:break-normal{overflow-wrap:normal;word-break:normal}.xl\:break-words{overflow-wrap:break-word}.xl\:break-all{word-break:break-all}.xl\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.xl\:w-0{width:0}.xl\:w-1{width:.25rem}.xl\:w-2{width:.5rem}.xl\:w-3{width:.75rem}.xl\:w-4{width:1rem}.xl\:w-5{width:1.25rem}.xl\:w-6{width:1.5rem}.xl\:w-7{width:1.75rem}.xl\:w-8{width:2rem}.xl\:w-9{width:2.25rem}.xl\:w-10{width:2.5rem}.xl\:w-11{width:2.75rem}.xl\:w-12{width:3rem}.xl\:w-13{width:3.25rem}.xl\:w-14{width:3.5rem}.xl\:w-15{width:3.75rem}.xl\:w-16{width:4rem}.xl\:w-20{width:5rem}.xl\:w-24{width:6rem}.xl\:w-28{width:7rem}.xl\:w-32{width:8rem}.xl\:w-36{width:9rem}.xl\:w-40{width:10rem}.xl\:w-44{width:11rem}.xl\:w-48{width:12rem}.xl\:w-52{width:13rem}.xl\:w-56{width:14rem}.xl\:w-60{width:15rem}.xl\:w-64{width:16rem}.xl\:w-72{width:18rem}.xl\:w-80{width:20rem}.xl\:w-96{width:24rem}.xl\:w-auto{width:auto}.xl\:w-px{width:1px}.xl\:w-0\.5{width:.125rem}.xl\:w-1\.5{width:.375rem}.xl\:w-2\.5{width:.625rem}.xl\:w-3\.5{width:.875rem}.xl\:w-1\/2{width:50%}.xl\:w-1\/3{width:33.333333%}.xl\:w-2\/3{width:66.666667%}.xl\:w-1\/4{width:25%}.xl\:w-2\/4{width:50%}.xl\:w-3\/4{width:75%}.xl\:w-1\/5{width:20%}.xl\:w-2\/5{width:40%}.xl\:w-3\/5{width:60%}.xl\:w-4\/5{width:80%}.xl\:w-1\/6{width:16.666667%}.xl\:w-2\/6{width:33.333333%}.xl\:w-3\/6{width:50%}.xl\:w-4\/6{width:66.666667%}.xl\:w-5\/6{width:83.333333%}.xl\:w-1\/12{width:8.333333%}.xl\:w-2\/12{width:16.666667%}.xl\:w-3\/12{width:25%}.xl\:w-4\/12{width:33.333333%}.xl\:w-5\/12{width:41.666667%}.xl\:w-6\/12{width:50%}.xl\:w-7\/12{width:58.333333%}.xl\:w-8\/12{width:66.666667%}.xl\:w-9\/12{width:75%}.xl\:w-10\/12{width:83.333333%}.xl\:w-11\/12{width:91.666667%}.xl\:w-full{width:100%}.xl\:w-screen{width:100vw}.xl\:w-min-content{width:-webkit-min-content;width:-moz-min-content;width:min-content}.xl\:w-max-content{width:-webkit-max-content;width:-moz-max-content;width:max-content}.xl\:z-0{z-index:0}.xl\:z-10{z-index:10}.xl\:z-20{z-index:20}.xl\:z-30{z-index:30}.xl\:z-40{z-index:40}.xl\:z-50{z-index:50}.xl\:z-auto{z-index:auto}.xl\:focus-within\:z-0:focus-within{z-index:0}.xl\:focus-within\:z-10:focus-within{z-index:10}.xl\:focus-within\:z-20:focus-within{z-index:20}.xl\:focus-within\:z-30:focus-within{z-index:30}.xl\:focus-within\:z-40:focus-within{z-index:40}.xl\:focus-within\:z-50:focus-within{z-index:50}.xl\:focus-within\:z-auto:focus-within{z-index:auto}.xl\:focus\:z-0:focus{z-index:0}.xl\:focus\:z-10:focus{z-index:10}.xl\:focus\:z-20:focus{z-index:20}.xl\:focus\:z-30:focus{z-index:30}.xl\:focus\:z-40:focus{z-index:40}.xl\:focus\:z-50:focus{z-index:50}.xl\:focus\:z-auto:focus{z-index:auto}.xl\:gap-0{grid-gap:0;gap:0}.xl\:gap-1{grid-gap:.25rem;gap:.25rem}.xl\:gap-2{grid-gap:.5rem;gap:.5rem}.xl\:gap-3{grid-gap:.75rem;gap:.75rem}.xl\:gap-4{grid-gap:1rem;gap:1rem}.xl\:gap-5{grid-gap:1.25rem;gap:1.25rem}.xl\:gap-6{grid-gap:1.5rem;gap:1.5rem}.xl\:gap-7{grid-gap:1.75rem;gap:1.75rem}.xl\:gap-8{grid-gap:2rem;gap:2rem}.xl\:gap-9{grid-gap:2.25rem;gap:2.25rem}.xl\:gap-10{grid-gap:2.5rem;gap:2.5rem}.xl\:gap-11{grid-gap:2.75rem;gap:2.75rem}.xl\:gap-12{grid-gap:3rem;gap:3rem}.xl\:gap-13{grid-gap:3.25rem;gap:3.25rem}.xl\:gap-14{grid-gap:3.5rem;gap:3.5rem}.xl\:gap-15{grid-gap:3.75rem;gap:3.75rem}.xl\:gap-16{grid-gap:4rem;gap:4rem}.xl\:gap-20{grid-gap:5rem;gap:5rem}.xl\:gap-24{grid-gap:6rem;gap:6rem}.xl\:gap-28{grid-gap:7rem;gap:7rem}.xl\:gap-32{grid-gap:8rem;gap:8rem}.xl\:gap-36{grid-gap:9rem;gap:9rem}.xl\:gap-40{grid-gap:10rem;gap:10rem}.xl\:gap-44{grid-gap:11rem;gap:11rem}.xl\:gap-48{grid-gap:12rem;gap:12rem}.xl\:gap-52{grid-gap:13rem;gap:13rem}.xl\:gap-56{grid-gap:14rem;gap:14rem}.xl\:gap-60{grid-gap:15rem;gap:15rem}.xl\:gap-64{grid-gap:16rem;gap:16rem}.xl\:gap-72{grid-gap:18rem;gap:18rem}.xl\:gap-80{grid-gap:20rem;gap:20rem}.xl\:gap-96{grid-gap:24rem;gap:24rem}.xl\:gap-px{grid-gap:1px;gap:1px}.xl\:gap-0\.5{grid-gap:.125rem;gap:.125rem}.xl\:gap-1\.5{grid-gap:.375rem;gap:.375rem}.xl\:gap-2\.5{grid-gap:.625rem;gap:.625rem}.xl\:gap-3\.5{grid-gap:.875rem;gap:.875rem}.xl\:gap-1\/2{grid-gap:50%;gap:50%}.xl\:gap-1\/3{grid-gap:33.333333%;gap:33.333333%}.xl\:gap-2\/3{grid-gap:66.666667%;gap:66.666667%}.xl\:gap-1\/4{grid-gap:25%;gap:25%}.xl\:gap-2\/4{grid-gap:50%;gap:50%}.xl\:gap-3\/4{grid-gap:75%;gap:75%}.xl\:gap-1\/5{grid-gap:20%;gap:20%}.xl\:gap-2\/5{grid-gap:40%;gap:40%}.xl\:gap-3\/5{grid-gap:60%;gap:60%}.xl\:gap-4\/5{grid-gap:80%;gap:80%}.xl\:gap-1\/6{grid-gap:16.666667%;gap:16.666667%}.xl\:gap-2\/6{grid-gap:33.333333%;gap:33.333333%}.xl\:gap-3\/6{grid-gap:50%;gap:50%}.xl\:gap-4\/6{grid-gap:66.666667%;gap:66.666667%}.xl\:gap-5\/6{grid-gap:83.333333%;gap:83.333333%}.xl\:gap-1\/12{grid-gap:8.333333%;gap:8.333333%}.xl\:gap-2\/12{grid-gap:16.666667%;gap:16.666667%}.xl\:gap-3\/12{grid-gap:25%;gap:25%}.xl\:gap-4\/12{grid-gap:33.333333%;gap:33.333333%}.xl\:gap-5\/12{grid-gap:41.666667%;gap:41.666667%}.xl\:gap-6\/12{grid-gap:50%;gap:50%}.xl\:gap-7\/12{grid-gap:58.333333%;gap:58.333333%}.xl\:gap-8\/12{grid-gap:66.666667%;gap:66.666667%}.xl\:gap-9\/12{grid-gap:75%;gap:75%}.xl\:gap-10\/12{grid-gap:83.333333%;gap:83.333333%}.xl\:gap-11\/12{grid-gap:91.666667%;gap:91.666667%}.xl\:gap-full{grid-gap:100%;gap:100%}.xl\:col-gap-0{grid-column-gap:0;-moz-column-gap:0;column-gap:0}.xl\:col-gap-1{grid-column-gap:.25rem;-moz-column-gap:.25rem;column-gap:.25rem}.xl\:col-gap-2{grid-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}.xl\:col-gap-3{grid-column-gap:.75rem;-moz-column-gap:.75rem;column-gap:.75rem}.xl\:col-gap-4{grid-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.xl\:col-gap-5{grid-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.xl\:col-gap-6{grid-column-gap:1.5rem;-moz-column-gap:1.5rem;column-gap:1.5rem}.xl\:col-gap-7{grid-column-gap:1.75rem;-moz-column-gap:1.75rem;column-gap:1.75rem}.xl\:col-gap-8{grid-column-gap:2rem;-moz-column-gap:2rem;column-gap:2rem}.xl\:col-gap-9{grid-column-gap:2.25rem;-moz-column-gap:2.25rem;column-gap:2.25rem}.xl\:col-gap-10{grid-column-gap:2.5rem;-moz-column-gap:2.5rem;column-gap:2.5rem}.xl\:col-gap-11{grid-column-gap:2.75rem;-moz-column-gap:2.75rem;column-gap:2.75rem}.xl\:col-gap-12{grid-column-gap:3rem;-moz-column-gap:3rem;column-gap:3rem}.xl\:col-gap-13{grid-column-gap:3.25rem;-moz-column-gap:3.25rem;column-gap:3.25rem}.xl\:col-gap-14{grid-column-gap:3.5rem;-moz-column-gap:3.5rem;column-gap:3.5rem}.xl\:col-gap-15{grid-column-gap:3.75rem;-moz-column-gap:3.75rem;column-gap:3.75rem}.xl\:col-gap-16{grid-column-gap:4rem;-moz-column-gap:4rem;column-gap:4rem}.xl\:col-gap-20{grid-column-gap:5rem;-moz-column-gap:5rem;column-gap:5rem}.xl\:col-gap-24{grid-column-gap:6rem;-moz-column-gap:6rem;column-gap:6rem}.xl\:col-gap-28{grid-column-gap:7rem;-moz-column-gap:7rem;column-gap:7rem}.xl\:col-gap-32{grid-column-gap:8rem;-moz-column-gap:8rem;column-gap:8rem}.xl\:col-gap-36{grid-column-gap:9rem;-moz-column-gap:9rem;column-gap:9rem}.xl\:col-gap-40{grid-column-gap:10rem;-moz-column-gap:10rem;column-gap:10rem}.xl\:col-gap-44{grid-column-gap:11rem;-moz-column-gap:11rem;column-gap:11rem}.xl\:col-gap-48{grid-column-gap:12rem;-moz-column-gap:12rem;column-gap:12rem}.xl\:col-gap-52{grid-column-gap:13rem;-moz-column-gap:13rem;column-gap:13rem}.xl\:col-gap-56{grid-column-gap:14rem;-moz-column-gap:14rem;column-gap:14rem}.xl\:col-gap-60{grid-column-gap:15rem;-moz-column-gap:15rem;column-gap:15rem}.xl\:col-gap-64{grid-column-gap:16rem;-moz-column-gap:16rem;column-gap:16rem}.xl\:col-gap-72{grid-column-gap:18rem;-moz-column-gap:18rem;column-gap:18rem}.xl\:col-gap-80{grid-column-gap:20rem;-moz-column-gap:20rem;column-gap:20rem}.xl\:col-gap-96{grid-column-gap:24rem;-moz-column-gap:24rem;column-gap:24rem}.xl\:col-gap-px{grid-column-gap:1px;-moz-column-gap:1px;column-gap:1px}.xl\:col-gap-0\.5{grid-column-gap:.125rem;-moz-column-gap:.125rem;column-gap:.125rem}.xl\:col-gap-1\.5{grid-column-gap:.375rem;-moz-column-gap:.375rem;column-gap:.375rem}.xl\:col-gap-2\.5{grid-column-gap:.625rem;-moz-column-gap:.625rem;column-gap:.625rem}.xl\:col-gap-3\.5{grid-column-gap:.875rem;-moz-column-gap:.875rem;column-gap:.875rem}.xl\:col-gap-1\/2{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.xl\:col-gap-1\/3{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.xl\:col-gap-2\/3{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.xl\:col-gap-1\/4{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.xl\:col-gap-2\/4{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.xl\:col-gap-3\/4{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.xl\:col-gap-1\/5{grid-column-gap:20%;-moz-column-gap:20%;column-gap:20%}.xl\:col-gap-2\/5{grid-column-gap:40%;-moz-column-gap:40%;column-gap:40%}.xl\:col-gap-3\/5{grid-column-gap:60%;-moz-column-gap:60%;column-gap:60%}.xl\:col-gap-4\/5{grid-column-gap:80%;-moz-column-gap:80%;column-gap:80%}.xl\:col-gap-1\/6{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.xl\:col-gap-2\/6{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.xl\:col-gap-3\/6{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.xl\:col-gap-4\/6{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.xl\:col-gap-5\/6{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.xl\:col-gap-1\/12{grid-column-gap:8.333333%;-moz-column-gap:8.333333%;column-gap:8.333333%}.xl\:col-gap-2\/12{grid-column-gap:16.666667%;-moz-column-gap:16.666667%;column-gap:16.666667%}.xl\:col-gap-3\/12{grid-column-gap:25%;-moz-column-gap:25%;column-gap:25%}.xl\:col-gap-4\/12{grid-column-gap:33.333333%;-moz-column-gap:33.333333%;column-gap:33.333333%}.xl\:col-gap-5\/12{grid-column-gap:41.666667%;-moz-column-gap:41.666667%;column-gap:41.666667%}.xl\:col-gap-6\/12{grid-column-gap:50%;-moz-column-gap:50%;column-gap:50%}.xl\:col-gap-7\/12{grid-column-gap:58.333333%;-moz-column-gap:58.333333%;column-gap:58.333333%}.xl\:col-gap-8\/12{grid-column-gap:66.666667%;-moz-column-gap:66.666667%;column-gap:66.666667%}.xl\:col-gap-9\/12{grid-column-gap:75%;-moz-column-gap:75%;column-gap:75%}.xl\:col-gap-10\/12{grid-column-gap:83.333333%;-moz-column-gap:83.333333%;column-gap:83.333333%}.xl\:col-gap-11\/12{grid-column-gap:91.666667%;-moz-column-gap:91.666667%;column-gap:91.666667%}.xl\:col-gap-full{grid-column-gap:100%;-moz-column-gap:100%;column-gap:100%}.xl\:row-gap-0{grid-row-gap:0;row-gap:0}.xl\:row-gap-1{grid-row-gap:.25rem;row-gap:.25rem}.xl\:row-gap-2{grid-row-gap:.5rem;row-gap:.5rem}.xl\:row-gap-3{grid-row-gap:.75rem;row-gap:.75rem}.xl\:row-gap-4{grid-row-gap:1rem;row-gap:1rem}.xl\:row-gap-5{grid-row-gap:1.25rem;row-gap:1.25rem}.xl\:row-gap-6{grid-row-gap:1.5rem;row-gap:1.5rem}.xl\:row-gap-7{grid-row-gap:1.75rem;row-gap:1.75rem}.xl\:row-gap-8{grid-row-gap:2rem;row-gap:2rem}.xl\:row-gap-9{grid-row-gap:2.25rem;row-gap:2.25rem}.xl\:row-gap-10{grid-row-gap:2.5rem;row-gap:2.5rem}.xl\:row-gap-11{grid-row-gap:2.75rem;row-gap:2.75rem}.xl\:row-gap-12{grid-row-gap:3rem;row-gap:3rem}.xl\:row-gap-13{grid-row-gap:3.25rem;row-gap:3.25rem}.xl\:row-gap-14{grid-row-gap:3.5rem;row-gap:3.5rem}.xl\:row-gap-15{grid-row-gap:3.75rem;row-gap:3.75rem}.xl\:row-gap-16{grid-row-gap:4rem;row-gap:4rem}.xl\:row-gap-20{grid-row-gap:5rem;row-gap:5rem}.xl\:row-gap-24{grid-row-gap:6rem;row-gap:6rem}.xl\:row-gap-28{grid-row-gap:7rem;row-gap:7rem}.xl\:row-gap-32{grid-row-gap:8rem;row-gap:8rem}.xl\:row-gap-36{grid-row-gap:9rem;row-gap:9rem}.xl\:row-gap-40{grid-row-gap:10rem;row-gap:10rem}.xl\:row-gap-44{grid-row-gap:11rem;row-gap:11rem}.xl\:row-gap-48{grid-row-gap:12rem;row-gap:12rem}.xl\:row-gap-52{grid-row-gap:13rem;row-gap:13rem}.xl\:row-gap-56{grid-row-gap:14rem;row-gap:14rem}.xl\:row-gap-60{grid-row-gap:15rem;row-gap:15rem}.xl\:row-gap-64{grid-row-gap:16rem;row-gap:16rem}.xl\:row-gap-72{grid-row-gap:18rem;row-gap:18rem}.xl\:row-gap-80{grid-row-gap:20rem;row-gap:20rem}.xl\:row-gap-96{grid-row-gap:24rem;row-gap:24rem}.xl\:row-gap-px{grid-row-gap:1px;row-gap:1px}.xl\:row-gap-0\.5{grid-row-gap:.125rem;row-gap:.125rem}.xl\:row-gap-1\.5{grid-row-gap:.375rem;row-gap:.375rem}.xl\:row-gap-2\.5{grid-row-gap:.625rem;row-gap:.625rem}.xl\:row-gap-3\.5{grid-row-gap:.875rem;row-gap:.875rem}.xl\:row-gap-1\/2{grid-row-gap:50%;row-gap:50%}.xl\:row-gap-1\/3{grid-row-gap:33.333333%;row-gap:33.333333%}.xl\:row-gap-2\/3{grid-row-gap:66.666667%;row-gap:66.666667%}.xl\:row-gap-1\/4{grid-row-gap:25%;row-gap:25%}.xl\:row-gap-2\/4{grid-row-gap:50%;row-gap:50%}.xl\:row-gap-3\/4{grid-row-gap:75%;row-gap:75%}.xl\:row-gap-1\/5{grid-row-gap:20%;row-gap:20%}.xl\:row-gap-2\/5{grid-row-gap:40%;row-gap:40%}.xl\:row-gap-3\/5{grid-row-gap:60%;row-gap:60%}.xl\:row-gap-4\/5{grid-row-gap:80%;row-gap:80%}.xl\:row-gap-1\/6{grid-row-gap:16.666667%;row-gap:16.666667%}.xl\:row-gap-2\/6{grid-row-gap:33.333333%;row-gap:33.333333%}.xl\:row-gap-3\/6{grid-row-gap:50%;row-gap:50%}.xl\:row-gap-4\/6{grid-row-gap:66.666667%;row-gap:66.666667%}.xl\:row-gap-5\/6{grid-row-gap:83.333333%;row-gap:83.333333%}.xl\:row-gap-1\/12{grid-row-gap:8.333333%;row-gap:8.333333%}.xl\:row-gap-2\/12{grid-row-gap:16.666667%;row-gap:16.666667%}.xl\:row-gap-3\/12{grid-row-gap:25%;row-gap:25%}.xl\:row-gap-4\/12{grid-row-gap:33.333333%;row-gap:33.333333%}.xl\:row-gap-5\/12{grid-row-gap:41.666667%;row-gap:41.666667%}.xl\:row-gap-6\/12{grid-row-gap:50%;row-gap:50%}.xl\:row-gap-7\/12{grid-row-gap:58.333333%;row-gap:58.333333%}.xl\:row-gap-8\/12{grid-row-gap:66.666667%;row-gap:66.666667%}.xl\:row-gap-9\/12{grid-row-gap:75%;row-gap:75%}.xl\:row-gap-10\/12{grid-row-gap:83.333333%;row-gap:83.333333%}.xl\:row-gap-11\/12{grid-row-gap:91.666667%;row-gap:91.666667%}.xl\:row-gap-full{grid-row-gap:100%;row-gap:100%}.xl\:grid-flow-row{grid-auto-flow:row}.xl\:grid-flow-col{grid-auto-flow:column}.xl\:grid-flow-row-dense{grid-auto-flow:row dense}.xl\:grid-flow-col-dense{grid-auto-flow:column dense}.xl\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.xl\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.xl\:grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.xl\:grid-cols-8{grid-template-columns:repeat(8,minmax(0,1fr))}.xl\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}.xl\:grid-cols-10{grid-template-columns:repeat(10,minmax(0,1fr))}.xl\:grid-cols-11{grid-template-columns:repeat(11,minmax(0,1fr))}.xl\:grid-cols-12{grid-template-columns:repeat(12,minmax(0,1fr))}.xl\:grid-cols-none{grid-template-columns:none}.xl\:col-auto{grid-column:auto}.xl\:col-span-1{grid-column:span 1/span 1}.xl\:col-span-2{grid-column:span 2/span 2}.xl\:col-span-3{grid-column:span 3/span 3}.xl\:col-span-4{grid-column:span 4/span 4}.xl\:col-span-5{grid-column:span 5/span 5}.xl\:col-span-6{grid-column:span 6/span 6}.xl\:col-span-7{grid-column:span 7/span 7}.xl\:col-span-8{grid-column:span 8/span 8}.xl\:col-span-9{grid-column:span 9/span 9}.xl\:col-span-10{grid-column:span 10/span 10}.xl\:col-span-11{grid-column:span 11/span 11}.xl\:col-span-12{grid-column:span 12/span 12}.xl\:col-start-1{grid-column-start:1}.xl\:col-start-2{grid-column-start:2}.xl\:col-start-3{grid-column-start:3}.xl\:col-start-4{grid-column-start:4}.xl\:col-start-5{grid-column-start:5}.xl\:col-start-6{grid-column-start:6}.xl\:col-start-7{grid-column-start:7}.xl\:col-start-8{grid-column-start:8}.xl\:col-start-9{grid-column-start:9}.xl\:col-start-10{grid-column-start:10}.xl\:col-start-11{grid-column-start:11}.xl\:col-start-12{grid-column-start:12}.xl\:col-start-13{grid-column-start:13}.xl\:col-start-auto{grid-column-start:auto}.xl\:col-end-1{grid-column-end:1}.xl\:col-end-2{grid-column-end:2}.xl\:col-end-3{grid-column-end:3}.xl\:col-end-4{grid-column-end:4}.xl\:col-end-5{grid-column-end:5}.xl\:col-end-6{grid-column-end:6}.xl\:col-end-7{grid-column-end:7}.xl\:col-end-8{grid-column-end:8}.xl\:col-end-9{grid-column-end:9}.xl\:col-end-10{grid-column-end:10}.xl\:col-end-11{grid-column-end:11}.xl\:col-end-12{grid-column-end:12}.xl\:col-end-13{grid-column-end:13}.xl\:col-end-auto{grid-column-end:auto}.xl\:grid-rows-1{grid-template-rows:repeat(1,minmax(0,1fr))}.xl\:grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.xl\:grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.xl\:grid-rows-4{grid-template-rows:repeat(4,minmax(0,1fr))}.xl\:grid-rows-5{grid-template-rows:repeat(5,minmax(0,1fr))}.xl\:grid-rows-6{grid-template-rows:repeat(6,minmax(0,1fr))}.xl\:grid-rows-none{grid-template-rows:none}.xl\:row-auto{grid-row:auto}.xl\:row-span-1{grid-row:span 1/span 1}.xl\:row-span-2{grid-row:span 2/span 2}.xl\:row-span-3{grid-row:span 3/span 3}.xl\:row-span-4{grid-row:span 4/span 4}.xl\:row-span-5{grid-row:span 5/span 5}.xl\:row-span-6{grid-row:span 6/span 6}.xl\:row-start-1{grid-row-start:1}.xl\:row-start-2{grid-row-start:2}.xl\:row-start-3{grid-row-start:3}.xl\:row-start-4{grid-row-start:4}.xl\:row-start-5{grid-row-start:5}.xl\:row-start-6{grid-row-start:6}.xl\:row-start-7{grid-row-start:7}.xl\:row-start-auto{grid-row-start:auto}.xl\:row-end-1{grid-row-end:1}.xl\:row-end-2{grid-row-end:2}.xl\:row-end-3{grid-row-end:3}.xl\:row-end-4{grid-row-end:4}.xl\:row-end-5{grid-row-end:5}.xl\:row-end-6{grid-row-end:6}.xl\:row-end-7{grid-row-end:7}.xl\:row-end-auto{grid-row-end:auto}.xl\:transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.xl\:transform-none{transform:none}.xl\:origin-center{transform-origin:center}.xl\:origin-top{transform-origin:top}.xl\:origin-top-right{transform-origin:top right}.xl\:origin-right{transform-origin:right}.xl\:origin-bottom-right{transform-origin:bottom right}.xl\:origin-bottom{transform-origin:bottom}.xl\:origin-bottom-left{transform-origin:bottom left}.xl\:origin-left{transform-origin:left}.xl\:origin-top-left{transform-origin:top left}.xl\:scale-0{--transform-scale-x:0;--transform-scale-y:0}.xl\:scale-50{--transform-scale-x:.5;--transform-scale-y:.5}.xl\:scale-75{--transform-scale-x:.75;--transform-scale-y:.75}.xl\:scale-90{--transform-scale-x:.9;--transform-scale-y:.9}.xl\:scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.xl\:scale-100{--transform-scale-x:1;--transform-scale-y:1}.xl\:scale-105{--transform-scale-x:1.05;--transform-scale-y:1.05}.xl\:scale-110{--transform-scale-x:1.1;--transform-scale-y:1.1}.xl\:scale-125{--transform-scale-x:1.25;--transform-scale-y:1.25}.xl\:scale-150{--transform-scale-x:1.5;--transform-scale-y:1.5}.xl\:scale-x-0{--transform-scale-x:0}.xl\:scale-x-50{--transform-scale-x:.5}.xl\:scale-x-75{--transform-scale-x:.75}.xl\:scale-x-90{--transform-scale-x:.9}.xl\:scale-x-95{--transform-scale-x:.95}.xl\:scale-x-100{--transform-scale-x:1}.xl\:scale-x-105{--transform-scale-x:1.05}.xl\:scale-x-110{--transform-scale-x:1.1}.xl\:scale-x-125{--transform-scale-x:1.25}.xl\:scale-x-150{--transform-scale-x:1.5}.xl\:scale-y-0{--transform-scale-y:0}.xl\:scale-y-50{--transform-scale-y:.5}.xl\:scale-y-75{--transform-scale-y:.75}.xl\:scale-y-90{--transform-scale-y:.9}.xl\:scale-y-95{--transform-scale-y:.95}.xl\:scale-y-100{--transform-scale-y:1}.xl\:scale-y-105{--transform-scale-y:1.05}.xl\:scale-y-110{--transform-scale-y:1.1}.xl\:scale-y-125{--transform-scale-y:1.25}.xl\:scale-y-150{--transform-scale-y:1.5}.xl\:hover\:scale-0:hover{--transform-scale-x:0;--transform-scale-y:0}.xl\:hover\:scale-50:hover{--transform-scale-x:.5;--transform-scale-y:.5}.xl\:hover\:scale-75:hover{--transform-scale-x:.75;--transform-scale-y:.75}.xl\:hover\:scale-90:hover{--transform-scale-x:.9;--transform-scale-y:.9}.xl\:hover\:scale-95:hover{--transform-scale-x:.95;--transform-scale-y:.95}.xl\:hover\:scale-100:hover{--transform-scale-x:1;--transform-scale-y:1}.xl\:hover\:scale-105:hover{--transform-scale-x:1.05;--transform-scale-y:1.05}.xl\:hover\:scale-110:hover{--transform-scale-x:1.1;--transform-scale-y:1.1}.xl\:hover\:scale-125:hover{--transform-scale-x:1.25;--transform-scale-y:1.25}.xl\:hover\:scale-150:hover{--transform-scale-x:1.5;--transform-scale-y:1.5}.xl\:hover\:scale-x-0:hover{--transform-scale-x:0}.xl\:hover\:scale-x-50:hover{--transform-scale-x:.5}.xl\:hover\:scale-x-75:hover{--transform-scale-x:.75}.xl\:hover\:scale-x-90:hover{--transform-scale-x:.9}.xl\:hover\:scale-x-95:hover{--transform-scale-x:.95}.xl\:hover\:scale-x-100:hover{--transform-scale-x:1}.xl\:hover\:scale-x-105:hover{--transform-scale-x:1.05}.xl\:hover\:scale-x-110:hover{--transform-scale-x:1.1}.xl\:hover\:scale-x-125:hover{--transform-scale-x:1.25}.xl\:hover\:scale-x-150:hover{--transform-scale-x:1.5}.xl\:hover\:scale-y-0:hover{--transform-scale-y:0}.xl\:hover\:scale-y-50:hover{--transform-scale-y:.5}.xl\:hover\:scale-y-75:hover{--transform-scale-y:.75}.xl\:hover\:scale-y-90:hover{--transform-scale-y:.9}.xl\:hover\:scale-y-95:hover{--transform-scale-y:.95}.xl\:hover\:scale-y-100:hover{--transform-scale-y:1}.xl\:hover\:scale-y-105:hover{--transform-scale-y:1.05}.xl\:hover\:scale-y-110:hover{--transform-scale-y:1.1}.xl\:hover\:scale-y-125:hover{--transform-scale-y:1.25}.xl\:hover\:scale-y-150:hover{--transform-scale-y:1.5}.xl\:focus\:scale-0:focus{--transform-scale-x:0;--transform-scale-y:0}.xl\:focus\:scale-50:focus{--transform-scale-x:.5;--transform-scale-y:.5}.xl\:focus\:scale-75:focus{--transform-scale-x:.75;--transform-scale-y:.75}.xl\:focus\:scale-90:focus{--transform-scale-x:.9;--transform-scale-y:.9}.xl\:focus\:scale-95:focus{--transform-scale-x:.95;--transform-scale-y:.95}.xl\:focus\:scale-100:focus{--transform-scale-x:1;--transform-scale-y:1}.xl\:focus\:scale-105:focus{--transform-scale-x:1.05;--transform-scale-y:1.05}.xl\:focus\:scale-110:focus{--transform-scale-x:1.1;--transform-scale-y:1.1}.xl\:focus\:scale-125:focus{--transform-scale-x:1.25;--transform-scale-y:1.25}.xl\:focus\:scale-150:focus{--transform-scale-x:1.5;--transform-scale-y:1.5}.xl\:focus\:scale-x-0:focus{--transform-scale-x:0}.xl\:focus\:scale-x-50:focus{--transform-scale-x:.5}.xl\:focus\:scale-x-75:focus{--transform-scale-x:.75}.xl\:focus\:scale-x-90:focus{--transform-scale-x:.9}.xl\:focus\:scale-x-95:focus{--transform-scale-x:.95}.xl\:focus\:scale-x-100:focus{--transform-scale-x:1}.xl\:focus\:scale-x-105:focus{--transform-scale-x:1.05}.xl\:focus\:scale-x-110:focus{--transform-scale-x:1.1}.xl\:focus\:scale-x-125:focus{--transform-scale-x:1.25}.xl\:focus\:scale-x-150:focus{--transform-scale-x:1.5}.xl\:focus\:scale-y-0:focus{--transform-scale-y:0}.xl\:focus\:scale-y-50:focus{--transform-scale-y:.5}.xl\:focus\:scale-y-75:focus{--transform-scale-y:.75}.xl\:focus\:scale-y-90:focus{--transform-scale-y:.9}.xl\:focus\:scale-y-95:focus{--transform-scale-y:.95}.xl\:focus\:scale-y-100:focus{--transform-scale-y:1}.xl\:focus\:scale-y-105:focus{--transform-scale-y:1.05}.xl\:focus\:scale-y-110:focus{--transform-scale-y:1.1}.xl\:focus\:scale-y-125:focus{--transform-scale-y:1.25}.xl\:focus\:scale-y-150:focus{--transform-scale-y:1.5}.xl\:rotate-0{--transform-rotate:0}.xl\:rotate-45{--transform-rotate:45deg}.xl\:rotate-90{--transform-rotate:90deg}.xl\:rotate-180{--transform-rotate:180deg}.xl\:-rotate-180{--transform-rotate:-180deg}.xl\:-rotate-90{--transform-rotate:-90deg}.xl\:-rotate-45{--transform-rotate:-45deg}.xl\:hover\:rotate-0:hover{--transform-rotate:0}.xl\:hover\:rotate-45:hover{--transform-rotate:45deg}.xl\:hover\:rotate-90:hover{--transform-rotate:90deg}.xl\:hover\:rotate-180:hover{--transform-rotate:180deg}.xl\:hover\:-rotate-180:hover{--transform-rotate:-180deg}.xl\:hover\:-rotate-90:hover{--transform-rotate:-90deg}.xl\:hover\:-rotate-45:hover{--transform-rotate:-45deg}.xl\:focus\:rotate-0:focus{--transform-rotate:0}.xl\:focus\:rotate-45:focus{--transform-rotate:45deg}.xl\:focus\:rotate-90:focus{--transform-rotate:90deg}.xl\:focus\:rotate-180:focus{--transform-rotate:180deg}.xl\:focus\:-rotate-180:focus{--transform-rotate:-180deg}.xl\:focus\:-rotate-90:focus{--transform-rotate:-90deg}.xl\:focus\:-rotate-45:focus{--transform-rotate:-45deg}.xl\:translate-x-0{--transform-translate-x:0}.xl\:translate-x-1{--transform-translate-x:0.25rem}.xl\:translate-x-2{--transform-translate-x:0.5rem}.xl\:translate-x-3{--transform-translate-x:0.75rem}.xl\:translate-x-4{--transform-translate-x:1rem}.xl\:translate-x-5{--transform-translate-x:1.25rem}.xl\:translate-x-6{--transform-translate-x:1.5rem}.xl\:translate-x-7{--transform-translate-x:1.75rem}.xl\:translate-x-8{--transform-translate-x:2rem}.xl\:translate-x-9{--transform-translate-x:2.25rem}.xl\:translate-x-10{--transform-translate-x:2.5rem}.xl\:translate-x-11{--transform-translate-x:2.75rem}.xl\:translate-x-12{--transform-translate-x:3rem}.xl\:translate-x-13{--transform-translate-x:3.25rem}.xl\:translate-x-14{--transform-translate-x:3.5rem}.xl\:translate-x-15{--transform-translate-x:3.75rem}.xl\:translate-x-16{--transform-translate-x:4rem}.xl\:translate-x-20{--transform-translate-x:5rem}.xl\:translate-x-24{--transform-translate-x:6rem}.xl\:translate-x-28{--transform-translate-x:7rem}.xl\:translate-x-32{--transform-translate-x:8rem}.xl\:translate-x-36{--transform-translate-x:9rem}.xl\:translate-x-40{--transform-translate-x:10rem}.xl\:translate-x-44{--transform-translate-x:11rem}.xl\:translate-x-48{--transform-translate-x:12rem}.xl\:translate-x-52{--transform-translate-x:13rem}.xl\:translate-x-56{--transform-translate-x:14rem}.xl\:translate-x-60{--transform-translate-x:15rem}.xl\:translate-x-64{--transform-translate-x:16rem}.xl\:translate-x-72{--transform-translate-x:18rem}.xl\:translate-x-80{--transform-translate-x:20rem}.xl\:translate-x-96{--transform-translate-x:24rem}.xl\:translate-x-px{--transform-translate-x:1px}.xl\:translate-x-0\.5{--transform-translate-x:0.125rem}.xl\:translate-x-1\.5{--transform-translate-x:0.375rem}.xl\:translate-x-2\.5{--transform-translate-x:0.625rem}.xl\:translate-x-3\.5{--transform-translate-x:0.875rem}.xl\:translate-x-1\/2{--transform-translate-x:50%}.xl\:translate-x-1\/3{--transform-translate-x:33.333333%}.xl\:translate-x-2\/3{--transform-translate-x:66.666667%}.xl\:translate-x-1\/4{--transform-translate-x:25%}.xl\:translate-x-2\/4{--transform-translate-x:50%}.xl\:translate-x-3\/4{--transform-translate-x:75%}.xl\:translate-x-1\/5{--transform-translate-x:20%}.xl\:translate-x-2\/5{--transform-translate-x:40%}.xl\:translate-x-3\/5{--transform-translate-x:60%}.xl\:translate-x-4\/5{--transform-translate-x:80%}.xl\:translate-x-1\/6{--transform-translate-x:16.666667%}.xl\:translate-x-2\/6{--transform-translate-x:33.333333%}.xl\:translate-x-3\/6{--transform-translate-x:50%}.xl\:translate-x-4\/6{--transform-translate-x:66.666667%}.xl\:translate-x-5\/6{--transform-translate-x:83.333333%}.xl\:translate-x-1\/12{--transform-translate-x:8.333333%}.xl\:translate-x-2\/12{--transform-translate-x:16.666667%}.xl\:translate-x-3\/12{--transform-translate-x:25%}.xl\:translate-x-4\/12{--transform-translate-x:33.333333%}.xl\:translate-x-5\/12{--transform-translate-x:41.666667%}.xl\:translate-x-6\/12{--transform-translate-x:50%}.xl\:translate-x-7\/12{--transform-translate-x:58.333333%}.xl\:translate-x-8\/12{--transform-translate-x:66.666667%}.xl\:translate-x-9\/12{--transform-translate-x:75%}.xl\:translate-x-10\/12{--transform-translate-x:83.333333%}.xl\:translate-x-11\/12{--transform-translate-x:91.666667%}.xl\:translate-x-full{--transform-translate-x:100%}.xl\:-translate-x-1{--transform-translate-x:-0.25rem}.xl\:-translate-x-2{--transform-translate-x:-0.5rem}.xl\:-translate-x-3{--transform-translate-x:-0.75rem}.xl\:-translate-x-4{--transform-translate-x:-1rem}.xl\:-translate-x-5{--transform-translate-x:-1.25rem}.xl\:-translate-x-6{--transform-translate-x:-1.5rem}.xl\:-translate-x-7{--transform-translate-x:-1.75rem}.xl\:-translate-x-8{--transform-translate-x:-2rem}.xl\:-translate-x-9{--transform-translate-x:-2.25rem}.xl\:-translate-x-10{--transform-translate-x:-2.5rem}.xl\:-translate-x-11{--transform-translate-x:-2.75rem}.xl\:-translate-x-12{--transform-translate-x:-3rem}.xl\:-translate-x-13{--transform-translate-x:-3.25rem}.xl\:-translate-x-14{--transform-translate-x:-3.5rem}.xl\:-translate-x-15{--transform-translate-x:-3.75rem}.xl\:-translate-x-16{--transform-translate-x:-4rem}.xl\:-translate-x-20{--transform-translate-x:-5rem}.xl\:-translate-x-24{--transform-translate-x:-6rem}.xl\:-translate-x-28{--transform-translate-x:-7rem}.xl\:-translate-x-32{--transform-translate-x:-8rem}.xl\:-translate-x-36{--transform-translate-x:-9rem}.xl\:-translate-x-40{--transform-translate-x:-10rem}.xl\:-translate-x-44{--transform-translate-x:-11rem}.xl\:-translate-x-48{--transform-translate-x:-12rem}.xl\:-translate-x-52{--transform-translate-x:-13rem}.xl\:-translate-x-56{--transform-translate-x:-14rem}.xl\:-translate-x-60{--transform-translate-x:-15rem}.xl\:-translate-x-64{--transform-translate-x:-16rem}.xl\:-translate-x-72{--transform-translate-x:-18rem}.xl\:-translate-x-80{--transform-translate-x:-20rem}.xl\:-translate-x-96{--transform-translate-x:-24rem}.xl\:-translate-x-px{--transform-translate-x:-1px}.xl\:-translate-x-0\.5{--transform-translate-x:-0.125rem}.xl\:-translate-x-1\.5{--transform-translate-x:-0.375rem}.xl\:-translate-x-2\.5{--transform-translate-x:-0.625rem}.xl\:-translate-x-3\.5{--transform-translate-x:-0.875rem}.xl\:-translate-x-1\/2{--transform-translate-x:-50%}.xl\:-translate-x-1\/3{--transform-translate-x:-33.33333%}.xl\:-translate-x-2\/3{--transform-translate-x:-66.66667%}.xl\:-translate-x-1\/4{--transform-translate-x:-25%}.xl\:-translate-x-2\/4{--transform-translate-x:-50%}.xl\:-translate-x-3\/4{--transform-translate-x:-75%}.xl\:-translate-x-1\/5{--transform-translate-x:-20%}.xl\:-translate-x-2\/5{--transform-translate-x:-40%}.xl\:-translate-x-3\/5{--transform-translate-x:-60%}.xl\:-translate-x-4\/5{--transform-translate-x:-80%}.xl\:-translate-x-1\/6{--transform-translate-x:-16.66667%}.xl\:-translate-x-2\/6{--transform-translate-x:-33.33333%}.xl\:-translate-x-3\/6{--transform-translate-x:-50%}.xl\:-translate-x-4\/6{--transform-translate-x:-66.66667%}.xl\:-translate-x-5\/6{--transform-translate-x:-83.33333%}.xl\:-translate-x-1\/12{--transform-translate-x:-8.33333%}.xl\:-translate-x-2\/12{--transform-translate-x:-16.66667%}.xl\:-translate-x-3\/12{--transform-translate-x:-25%}.xl\:-translate-x-4\/12{--transform-translate-x:-33.33333%}.xl\:-translate-x-5\/12{--transform-translate-x:-41.66667%}.xl\:-translate-x-6\/12{--transform-translate-x:-50%}.xl\:-translate-x-7\/12{--transform-translate-x:-58.33333%}.xl\:-translate-x-8\/12{--transform-translate-x:-66.66667%}.xl\:-translate-x-9\/12{--transform-translate-x:-75%}.xl\:-translate-x-10\/12{--transform-translate-x:-83.33333%}.xl\:-translate-x-11\/12{--transform-translate-x:-91.66667%}.xl\:-translate-x-full{--transform-translate-x:-100%}.xl\:translate-y-0{--transform-translate-y:0}.xl\:translate-y-1{--transform-translate-y:0.25rem}.xl\:translate-y-2{--transform-translate-y:0.5rem}.xl\:translate-y-3{--transform-translate-y:0.75rem}.xl\:translate-y-4{--transform-translate-y:1rem}.xl\:translate-y-5{--transform-translate-y:1.25rem}.xl\:translate-y-6{--transform-translate-y:1.5rem}.xl\:translate-y-7{--transform-translate-y:1.75rem}.xl\:translate-y-8{--transform-translate-y:2rem}.xl\:translate-y-9{--transform-translate-y:2.25rem}.xl\:translate-y-10{--transform-translate-y:2.5rem}.xl\:translate-y-11{--transform-translate-y:2.75rem}.xl\:translate-y-12{--transform-translate-y:3rem}.xl\:translate-y-13{--transform-translate-y:3.25rem}.xl\:translate-y-14{--transform-translate-y:3.5rem}.xl\:translate-y-15{--transform-translate-y:3.75rem}.xl\:translate-y-16{--transform-translate-y:4rem}.xl\:translate-y-20{--transform-translate-y:5rem}.xl\:translate-y-24{--transform-translate-y:6rem}.xl\:translate-y-28{--transform-translate-y:7rem}.xl\:translate-y-32{--transform-translate-y:8rem}.xl\:translate-y-36{--transform-translate-y:9rem}.xl\:translate-y-40{--transform-translate-y:10rem}.xl\:translate-y-44{--transform-translate-y:11rem}.xl\:translate-y-48{--transform-translate-y:12rem}.xl\:translate-y-52{--transform-translate-y:13rem}.xl\:translate-y-56{--transform-translate-y:14rem}.xl\:translate-y-60{--transform-translate-y:15rem}.xl\:translate-y-64{--transform-translate-y:16rem}.xl\:translate-y-72{--transform-translate-y:18rem}.xl\:translate-y-80{--transform-translate-y:20rem}.xl\:translate-y-96{--transform-translate-y:24rem}.xl\:translate-y-px{--transform-translate-y:1px}.xl\:translate-y-0\.5{--transform-translate-y:0.125rem}.xl\:translate-y-1\.5{--transform-translate-y:0.375rem}.xl\:translate-y-2\.5{--transform-translate-y:0.625rem}.xl\:translate-y-3\.5{--transform-translate-y:0.875rem}.xl\:translate-y-1\/2{--transform-translate-y:50%}.xl\:translate-y-1\/3{--transform-translate-y:33.333333%}.xl\:translate-y-2\/3{--transform-translate-y:66.666667%}.xl\:translate-y-1\/4{--transform-translate-y:25%}.xl\:translate-y-2\/4{--transform-translate-y:50%}.xl\:translate-y-3\/4{--transform-translate-y:75%}.xl\:translate-y-1\/5{--transform-translate-y:20%}.xl\:translate-y-2\/5{--transform-translate-y:40%}.xl\:translate-y-3\/5{--transform-translate-y:60%}.xl\:translate-y-4\/5{--transform-translate-y:80%}.xl\:translate-y-1\/6{--transform-translate-y:16.666667%}.xl\:translate-y-2\/6{--transform-translate-y:33.333333%}.xl\:translate-y-3\/6{--transform-translate-y:50%}.xl\:translate-y-4\/6{--transform-translate-y:66.666667%}.xl\:translate-y-5\/6{--transform-translate-y:83.333333%}.xl\:translate-y-1\/12{--transform-translate-y:8.333333%}.xl\:translate-y-2\/12{--transform-translate-y:16.666667%}.xl\:translate-y-3\/12{--transform-translate-y:25%}.xl\:translate-y-4\/12{--transform-translate-y:33.333333%}.xl\:translate-y-5\/12{--transform-translate-y:41.666667%}.xl\:translate-y-6\/12{--transform-translate-y:50%}.xl\:translate-y-7\/12{--transform-translate-y:58.333333%}.xl\:translate-y-8\/12{--transform-translate-y:66.666667%}.xl\:translate-y-9\/12{--transform-translate-y:75%}.xl\:translate-y-10\/12{--transform-translate-y:83.333333%}.xl\:translate-y-11\/12{--transform-translate-y:91.666667%}.xl\:translate-y-full{--transform-translate-y:100%}.xl\:-translate-y-1{--transform-translate-y:-0.25rem}.xl\:-translate-y-2{--transform-translate-y:-0.5rem}.xl\:-translate-y-3{--transform-translate-y:-0.75rem}.xl\:-translate-y-4{--transform-translate-y:-1rem}.xl\:-translate-y-5{--transform-translate-y:-1.25rem}.xl\:-translate-y-6{--transform-translate-y:-1.5rem}.xl\:-translate-y-7{--transform-translate-y:-1.75rem}.xl\:-translate-y-8{--transform-translate-y:-2rem}.xl\:-translate-y-9{--transform-translate-y:-2.25rem}.xl\:-translate-y-10{--transform-translate-y:-2.5rem}.xl\:-translate-y-11{--transform-translate-y:-2.75rem}.xl\:-translate-y-12{--transform-translate-y:-3rem}.xl\:-translate-y-13{--transform-translate-y:-3.25rem}.xl\:-translate-y-14{--transform-translate-y:-3.5rem}.xl\:-translate-y-15{--transform-translate-y:-3.75rem}.xl\:-translate-y-16{--transform-translate-y:-4rem}.xl\:-translate-y-20{--transform-translate-y:-5rem}.xl\:-translate-y-24{--transform-translate-y:-6rem}.xl\:-translate-y-28{--transform-translate-y:-7rem}.xl\:-translate-y-32{--transform-translate-y:-8rem}.xl\:-translate-y-36{--transform-translate-y:-9rem}.xl\:-translate-y-40{--transform-translate-y:-10rem}.xl\:-translate-y-44{--transform-translate-y:-11rem}.xl\:-translate-y-48{--transform-translate-y:-12rem}.xl\:-translate-y-52{--transform-translate-y:-13rem}.xl\:-translate-y-56{--transform-translate-y:-14rem}.xl\:-translate-y-60{--transform-translate-y:-15rem}.xl\:-translate-y-64{--transform-translate-y:-16rem}.xl\:-translate-y-72{--transform-translate-y:-18rem}.xl\:-translate-y-80{--transform-translate-y:-20rem}.xl\:-translate-y-96{--transform-translate-y:-24rem}.xl\:-translate-y-px{--transform-translate-y:-1px}.xl\:-translate-y-0\.5{--transform-translate-y:-0.125rem}.xl\:-translate-y-1\.5{--transform-translate-y:-0.375rem}.xl\:-translate-y-2\.5{--transform-translate-y:-0.625rem}.xl\:-translate-y-3\.5{--transform-translate-y:-0.875rem}.xl\:-translate-y-1\/2{--transform-translate-y:-50%}.xl\:-translate-y-1\/3{--transform-translate-y:-33.33333%}.xl\:-translate-y-2\/3{--transform-translate-y:-66.66667%}.xl\:-translate-y-1\/4{--transform-translate-y:-25%}.xl\:-translate-y-2\/4{--transform-translate-y:-50%}.xl\:-translate-y-3\/4{--transform-translate-y:-75%}.xl\:-translate-y-1\/5{--transform-translate-y:-20%}.xl\:-translate-y-2\/5{--transform-translate-y:-40%}.xl\:-translate-y-3\/5{--transform-translate-y:-60%}.xl\:-translate-y-4\/5{--transform-translate-y:-80%}.xl\:-translate-y-1\/6{--transform-translate-y:-16.66667%}.xl\:-translate-y-2\/6{--transform-translate-y:-33.33333%}.xl\:-translate-y-3\/6{--transform-translate-y:-50%}.xl\:-translate-y-4\/6{--transform-translate-y:-66.66667%}.xl\:-translate-y-5\/6{--transform-translate-y:-83.33333%}.xl\:-translate-y-1\/12{--transform-translate-y:-8.33333%}.xl\:-translate-y-2\/12{--transform-translate-y:-16.66667%}.xl\:-translate-y-3\/12{--transform-translate-y:-25%}.xl\:-translate-y-4\/12{--transform-translate-y:-33.33333%}.xl\:-translate-y-5\/12{--transform-translate-y:-41.66667%}.xl\:-translate-y-6\/12{--transform-translate-y:-50%}.xl\:-translate-y-7\/12{--transform-translate-y:-58.33333%}.xl\:-translate-y-8\/12{--transform-translate-y:-66.66667%}.xl\:-translate-y-9\/12{--transform-translate-y:-75%}.xl\:-translate-y-10\/12{--transform-translate-y:-83.33333%}.xl\:-translate-y-11\/12{--transform-translate-y:-91.66667%}.xl\:-translate-y-full{--transform-translate-y:-100%}.xl\:hover\:translate-x-0:hover{--transform-translate-x:0}.xl\:hover\:translate-x-1:hover{--transform-translate-x:0.25rem}.xl\:hover\:translate-x-2:hover{--transform-translate-x:0.5rem}.xl\:hover\:translate-x-3:hover{--transform-translate-x:0.75rem}.xl\:hover\:translate-x-4:hover{--transform-translate-x:1rem}.xl\:hover\:translate-x-5:hover{--transform-translate-x:1.25rem}.xl\:hover\:translate-x-6:hover{--transform-translate-x:1.5rem}.xl\:hover\:translate-x-7:hover{--transform-translate-x:1.75rem}.xl\:hover\:translate-x-8:hover{--transform-translate-x:2rem}.xl\:hover\:translate-x-9:hover{--transform-translate-x:2.25rem}.xl\:hover\:translate-x-10:hover{--transform-translate-x:2.5rem}.xl\:hover\:translate-x-11:hover{--transform-translate-x:2.75rem}.xl\:hover\:translate-x-12:hover{--transform-translate-x:3rem}.xl\:hover\:translate-x-13:hover{--transform-translate-x:3.25rem}.xl\:hover\:translate-x-14:hover{--transform-translate-x:3.5rem}.xl\:hover\:translate-x-15:hover{--transform-translate-x:3.75rem}.xl\:hover\:translate-x-16:hover{--transform-translate-x:4rem}.xl\:hover\:translate-x-20:hover{--transform-translate-x:5rem}.xl\:hover\:translate-x-24:hover{--transform-translate-x:6rem}.xl\:hover\:translate-x-28:hover{--transform-translate-x:7rem}.xl\:hover\:translate-x-32:hover{--transform-translate-x:8rem}.xl\:hover\:translate-x-36:hover{--transform-translate-x:9rem}.xl\:hover\:translate-x-40:hover{--transform-translate-x:10rem}.xl\:hover\:translate-x-44:hover{--transform-translate-x:11rem}.xl\:hover\:translate-x-48:hover{--transform-translate-x:12rem}.xl\:hover\:translate-x-52:hover{--transform-translate-x:13rem}.xl\:hover\:translate-x-56:hover{--transform-translate-x:14rem}.xl\:hover\:translate-x-60:hover{--transform-translate-x:15rem}.xl\:hover\:translate-x-64:hover{--transform-translate-x:16rem}.xl\:hover\:translate-x-72:hover{--transform-translate-x:18rem}.xl\:hover\:translate-x-80:hover{--transform-translate-x:20rem}.xl\:hover\:translate-x-96:hover{--transform-translate-x:24rem}.xl\:hover\:translate-x-px:hover{--transform-translate-x:1px}.xl\:hover\:translate-x-0\.5:hover{--transform-translate-x:0.125rem}.xl\:hover\:translate-x-1\.5:hover{--transform-translate-x:0.375rem}.xl\:hover\:translate-x-2\.5:hover{--transform-translate-x:0.625rem}.xl\:hover\:translate-x-3\.5:hover{--transform-translate-x:0.875rem}.xl\:hover\:translate-x-1\/2:hover{--transform-translate-x:50%}.xl\:hover\:translate-x-1\/3:hover{--transform-translate-x:33.333333%}.xl\:hover\:translate-x-2\/3:hover{--transform-translate-x:66.666667%}.xl\:hover\:translate-x-1\/4:hover{--transform-translate-x:25%}.xl\:hover\:translate-x-2\/4:hover{--transform-translate-x:50%}.xl\:hover\:translate-x-3\/4:hover{--transform-translate-x:75%}.xl\:hover\:translate-x-1\/5:hover{--transform-translate-x:20%}.xl\:hover\:translate-x-2\/5:hover{--transform-translate-x:40%}.xl\:hover\:translate-x-3\/5:hover{--transform-translate-x:60%}.xl\:hover\:translate-x-4\/5:hover{--transform-translate-x:80%}.xl\:hover\:translate-x-1\/6:hover{--transform-translate-x:16.666667%}.xl\:hover\:translate-x-2\/6:hover{--transform-translate-x:33.333333%}.xl\:hover\:translate-x-3\/6:hover{--transform-translate-x:50%}.xl\:hover\:translate-x-4\/6:hover{--transform-translate-x:66.666667%}.xl\:hover\:translate-x-5\/6:hover{--transform-translate-x:83.333333%}.xl\:hover\:translate-x-1\/12:hover{--transform-translate-x:8.333333%}.xl\:hover\:translate-x-2\/12:hover{--transform-translate-x:16.666667%}.xl\:hover\:translate-x-3\/12:hover{--transform-translate-x:25%}.xl\:hover\:translate-x-4\/12:hover{--transform-translate-x:33.333333%}.xl\:hover\:translate-x-5\/12:hover{--transform-translate-x:41.666667%}.xl\:hover\:translate-x-6\/12:hover{--transform-translate-x:50%}.xl\:hover\:translate-x-7\/12:hover{--transform-translate-x:58.333333%}.xl\:hover\:translate-x-8\/12:hover{--transform-translate-x:66.666667%}.xl\:hover\:translate-x-9\/12:hover{--transform-translate-x:75%}.xl\:hover\:translate-x-10\/12:hover{--transform-translate-x:83.333333%}.xl\:hover\:translate-x-11\/12:hover{--transform-translate-x:91.666667%}.xl\:hover\:translate-x-full:hover{--transform-translate-x:100%}.xl\:hover\:-translate-x-1:hover{--transform-translate-x:-0.25rem}.xl\:hover\:-translate-x-2:hover{--transform-translate-x:-0.5rem}.xl\:hover\:-translate-x-3:hover{--transform-translate-x:-0.75rem}.xl\:hover\:-translate-x-4:hover{--transform-translate-x:-1rem}.xl\:hover\:-translate-x-5:hover{--transform-translate-x:-1.25rem}.xl\:hover\:-translate-x-6:hover{--transform-translate-x:-1.5rem}.xl\:hover\:-translate-x-7:hover{--transform-translate-x:-1.75rem}.xl\:hover\:-translate-x-8:hover{--transform-translate-x:-2rem}.xl\:hover\:-translate-x-9:hover{--transform-translate-x:-2.25rem}.xl\:hover\:-translate-x-10:hover{--transform-translate-x:-2.5rem}.xl\:hover\:-translate-x-11:hover{--transform-translate-x:-2.75rem}.xl\:hover\:-translate-x-12:hover{--transform-translate-x:-3rem}.xl\:hover\:-translate-x-13:hover{--transform-translate-x:-3.25rem}.xl\:hover\:-translate-x-14:hover{--transform-translate-x:-3.5rem}.xl\:hover\:-translate-x-15:hover{--transform-translate-x:-3.75rem}.xl\:hover\:-translate-x-16:hover{--transform-translate-x:-4rem}.xl\:hover\:-translate-x-20:hover{--transform-translate-x:-5rem}.xl\:hover\:-translate-x-24:hover{--transform-translate-x:-6rem}.xl\:hover\:-translate-x-28:hover{--transform-translate-x:-7rem}.xl\:hover\:-translate-x-32:hover{--transform-translate-x:-8rem}.xl\:hover\:-translate-x-36:hover{--transform-translate-x:-9rem}.xl\:hover\:-translate-x-40:hover{--transform-translate-x:-10rem}.xl\:hover\:-translate-x-44:hover{--transform-translate-x:-11rem}.xl\:hover\:-translate-x-48:hover{--transform-translate-x:-12rem}.xl\:hover\:-translate-x-52:hover{--transform-translate-x:-13rem}.xl\:hover\:-translate-x-56:hover{--transform-translate-x:-14rem}.xl\:hover\:-translate-x-60:hover{--transform-translate-x:-15rem}.xl\:hover\:-translate-x-64:hover{--transform-translate-x:-16rem}.xl\:hover\:-translate-x-72:hover{--transform-translate-x:-18rem}.xl\:hover\:-translate-x-80:hover{--transform-translate-x:-20rem}.xl\:hover\:-translate-x-96:hover{--transform-translate-x:-24rem}.xl\:hover\:-translate-x-px:hover{--transform-translate-x:-1px}.xl\:hover\:-translate-x-0\.5:hover{--transform-translate-x:-0.125rem}.xl\:hover\:-translate-x-1\.5:hover{--transform-translate-x:-0.375rem}.xl\:hover\:-translate-x-2\.5:hover{--transform-translate-x:-0.625rem}.xl\:hover\:-translate-x-3\.5:hover{--transform-translate-x:-0.875rem}.xl\:hover\:-translate-x-1\/2:hover{--transform-translate-x:-50%}.xl\:hover\:-translate-x-1\/3:hover{--transform-translate-x:-33.33333%}.xl\:hover\:-translate-x-2\/3:hover{--transform-translate-x:-66.66667%}.xl\:hover\:-translate-x-1\/4:hover{--transform-translate-x:-25%}.xl\:hover\:-translate-x-2\/4:hover{--transform-translate-x:-50%}.xl\:hover\:-translate-x-3\/4:hover{--transform-translate-x:-75%}.xl\:hover\:-translate-x-1\/5:hover{--transform-translate-x:-20%}.xl\:hover\:-translate-x-2\/5:hover{--transform-translate-x:-40%}.xl\:hover\:-translate-x-3\/5:hover{--transform-translate-x:-60%}.xl\:hover\:-translate-x-4\/5:hover{--transform-translate-x:-80%}.xl\:hover\:-translate-x-1\/6:hover{--transform-translate-x:-16.66667%}.xl\:hover\:-translate-x-2\/6:hover{--transform-translate-x:-33.33333%}.xl\:hover\:-translate-x-3\/6:hover{--transform-translate-x:-50%}.xl\:hover\:-translate-x-4\/6:hover{--transform-translate-x:-66.66667%}.xl\:hover\:-translate-x-5\/6:hover{--transform-translate-x:-83.33333%}.xl\:hover\:-translate-x-1\/12:hover{--transform-translate-x:-8.33333%}.xl\:hover\:-translate-x-2\/12:hover{--transform-translate-x:-16.66667%}.xl\:hover\:-translate-x-3\/12:hover{--transform-translate-x:-25%}.xl\:hover\:-translate-x-4\/12:hover{--transform-translate-x:-33.33333%}.xl\:hover\:-translate-x-5\/12:hover{--transform-translate-x:-41.66667%}.xl\:hover\:-translate-x-6\/12:hover{--transform-translate-x:-50%}.xl\:hover\:-translate-x-7\/12:hover{--transform-translate-x:-58.33333%}.xl\:hover\:-translate-x-8\/12:hover{--transform-translate-x:-66.66667%}.xl\:hover\:-translate-x-9\/12:hover{--transform-translate-x:-75%}.xl\:hover\:-translate-x-10\/12:hover{--transform-translate-x:-83.33333%}.xl\:hover\:-translate-x-11\/12:hover{--transform-translate-x:-91.66667%}.xl\:hover\:-translate-x-full:hover{--transform-translate-x:-100%}.xl\:hover\:translate-y-0:hover{--transform-translate-y:0}.xl\:hover\:translate-y-1:hover{--transform-translate-y:0.25rem}.xl\:hover\:translate-y-2:hover{--transform-translate-y:0.5rem}.xl\:hover\:translate-y-3:hover{--transform-translate-y:0.75rem}.xl\:hover\:translate-y-4:hover{--transform-translate-y:1rem}.xl\:hover\:translate-y-5:hover{--transform-translate-y:1.25rem}.xl\:hover\:translate-y-6:hover{--transform-translate-y:1.5rem}.xl\:hover\:translate-y-7:hover{--transform-translate-y:1.75rem}.xl\:hover\:translate-y-8:hover{--transform-translate-y:2rem}.xl\:hover\:translate-y-9:hover{--transform-translate-y:2.25rem}.xl\:hover\:translate-y-10:hover{--transform-translate-y:2.5rem}.xl\:hover\:translate-y-11:hover{--transform-translate-y:2.75rem}.xl\:hover\:translate-y-12:hover{--transform-translate-y:3rem}.xl\:hover\:translate-y-13:hover{--transform-translate-y:3.25rem}.xl\:hover\:translate-y-14:hover{--transform-translate-y:3.5rem}.xl\:hover\:translate-y-15:hover{--transform-translate-y:3.75rem}.xl\:hover\:translate-y-16:hover{--transform-translate-y:4rem}.xl\:hover\:translate-y-20:hover{--transform-translate-y:5rem}.xl\:hover\:translate-y-24:hover{--transform-translate-y:6rem}.xl\:hover\:translate-y-28:hover{--transform-translate-y:7rem}.xl\:hover\:translate-y-32:hover{--transform-translate-y:8rem}.xl\:hover\:translate-y-36:hover{--transform-translate-y:9rem}.xl\:hover\:translate-y-40:hover{--transform-translate-y:10rem}.xl\:hover\:translate-y-44:hover{--transform-translate-y:11rem}.xl\:hover\:translate-y-48:hover{--transform-translate-y:12rem}.xl\:hover\:translate-y-52:hover{--transform-translate-y:13rem}.xl\:hover\:translate-y-56:hover{--transform-translate-y:14rem}.xl\:hover\:translate-y-60:hover{--transform-translate-y:15rem}.xl\:hover\:translate-y-64:hover{--transform-translate-y:16rem}.xl\:hover\:translate-y-72:hover{--transform-translate-y:18rem}.xl\:hover\:translate-y-80:hover{--transform-translate-y:20rem}.xl\:hover\:translate-y-96:hover{--transform-translate-y:24rem}.xl\:hover\:translate-y-px:hover{--transform-translate-y:1px}.xl\:hover\:translate-y-0\.5:hover{--transform-translate-y:0.125rem}.xl\:hover\:translate-y-1\.5:hover{--transform-translate-y:0.375rem}.xl\:hover\:translate-y-2\.5:hover{--transform-translate-y:0.625rem}.xl\:hover\:translate-y-3\.5:hover{--transform-translate-y:0.875rem}.xl\:hover\:translate-y-1\/2:hover{--transform-translate-y:50%}.xl\:hover\:translate-y-1\/3:hover{--transform-translate-y:33.333333%}.xl\:hover\:translate-y-2\/3:hover{--transform-translate-y:66.666667%}.xl\:hover\:translate-y-1\/4:hover{--transform-translate-y:25%}.xl\:hover\:translate-y-2\/4:hover{--transform-translate-y:50%}.xl\:hover\:translate-y-3\/4:hover{--transform-translate-y:75%}.xl\:hover\:translate-y-1\/5:hover{--transform-translate-y:20%}.xl\:hover\:translate-y-2\/5:hover{--transform-translate-y:40%}.xl\:hover\:translate-y-3\/5:hover{--transform-translate-y:60%}.xl\:hover\:translate-y-4\/5:hover{--transform-translate-y:80%}.xl\:hover\:translate-y-1\/6:hover{--transform-translate-y:16.666667%}.xl\:hover\:translate-y-2\/6:hover{--transform-translate-y:33.333333%}.xl\:hover\:translate-y-3\/6:hover{--transform-translate-y:50%}.xl\:hover\:translate-y-4\/6:hover{--transform-translate-y:66.666667%}.xl\:hover\:translate-y-5\/6:hover{--transform-translate-y:83.333333%}.xl\:hover\:translate-y-1\/12:hover{--transform-translate-y:8.333333%}.xl\:hover\:translate-y-2\/12:hover{--transform-translate-y:16.666667%}.xl\:hover\:translate-y-3\/12:hover{--transform-translate-y:25%}.xl\:hover\:translate-y-4\/12:hover{--transform-translate-y:33.333333%}.xl\:hover\:translate-y-5\/12:hover{--transform-translate-y:41.666667%}.xl\:hover\:translate-y-6\/12:hover{--transform-translate-y:50%}.xl\:hover\:translate-y-7\/12:hover{--transform-translate-y:58.333333%}.xl\:hover\:translate-y-8\/12:hover{--transform-translate-y:66.666667%}.xl\:hover\:translate-y-9\/12:hover{--transform-translate-y:75%}.xl\:hover\:translate-y-10\/12:hover{--transform-translate-y:83.333333%}.xl\:hover\:translate-y-11\/12:hover{--transform-translate-y:91.666667%}.xl\:hover\:translate-y-full:hover{--transform-translate-y:100%}.xl\:hover\:-translate-y-1:hover{--transform-translate-y:-0.25rem}.xl\:hover\:-translate-y-2:hover{--transform-translate-y:-0.5rem}.xl\:hover\:-translate-y-3:hover{--transform-translate-y:-0.75rem}.xl\:hover\:-translate-y-4:hover{--transform-translate-y:-1rem}.xl\:hover\:-translate-y-5:hover{--transform-translate-y:-1.25rem}.xl\:hover\:-translate-y-6:hover{--transform-translate-y:-1.5rem}.xl\:hover\:-translate-y-7:hover{--transform-translate-y:-1.75rem}.xl\:hover\:-translate-y-8:hover{--transform-translate-y:-2rem}.xl\:hover\:-translate-y-9:hover{--transform-translate-y:-2.25rem}.xl\:hover\:-translate-y-10:hover{--transform-translate-y:-2.5rem}.xl\:hover\:-translate-y-11:hover{--transform-translate-y:-2.75rem}.xl\:hover\:-translate-y-12:hover{--transform-translate-y:-3rem}.xl\:hover\:-translate-y-13:hover{--transform-translate-y:-3.25rem}.xl\:hover\:-translate-y-14:hover{--transform-translate-y:-3.5rem}.xl\:hover\:-translate-y-15:hover{--transform-translate-y:-3.75rem}.xl\:hover\:-translate-y-16:hover{--transform-translate-y:-4rem}.xl\:hover\:-translate-y-20:hover{--transform-translate-y:-5rem}.xl\:hover\:-translate-y-24:hover{--transform-translate-y:-6rem}.xl\:hover\:-translate-y-28:hover{--transform-translate-y:-7rem}.xl\:hover\:-translate-y-32:hover{--transform-translate-y:-8rem}.xl\:hover\:-translate-y-36:hover{--transform-translate-y:-9rem}.xl\:hover\:-translate-y-40:hover{--transform-translate-y:-10rem}.xl\:hover\:-translate-y-44:hover{--transform-translate-y:-11rem}.xl\:hover\:-translate-y-48:hover{--transform-translate-y:-12rem}.xl\:hover\:-translate-y-52:hover{--transform-translate-y:-13rem}.xl\:hover\:-translate-y-56:hover{--transform-translate-y:-14rem}.xl\:hover\:-translate-y-60:hover{--transform-translate-y:-15rem}.xl\:hover\:-translate-y-64:hover{--transform-translate-y:-16rem}.xl\:hover\:-translate-y-72:hover{--transform-translate-y:-18rem}.xl\:hover\:-translate-y-80:hover{--transform-translate-y:-20rem}.xl\:hover\:-translate-y-96:hover{--transform-translate-y:-24rem}.xl\:hover\:-translate-y-px:hover{--transform-translate-y:-1px}.xl\:hover\:-translate-y-0\.5:hover{--transform-translate-y:-0.125rem}.xl\:hover\:-translate-y-1\.5:hover{--transform-translate-y:-0.375rem}.xl\:hover\:-translate-y-2\.5:hover{--transform-translate-y:-0.625rem}.xl\:hover\:-translate-y-3\.5:hover{--transform-translate-y:-0.875rem}.xl\:hover\:-translate-y-1\/2:hover{--transform-translate-y:-50%}.xl\:hover\:-translate-y-1\/3:hover{--transform-translate-y:-33.33333%}.xl\:hover\:-translate-y-2\/3:hover{--transform-translate-y:-66.66667%}.xl\:hover\:-translate-y-1\/4:hover{--transform-translate-y:-25%}.xl\:hover\:-translate-y-2\/4:hover{--transform-translate-y:-50%}.xl\:hover\:-translate-y-3\/4:hover{--transform-translate-y:-75%}.xl\:hover\:-translate-y-1\/5:hover{--transform-translate-y:-20%}.xl\:hover\:-translate-y-2\/5:hover{--transform-translate-y:-40%}.xl\:hover\:-translate-y-3\/5:hover{--transform-translate-y:-60%}.xl\:hover\:-translate-y-4\/5:hover{--transform-translate-y:-80%}.xl\:hover\:-translate-y-1\/6:hover{--transform-translate-y:-16.66667%}.xl\:hover\:-translate-y-2\/6:hover{--transform-translate-y:-33.33333%}.xl\:hover\:-translate-y-3\/6:hover{--transform-translate-y:-50%}.xl\:hover\:-translate-y-4\/6:hover{--transform-translate-y:-66.66667%}.xl\:hover\:-translate-y-5\/6:hover{--transform-translate-y:-83.33333%}.xl\:hover\:-translate-y-1\/12:hover{--transform-translate-y:-8.33333%}.xl\:hover\:-translate-y-2\/12:hover{--transform-translate-y:-16.66667%}.xl\:hover\:-translate-y-3\/12:hover{--transform-translate-y:-25%}.xl\:hover\:-translate-y-4\/12:hover{--transform-translate-y:-33.33333%}.xl\:hover\:-translate-y-5\/12:hover{--transform-translate-y:-41.66667%}.xl\:hover\:-translate-y-6\/12:hover{--transform-translate-y:-50%}.xl\:hover\:-translate-y-7\/12:hover{--transform-translate-y:-58.33333%}.xl\:hover\:-translate-y-8\/12:hover{--transform-translate-y:-66.66667%}.xl\:hover\:-translate-y-9\/12:hover{--transform-translate-y:-75%}.xl\:hover\:-translate-y-10\/12:hover{--transform-translate-y:-83.33333%}.xl\:hover\:-translate-y-11\/12:hover{--transform-translate-y:-91.66667%}.xl\:hover\:-translate-y-full:hover{--transform-translate-y:-100%}.xl\:focus\:translate-x-0:focus{--transform-translate-x:0}.xl\:focus\:translate-x-1:focus{--transform-translate-x:0.25rem}.xl\:focus\:translate-x-2:focus{--transform-translate-x:0.5rem}.xl\:focus\:translate-x-3:focus{--transform-translate-x:0.75rem}.xl\:focus\:translate-x-4:focus{--transform-translate-x:1rem}.xl\:focus\:translate-x-5:focus{--transform-translate-x:1.25rem}.xl\:focus\:translate-x-6:focus{--transform-translate-x:1.5rem}.xl\:focus\:translate-x-7:focus{--transform-translate-x:1.75rem}.xl\:focus\:translate-x-8:focus{--transform-translate-x:2rem}.xl\:focus\:translate-x-9:focus{--transform-translate-x:2.25rem}.xl\:focus\:translate-x-10:focus{--transform-translate-x:2.5rem}.xl\:focus\:translate-x-11:focus{--transform-translate-x:2.75rem}.xl\:focus\:translate-x-12:focus{--transform-translate-x:3rem}.xl\:focus\:translate-x-13:focus{--transform-translate-x:3.25rem}.xl\:focus\:translate-x-14:focus{--transform-translate-x:3.5rem}.xl\:focus\:translate-x-15:focus{--transform-translate-x:3.75rem}.xl\:focus\:translate-x-16:focus{--transform-translate-x:4rem}.xl\:focus\:translate-x-20:focus{--transform-translate-x:5rem}.xl\:focus\:translate-x-24:focus{--transform-translate-x:6rem}.xl\:focus\:translate-x-28:focus{--transform-translate-x:7rem}.xl\:focus\:translate-x-32:focus{--transform-translate-x:8rem}.xl\:focus\:translate-x-36:focus{--transform-translate-x:9rem}.xl\:focus\:translate-x-40:focus{--transform-translate-x:10rem}.xl\:focus\:translate-x-44:focus{--transform-translate-x:11rem}.xl\:focus\:translate-x-48:focus{--transform-translate-x:12rem}.xl\:focus\:translate-x-52:focus{--transform-translate-x:13rem}.xl\:focus\:translate-x-56:focus{--transform-translate-x:14rem}.xl\:focus\:translate-x-60:focus{--transform-translate-x:15rem}.xl\:focus\:translate-x-64:focus{--transform-translate-x:16rem}.xl\:focus\:translate-x-72:focus{--transform-translate-x:18rem}.xl\:focus\:translate-x-80:focus{--transform-translate-x:20rem}.xl\:focus\:translate-x-96:focus{--transform-translate-x:24rem}.xl\:focus\:translate-x-px:focus{--transform-translate-x:1px}.xl\:focus\:translate-x-0\.5:focus{--transform-translate-x:0.125rem}.xl\:focus\:translate-x-1\.5:focus{--transform-translate-x:0.375rem}.xl\:focus\:translate-x-2\.5:focus{--transform-translate-x:0.625rem}.xl\:focus\:translate-x-3\.5:focus{--transform-translate-x:0.875rem}.xl\:focus\:translate-x-1\/2:focus{--transform-translate-x:50%}.xl\:focus\:translate-x-1\/3:focus{--transform-translate-x:33.333333%}.xl\:focus\:translate-x-2\/3:focus{--transform-translate-x:66.666667%}.xl\:focus\:translate-x-1\/4:focus{--transform-translate-x:25%}.xl\:focus\:translate-x-2\/4:focus{--transform-translate-x:50%}.xl\:focus\:translate-x-3\/4:focus{--transform-translate-x:75%}.xl\:focus\:translate-x-1\/5:focus{--transform-translate-x:20%}.xl\:focus\:translate-x-2\/5:focus{--transform-translate-x:40%}.xl\:focus\:translate-x-3\/5:focus{--transform-translate-x:60%}.xl\:focus\:translate-x-4\/5:focus{--transform-translate-x:80%}.xl\:focus\:translate-x-1\/6:focus{--transform-translate-x:16.666667%}.xl\:focus\:translate-x-2\/6:focus{--transform-translate-x:33.333333%}.xl\:focus\:translate-x-3\/6:focus{--transform-translate-x:50%}.xl\:focus\:translate-x-4\/6:focus{--transform-translate-x:66.666667%}.xl\:focus\:translate-x-5\/6:focus{--transform-translate-x:83.333333%}.xl\:focus\:translate-x-1\/12:focus{--transform-translate-x:8.333333%}.xl\:focus\:translate-x-2\/12:focus{--transform-translate-x:16.666667%}.xl\:focus\:translate-x-3\/12:focus{--transform-translate-x:25%}.xl\:focus\:translate-x-4\/12:focus{--transform-translate-x:33.333333%}.xl\:focus\:translate-x-5\/12:focus{--transform-translate-x:41.666667%}.xl\:focus\:translate-x-6\/12:focus{--transform-translate-x:50%}.xl\:focus\:translate-x-7\/12:focus{--transform-translate-x:58.333333%}.xl\:focus\:translate-x-8\/12:focus{--transform-translate-x:66.666667%}.xl\:focus\:translate-x-9\/12:focus{--transform-translate-x:75%}.xl\:focus\:translate-x-10\/12:focus{--transform-translate-x:83.333333%}.xl\:focus\:translate-x-11\/12:focus{--transform-translate-x:91.666667%}.xl\:focus\:translate-x-full:focus{--transform-translate-x:100%}.xl\:focus\:-translate-x-1:focus{--transform-translate-x:-0.25rem}.xl\:focus\:-translate-x-2:focus{--transform-translate-x:-0.5rem}.xl\:focus\:-translate-x-3:focus{--transform-translate-x:-0.75rem}.xl\:focus\:-translate-x-4:focus{--transform-translate-x:-1rem}.xl\:focus\:-translate-x-5:focus{--transform-translate-x:-1.25rem}.xl\:focus\:-translate-x-6:focus{--transform-translate-x:-1.5rem}.xl\:focus\:-translate-x-7:focus{--transform-translate-x:-1.75rem}.xl\:focus\:-translate-x-8:focus{--transform-translate-x:-2rem}.xl\:focus\:-translate-x-9:focus{--transform-translate-x:-2.25rem}.xl\:focus\:-translate-x-10:focus{--transform-translate-x:-2.5rem}.xl\:focus\:-translate-x-11:focus{--transform-translate-x:-2.75rem}.xl\:focus\:-translate-x-12:focus{--transform-translate-x:-3rem}.xl\:focus\:-translate-x-13:focus{--transform-translate-x:-3.25rem}.xl\:focus\:-translate-x-14:focus{--transform-translate-x:-3.5rem}.xl\:focus\:-translate-x-15:focus{--transform-translate-x:-3.75rem}.xl\:focus\:-translate-x-16:focus{--transform-translate-x:-4rem}.xl\:focus\:-translate-x-20:focus{--transform-translate-x:-5rem}.xl\:focus\:-translate-x-24:focus{--transform-translate-x:-6rem}.xl\:focus\:-translate-x-28:focus{--transform-translate-x:-7rem}.xl\:focus\:-translate-x-32:focus{--transform-translate-x:-8rem}.xl\:focus\:-translate-x-36:focus{--transform-translate-x:-9rem}.xl\:focus\:-translate-x-40:focus{--transform-translate-x:-10rem}.xl\:focus\:-translate-x-44:focus{--transform-translate-x:-11rem}.xl\:focus\:-translate-x-48:focus{--transform-translate-x:-12rem}.xl\:focus\:-translate-x-52:focus{--transform-translate-x:-13rem}.xl\:focus\:-translate-x-56:focus{--transform-translate-x:-14rem}.xl\:focus\:-translate-x-60:focus{--transform-translate-x:-15rem}.xl\:focus\:-translate-x-64:focus{--transform-translate-x:-16rem}.xl\:focus\:-translate-x-72:focus{--transform-translate-x:-18rem}.xl\:focus\:-translate-x-80:focus{--transform-translate-x:-20rem}.xl\:focus\:-translate-x-96:focus{--transform-translate-x:-24rem}.xl\:focus\:-translate-x-px:focus{--transform-translate-x:-1px}.xl\:focus\:-translate-x-0\.5:focus{--transform-translate-x:-0.125rem}.xl\:focus\:-translate-x-1\.5:focus{--transform-translate-x:-0.375rem}.xl\:focus\:-translate-x-2\.5:focus{--transform-translate-x:-0.625rem}.xl\:focus\:-translate-x-3\.5:focus{--transform-translate-x:-0.875rem}.xl\:focus\:-translate-x-1\/2:focus{--transform-translate-x:-50%}.xl\:focus\:-translate-x-1\/3:focus{--transform-translate-x:-33.33333%}.xl\:focus\:-translate-x-2\/3:focus{--transform-translate-x:-66.66667%}.xl\:focus\:-translate-x-1\/4:focus{--transform-translate-x:-25%}.xl\:focus\:-translate-x-2\/4:focus{--transform-translate-x:-50%}.xl\:focus\:-translate-x-3\/4:focus{--transform-translate-x:-75%}.xl\:focus\:-translate-x-1\/5:focus{--transform-translate-x:-20%}.xl\:focus\:-translate-x-2\/5:focus{--transform-translate-x:-40%}.xl\:focus\:-translate-x-3\/5:focus{--transform-translate-x:-60%}.xl\:focus\:-translate-x-4\/5:focus{--transform-translate-x:-80%}.xl\:focus\:-translate-x-1\/6:focus{--transform-translate-x:-16.66667%}.xl\:focus\:-translate-x-2\/6:focus{--transform-translate-x:-33.33333%}.xl\:focus\:-translate-x-3\/6:focus{--transform-translate-x:-50%}.xl\:focus\:-translate-x-4\/6:focus{--transform-translate-x:-66.66667%}.xl\:focus\:-translate-x-5\/6:focus{--transform-translate-x:-83.33333%}.xl\:focus\:-translate-x-1\/12:focus{--transform-translate-x:-8.33333%}.xl\:focus\:-translate-x-2\/12:focus{--transform-translate-x:-16.66667%}.xl\:focus\:-translate-x-3\/12:focus{--transform-translate-x:-25%}.xl\:focus\:-translate-x-4\/12:focus{--transform-translate-x:-33.33333%}.xl\:focus\:-translate-x-5\/12:focus{--transform-translate-x:-41.66667%}.xl\:focus\:-translate-x-6\/12:focus{--transform-translate-x:-50%}.xl\:focus\:-translate-x-7\/12:focus{--transform-translate-x:-58.33333%}.xl\:focus\:-translate-x-8\/12:focus{--transform-translate-x:-66.66667%}.xl\:focus\:-translate-x-9\/12:focus{--transform-translate-x:-75%}.xl\:focus\:-translate-x-10\/12:focus{--transform-translate-x:-83.33333%}.xl\:focus\:-translate-x-11\/12:focus{--transform-translate-x:-91.66667%}.xl\:focus\:-translate-x-full:focus{--transform-translate-x:-100%}.xl\:focus\:translate-y-0:focus{--transform-translate-y:0}.xl\:focus\:translate-y-1:focus{--transform-translate-y:0.25rem}.xl\:focus\:translate-y-2:focus{--transform-translate-y:0.5rem}.xl\:focus\:translate-y-3:focus{--transform-translate-y:0.75rem}.xl\:focus\:translate-y-4:focus{--transform-translate-y:1rem}.xl\:focus\:translate-y-5:focus{--transform-translate-y:1.25rem}.xl\:focus\:translate-y-6:focus{--transform-translate-y:1.5rem}.xl\:focus\:translate-y-7:focus{--transform-translate-y:1.75rem}.xl\:focus\:translate-y-8:focus{--transform-translate-y:2rem}.xl\:focus\:translate-y-9:focus{--transform-translate-y:2.25rem}.xl\:focus\:translate-y-10:focus{--transform-translate-y:2.5rem}.xl\:focus\:translate-y-11:focus{--transform-translate-y:2.75rem}.xl\:focus\:translate-y-12:focus{--transform-translate-y:3rem}.xl\:focus\:translate-y-13:focus{--transform-translate-y:3.25rem}.xl\:focus\:translate-y-14:focus{--transform-translate-y:3.5rem}.xl\:focus\:translate-y-15:focus{--transform-translate-y:3.75rem}.xl\:focus\:translate-y-16:focus{--transform-translate-y:4rem}.xl\:focus\:translate-y-20:focus{--transform-translate-y:5rem}.xl\:focus\:translate-y-24:focus{--transform-translate-y:6rem}.xl\:focus\:translate-y-28:focus{--transform-translate-y:7rem}.xl\:focus\:translate-y-32:focus{--transform-translate-y:8rem}.xl\:focus\:translate-y-36:focus{--transform-translate-y:9rem}.xl\:focus\:translate-y-40:focus{--transform-translate-y:10rem}.xl\:focus\:translate-y-44:focus{--transform-translate-y:11rem}.xl\:focus\:translate-y-48:focus{--transform-translate-y:12rem}.xl\:focus\:translate-y-52:focus{--transform-translate-y:13rem}.xl\:focus\:translate-y-56:focus{--transform-translate-y:14rem}.xl\:focus\:translate-y-60:focus{--transform-translate-y:15rem}.xl\:focus\:translate-y-64:focus{--transform-translate-y:16rem}.xl\:focus\:translate-y-72:focus{--transform-translate-y:18rem}.xl\:focus\:translate-y-80:focus{--transform-translate-y:20rem}.xl\:focus\:translate-y-96:focus{--transform-translate-y:24rem}.xl\:focus\:translate-y-px:focus{--transform-translate-y:1px}.xl\:focus\:translate-y-0\.5:focus{--transform-translate-y:0.125rem}.xl\:focus\:translate-y-1\.5:focus{--transform-translate-y:0.375rem}.xl\:focus\:translate-y-2\.5:focus{--transform-translate-y:0.625rem}.xl\:focus\:translate-y-3\.5:focus{--transform-translate-y:0.875rem}.xl\:focus\:translate-y-1\/2:focus{--transform-translate-y:50%}.xl\:focus\:translate-y-1\/3:focus{--transform-translate-y:33.333333%}.xl\:focus\:translate-y-2\/3:focus{--transform-translate-y:66.666667%}.xl\:focus\:translate-y-1\/4:focus{--transform-translate-y:25%}.xl\:focus\:translate-y-2\/4:focus{--transform-translate-y:50%}.xl\:focus\:translate-y-3\/4:focus{--transform-translate-y:75%}.xl\:focus\:translate-y-1\/5:focus{--transform-translate-y:20%}.xl\:focus\:translate-y-2\/5:focus{--transform-translate-y:40%}.xl\:focus\:translate-y-3\/5:focus{--transform-translate-y:60%}.xl\:focus\:translate-y-4\/5:focus{--transform-translate-y:80%}.xl\:focus\:translate-y-1\/6:focus{--transform-translate-y:16.666667%}.xl\:focus\:translate-y-2\/6:focus{--transform-translate-y:33.333333%}.xl\:focus\:translate-y-3\/6:focus{--transform-translate-y:50%}.xl\:focus\:translate-y-4\/6:focus{--transform-translate-y:66.666667%}.xl\:focus\:translate-y-5\/6:focus{--transform-translate-y:83.333333%}.xl\:focus\:translate-y-1\/12:focus{--transform-translate-y:8.333333%}.xl\:focus\:translate-y-2\/12:focus{--transform-translate-y:16.666667%}.xl\:focus\:translate-y-3\/12:focus{--transform-translate-y:25%}.xl\:focus\:translate-y-4\/12:focus{--transform-translate-y:33.333333%}.xl\:focus\:translate-y-5\/12:focus{--transform-translate-y:41.666667%}.xl\:focus\:translate-y-6\/12:focus{--transform-translate-y:50%}.xl\:focus\:translate-y-7\/12:focus{--transform-translate-y:58.333333%}.xl\:focus\:translate-y-8\/12:focus{--transform-translate-y:66.666667%}.xl\:focus\:translate-y-9\/12:focus{--transform-translate-y:75%}.xl\:focus\:translate-y-10\/12:focus{--transform-translate-y:83.333333%}.xl\:focus\:translate-y-11\/12:focus{--transform-translate-y:91.666667%}.xl\:focus\:translate-y-full:focus{--transform-translate-y:100%}.xl\:focus\:-translate-y-1:focus{--transform-translate-y:-0.25rem}.xl\:focus\:-translate-y-2:focus{--transform-translate-y:-0.5rem}.xl\:focus\:-translate-y-3:focus{--transform-translate-y:-0.75rem}.xl\:focus\:-translate-y-4:focus{--transform-translate-y:-1rem}.xl\:focus\:-translate-y-5:focus{--transform-translate-y:-1.25rem}.xl\:focus\:-translate-y-6:focus{--transform-translate-y:-1.5rem}.xl\:focus\:-translate-y-7:focus{--transform-translate-y:-1.75rem}.xl\:focus\:-translate-y-8:focus{--transform-translate-y:-2rem}.xl\:focus\:-translate-y-9:focus{--transform-translate-y:-2.25rem}.xl\:focus\:-translate-y-10:focus{--transform-translate-y:-2.5rem}.xl\:focus\:-translate-y-11:focus{--transform-translate-y:-2.75rem}.xl\:focus\:-translate-y-12:focus{--transform-translate-y:-3rem}.xl\:focus\:-translate-y-13:focus{--transform-translate-y:-3.25rem}.xl\:focus\:-translate-y-14:focus{--transform-translate-y:-3.5rem}.xl\:focus\:-translate-y-15:focus{--transform-translate-y:-3.75rem}.xl\:focus\:-translate-y-16:focus{--transform-translate-y:-4rem}.xl\:focus\:-translate-y-20:focus{--transform-translate-y:-5rem}.xl\:focus\:-translate-y-24:focus{--transform-translate-y:-6rem}.xl\:focus\:-translate-y-28:focus{--transform-translate-y:-7rem}.xl\:focus\:-translate-y-32:focus{--transform-translate-y:-8rem}.xl\:focus\:-translate-y-36:focus{--transform-translate-y:-9rem}.xl\:focus\:-translate-y-40:focus{--transform-translate-y:-10rem}.xl\:focus\:-translate-y-44:focus{--transform-translate-y:-11rem}.xl\:focus\:-translate-y-48:focus{--transform-translate-y:-12rem}.xl\:focus\:-translate-y-52:focus{--transform-translate-y:-13rem}.xl\:focus\:-translate-y-56:focus{--transform-translate-y:-14rem}.xl\:focus\:-translate-y-60:focus{--transform-translate-y:-15rem}.xl\:focus\:-translate-y-64:focus{--transform-translate-y:-16rem}.xl\:focus\:-translate-y-72:focus{--transform-translate-y:-18rem}.xl\:focus\:-translate-y-80:focus{--transform-translate-y:-20rem}.xl\:focus\:-translate-y-96:focus{--transform-translate-y:-24rem}.xl\:focus\:-translate-y-px:focus{--transform-translate-y:-1px}.xl\:focus\:-translate-y-0\.5:focus{--transform-translate-y:-0.125rem}.xl\:focus\:-translate-y-1\.5:focus{--transform-translate-y:-0.375rem}.xl\:focus\:-translate-y-2\.5:focus{--transform-translate-y:-0.625rem}.xl\:focus\:-translate-y-3\.5:focus{--transform-translate-y:-0.875rem}.xl\:focus\:-translate-y-1\/2:focus{--transform-translate-y:-50%}.xl\:focus\:-translate-y-1\/3:focus{--transform-translate-y:-33.33333%}.xl\:focus\:-translate-y-2\/3:focus{--transform-translate-y:-66.66667%}.xl\:focus\:-translate-y-1\/4:focus{--transform-translate-y:-25%}.xl\:focus\:-translate-y-2\/4:focus{--transform-translate-y:-50%}.xl\:focus\:-translate-y-3\/4:focus{--transform-translate-y:-75%}.xl\:focus\:-translate-y-1\/5:focus{--transform-translate-y:-20%}.xl\:focus\:-translate-y-2\/5:focus{--transform-translate-y:-40%}.xl\:focus\:-translate-y-3\/5:focus{--transform-translate-y:-60%}.xl\:focus\:-translate-y-4\/5:focus{--transform-translate-y:-80%}.xl\:focus\:-translate-y-1\/6:focus{--transform-translate-y:-16.66667%}.xl\:focus\:-translate-y-2\/6:focus{--transform-translate-y:-33.33333%}.xl\:focus\:-translate-y-3\/6:focus{--transform-translate-y:-50%}.xl\:focus\:-translate-y-4\/6:focus{--transform-translate-y:-66.66667%}.xl\:focus\:-translate-y-5\/6:focus{--transform-translate-y:-83.33333%}.xl\:focus\:-translate-y-1\/12:focus{--transform-translate-y:-8.33333%}.xl\:focus\:-translate-y-2\/12:focus{--transform-translate-y:-16.66667%}.xl\:focus\:-translate-y-3\/12:focus{--transform-translate-y:-25%}.xl\:focus\:-translate-y-4\/12:focus{--transform-translate-y:-33.33333%}.xl\:focus\:-translate-y-5\/12:focus{--transform-translate-y:-41.66667%}.xl\:focus\:-translate-y-6\/12:focus{--transform-translate-y:-50%}.xl\:focus\:-translate-y-7\/12:focus{--transform-translate-y:-58.33333%}.xl\:focus\:-translate-y-8\/12:focus{--transform-translate-y:-66.66667%}.xl\:focus\:-translate-y-9\/12:focus{--transform-translate-y:-75%}.xl\:focus\:-translate-y-10\/12:focus{--transform-translate-y:-83.33333%}.xl\:focus\:-translate-y-11\/12:focus{--transform-translate-y:-91.66667%}.xl\:focus\:-translate-y-full:focus{--transform-translate-y:-100%}.xl\:skew-x-0{--transform-skew-x:0}.xl\:skew-x-3{--transform-skew-x:3deg}.xl\:skew-x-6{--transform-skew-x:6deg}.xl\:skew-x-12{--transform-skew-x:12deg}.xl\:-skew-x-12{--transform-skew-x:-12deg}.xl\:-skew-x-6{--transform-skew-x:-6deg}.xl\:-skew-x-3{--transform-skew-x:-3deg}.xl\:skew-y-0{--transform-skew-y:0}.xl\:skew-y-3{--transform-skew-y:3deg}.xl\:skew-y-6{--transform-skew-y:6deg}.xl\:skew-y-12{--transform-skew-y:12deg}.xl\:-skew-y-12{--transform-skew-y:-12deg}.xl\:-skew-y-6{--transform-skew-y:-6deg}.xl\:-skew-y-3{--transform-skew-y:-3deg}.xl\:hover\:skew-x-0:hover{--transform-skew-x:0}.xl\:hover\:skew-x-3:hover{--transform-skew-x:3deg}.xl\:hover\:skew-x-6:hover{--transform-skew-x:6deg}.xl\:hover\:skew-x-12:hover{--transform-skew-x:12deg}.xl\:hover\:-skew-x-12:hover{--transform-skew-x:-12deg}.xl\:hover\:-skew-x-6:hover{--transform-skew-x:-6deg}.xl\:hover\:-skew-x-3:hover{--transform-skew-x:-3deg}.xl\:hover\:skew-y-0:hover{--transform-skew-y:0}.xl\:hover\:skew-y-3:hover{--transform-skew-y:3deg}.xl\:hover\:skew-y-6:hover{--transform-skew-y:6deg}.xl\:hover\:skew-y-12:hover{--transform-skew-y:12deg}.xl\:hover\:-skew-y-12:hover{--transform-skew-y:-12deg}.xl\:hover\:-skew-y-6:hover{--transform-skew-y:-6deg}.xl\:hover\:-skew-y-3:hover{--transform-skew-y:-3deg}.xl\:focus\:skew-x-0:focus{--transform-skew-x:0}.xl\:focus\:skew-x-3:focus{--transform-skew-x:3deg}.xl\:focus\:skew-x-6:focus{--transform-skew-x:6deg}.xl\:focus\:skew-x-12:focus{--transform-skew-x:12deg}.xl\:focus\:-skew-x-12:focus{--transform-skew-x:-12deg}.xl\:focus\:-skew-x-6:focus{--transform-skew-x:-6deg}.xl\:focus\:-skew-x-3:focus{--transform-skew-x:-3deg}.xl\:focus\:skew-y-0:focus{--transform-skew-y:0}.xl\:focus\:skew-y-3:focus{--transform-skew-y:3deg}.xl\:focus\:skew-y-6:focus{--transform-skew-y:6deg}.xl\:focus\:skew-y-12:focus{--transform-skew-y:12deg}.xl\:focus\:-skew-y-12:focus{--transform-skew-y:-12deg}.xl\:focus\:-skew-y-6:focus{--transform-skew-y:-6deg}.xl\:focus\:-skew-y-3:focus{--transform-skew-y:-3deg}.xl\:transition-none{transition-property:none}.xl\:transition-all{transition-property:all}.xl\:transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.xl\:transition-colors{transition-property:background-color,border-color,color,fill,stroke}.xl\:transition-opacity{transition-property:opacity}.xl\:transition-shadow{transition-property:box-shadow}.xl\:transition-transform{transition-property:transform}.xl\:ease-linear{transition-timing-function:linear}.xl\:ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.xl\:ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.xl\:ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.xl\:duration-75{transition-duration:75ms}.xl\:duration-100{transition-duration:.1s}.xl\:duration-150{transition-duration:150ms}.xl\:duration-200{transition-duration:.2s}.xl\:duration-300{transition-duration:.3s}.xl\:duration-500{transition-duration:.5s}.xl\:duration-700{transition-duration:.7s}.xl\:duration-1000{transition-duration:1s}.xl\:delay-75{transition-delay:75ms}.xl\:delay-100{transition-delay:.1s}.xl\:delay-150{transition-delay:150ms}.xl\:delay-200{transition-delay:.2s}.xl\:delay-300{transition-delay:.3s}.xl\:delay-500{transition-delay:.5s}.xl\:delay-700{transition-delay:.7s}.xl\:delay-1000{transition-delay:1s}} \ No newline at end of file diff --git a/priv/static/js/d3.v4.min.js b/priv/static/js/d3.v4.min.js new file mode 100644 index 0000000..607d187 --- /dev/null +++ b/priv/static/js/d3.v4.min.js @@ -0,0 +1,2 @@ +// https://d3js.org Version 4.13.0. Copyright 2018 Mike Bostock. +(function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.d3=t.d3||{})})(this,function(t){"use strict";function n(t,n){return tn?1:t>=n?0:NaN}function e(t){return 1===t.length&&(t=function(t){return function(e,r){return n(t(e),r)}}(t)),{left:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r>>1;t(n[o],e)<0?r=o+1:i=o}return r},right:function(n,e,r,i){for(null==r&&(r=0),null==i&&(i=n.length);r>>1;t(n[o],e)>0?i=o:r=o+1}return r}}}function r(t,n){return[t,n]}function i(t){return null===t?NaN:+t}function o(t,n){var e,r,o=t.length,u=0,a=-1,c=0,s=0;if(null==n)for(;++a1)return s/(u-1)}function u(t,n){var e=o(t,n);return e?Math.sqrt(e):e}function a(t,n){var e,r,i,o=t.length,u=-1;if(null==n){for(;++u=e)for(r=i=e;++ue&&(r=e),i=e)for(r=i=e;++ue&&(r=e),i0)return[t];if((r=n0)for(t=Math.ceil(t/u),n=Math.floor(n/u),o=new Array(i=Math.ceil(n-t+1));++a=0?(o>=Hs?10:o>=js?5:o>=Xs?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(o>=Hs?10:o>=js?5:o>=Xs?2:1)}function p(t,n,e){var r=Math.abs(n-t)/Math.max(0,e),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),o=r/i;return o>=Hs?i*=10:o>=js?i*=5:o>=Xs&&(i*=2),n=1)return+e(t[r-1],r-1,t);var r,o=(r-1)*n,u=Math.floor(o),a=+e(t[u],u,t);return a+(+e(t[u+1],u+1,t)-a)*(o-u)}}function g(t){for(var n,e,r,i=t.length,o=-1,u=0;++o=0;)for(n=(r=t[i]).length;--n>=0;)e[--u]=r[n];return e}function _(t,n){var e,r,i=t.length,o=-1;if(null==n){for(;++o=e)for(r=e;++oe&&(r=e)}else for(;++o=e)for(r=e;++oe&&(r=e);return r}function y(t){if(!(i=t.length))return[];for(var n=-1,e=_(t,m),r=new Array(e);++n=0&&"xmlns"!==(n=t.slice(0,e))&&(t=t.slice(e+1)),tf.hasOwnProperty(n)?{space:tf[n],local:t}:t}function A(t){var n=E(t);return(n.local?function(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}:function(t){return function(){var n=this.ownerDocument,e=this.namespaceURI;return e===Ks&&n.documentElement.namespaceURI===Ks?n.createElement(t):n.createElementNS(e,t)}})(n)}function C(){}function z(t){return null==t?C:function(){return this.querySelector(t)}}function P(){return[]}function R(t){return null==t?P:function(){return this.querySelectorAll(t)}}function L(t){return new Array(t.length)}function q(t,n){this.ownerDocument=t.ownerDocument,this.namespaceURI=t.namespaceURI,this._next=null,this._parent=t,this.__data__=n}function D(t,n,e,r,i,o){for(var u,a=0,c=n.length,s=o.length;an?1:t>=n?0:NaN}function F(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView}function I(t,n){return t.style.getPropertyValue(n)||F(t).getComputedStyle(t,null).getPropertyValue(n)}function Y(t){return t.trim().split(/^|\s+/)}function B(t){return t.classList||new H(t)}function H(t){this._node=t,this._names=Y(t.getAttribute("class")||"")}function j(t,n){for(var e=B(t),r=-1,i=n.length;++r>8&15|n>>4&240,n>>4&15|240&n,(15&n)<<4|15&n,1)):(n=df.exec(t))?At(parseInt(n[1],16)):(n=vf.exec(t))?new Rt(n[1],n[2],n[3],1):(n=gf.exec(t))?new Rt(255*n[1]/100,255*n[2]/100,255*n[3]/100,1):(n=_f.exec(t))?Ct(n[1],n[2],n[3],n[4]):(n=yf.exec(t))?Ct(255*n[1]/100,255*n[2]/100,255*n[3]/100,n[4]):(n=mf.exec(t))?Lt(n[1],n[2]/100,n[3]/100,1):(n=xf.exec(t))?Lt(n[1],n[2]/100,n[3]/100,n[4]):bf.hasOwnProperty(t)?At(bf[t]):"transparent"===t?new Rt(NaN,NaN,NaN,0):null}function At(t){return new Rt(t>>16&255,t>>8&255,255&t,1)}function Ct(t,n,e,r){return r<=0&&(t=n=e=NaN),new Rt(t,n,e,r)}function zt(t){return t instanceof St||(t=Et(t)),t?(t=t.rgb(),new Rt(t.r,t.g,t.b,t.opacity)):new Rt}function Pt(t,n,e,r){return 1===arguments.length?zt(t):new Rt(t,n,e,null==r?1:r)}function Rt(t,n,e,r){this.r=+t,this.g=+n,this.b=+e,this.opacity=+r}function Lt(t,n,e,r){return r<=0?t=n=e=NaN:e<=0||e>=1?t=n=NaN:n<=0&&(t=NaN),new Dt(t,n,e,r)}function qt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Dt)return new Dt(t.h,t.s,t.l,t.opacity);if(t instanceof St||(t=Et(t)),!t)return new Dt;if(t instanceof Dt)return t;var n=(t=t.rgb()).r/255,e=t.g/255,r=t.b/255,i=Math.min(n,e,r),o=Math.max(n,e,r),u=NaN,a=o-i,c=(o+i)/2;return a?(u=n===o?(e-r)/a+6*(e0&&c<1?0:u,new Dt(u,a,c,t.opacity)}(t):new Dt(t,n,e,null==r?1:r)}function Dt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Ut(t,n,e){return 255*(t<60?n+(e-n)*t/60:t<180?e:t<240?n+(e-n)*(240-t)/60:n)}function Ot(t){if(t instanceof It)return new It(t.l,t.a,t.b,t.opacity);if(t instanceof Vt){var n=t.h*wf;return new It(t.l,Math.cos(n)*t.c,Math.sin(n)*t.c,t.opacity)}t instanceof Rt||(t=zt(t));var e=jt(t.r),r=jt(t.g),i=jt(t.b),o=Yt((.4124564*e+.3575761*r+.1804375*i)/Tf),u=Yt((.2126729*e+.7151522*r+.072175*i)/Nf);return new It(116*u-16,500*(o-u),200*(u-Yt((.0193339*e+.119192*r+.9503041*i)/kf)),t.opacity)}function Ft(t,n,e,r){return 1===arguments.length?Ot(t):new It(t,n,e,null==r?1:r)}function It(t,n,e,r){this.l=+t,this.a=+n,this.b=+e,this.opacity=+r}function Yt(t){return t>Cf?Math.pow(t,1/3):t/Af+Sf}function Bt(t){return t>Ef?t*t*t:Af*(t-Sf)}function Ht(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function jt(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Xt(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Vt)return new Vt(t.h,t.c,t.l,t.opacity);t instanceof It||(t=Ot(t));var n=Math.atan2(t.b,t.a)*Mf;return new Vt(n<0?n+360:n,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}(t):new Vt(t,n,e,null==r?1:r)}function Vt(t,n,e,r){this.h=+t,this.c=+n,this.l=+e,this.opacity=+r}function $t(t,n,e,r){return 1===arguments.length?function(t){if(t instanceof Wt)return new Wt(t.h,t.s,t.l,t.opacity);t instanceof Rt||(t=zt(t));var n=t.r/255,e=t.g/255,r=t.b/255,i=(Df*r+Lf*n-qf*e)/(Df+Lf-qf),o=r-i,u=(Rf*(e-i)-zf*o)/Pf,a=Math.sqrt(u*u+o*o)/(Rf*i*(1-i)),c=a?Math.atan2(u,o)*Mf-120:NaN;return new Wt(c<0?c+360:c,a,i,t.opacity)}(t):new Wt(t,n,e,null==r?1:r)}function Wt(t,n,e,r){this.h=+t,this.s=+n,this.l=+e,this.opacity=+r}function Zt(t,n,e,r,i){var o=t*t,u=o*t;return((1-3*t+3*o-u)*n+(4-6*o+3*u)*e+(1+3*t+3*o-3*u)*r+u*i)/6}function Gt(t){var n=t.length-1;return function(e){var r=e<=0?e=0:e>=1?(e=1,n-1):Math.floor(e*n),i=t[r],o=t[r+1],u=r>0?t[r-1]:2*i-o,a=r180||e<-180?e-360*Math.round(e/360):e):Jt(isNaN(t)?n:t)}function nn(t){return 1==(t=+t)?en:function(n,e){return e-n?function(t,n,e){return t=Math.pow(t,e),n=Math.pow(n,e)-t,e=1/e,function(r){return Math.pow(t+r*n,e)}}(n,e,t):Jt(isNaN(n)?e:n)}}function en(t,n){var e=n-t;return e?Kt(t,e):Jt(isNaN(t)?n:t)}function rn(t){return function(n){var e,r,i=n.length,o=new Array(i),u=new Array(i),a=new Array(i);for(e=0;eo&&(i=n.slice(o,i),a[u]?a[u]+=i:a[++u]=i),(e=e[0])===(r=r[0])?a[u]?a[u]+=r:a[++u]=r:(a[++u]=null,c.push({i:u,x:an(e,r)})),o=$f.lastIndex;return o180?n+=360:n-t>180&&(t+=360),o.push({i:e.push(i(e)+"rotate(",null,r)-2,x:an(t,n)})):n&&e.push(i(e)+"rotate("+n+r)}(o.rotate,u.rotate,a,c),function(t,n,e,o){t!==n?o.push({i:e.push(i(e)+"skewX(",null,r)-2,x:an(t,n)}):n&&e.push(i(e)+"skewX("+n+r)}(o.skewX,u.skewX,a,c),function(t,n,e,r,o,u){if(t!==e||n!==r){var a=o.push(i(o)+"scale(",null,",",null,")");u.push({i:a-4,x:an(t,e)},{i:a-2,x:an(n,r)})}else 1===e&&1===r||o.push(i(o)+"scale("+e+","+r+")")}(o.scaleX,o.scaleY,u.scaleX,u.scaleY,a,c),o=u=null,function(t){for(var n,e=-1,r=c.length;++e=0&&n._call.call(null,t),n=n._next;--cl}function Tn(){pl=(hl=vl.now())+dl,cl=sl=0;try{Mn()}finally{cl=0,function(){var t,n,e=Yf,r=1/0;for(;e;)e._call?(r>e._time&&(r=e._time),t=e,e=e._next):(n=e._next,e._next=null,e=t?t._next=n:Yf=n);Bf=t,kn(r)}(),pl=0}}function Nn(){var t=vl.now(),n=t-hl;n>ll&&(dl-=n,hl=t)}function kn(t){if(!cl){sl&&(sl=clearTimeout(sl));t-pl>24?(t<1/0&&(sl=setTimeout(Tn,t-vl.now()-dl)),fl&&(fl=clearInterval(fl))):(fl||(hl=vl.now(),fl=setInterval(Nn,ll)),cl=1,gl(Tn))}}function Sn(t,n,e){var r=new bn;return n=null==n?0:+n,r.restart(function(e){r.stop(),t(e+n)},n,e),r}function En(t,n,e,r,i,o){var u=t.__transition;if(u){if(e in u)return}else t.__transition={};(function(t,n,e){function r(c){var s,f,l,h;if(e.state!==xl)return o();for(s in a)if((h=a[s]).name===e.name){if(h.state===wl)return Sn(r);h.state===Ml?(h.state=Nl,h.timer.stop(),h.on.call("interrupt",t,t.__data__,h.index,h.group),delete a[s]):+sml)throw new Error("too late; already scheduled");return e}function Cn(t,n){var e=zn(t,n);if(e.state>bl)throw new Error("too late; already started");return e}function zn(t,n){var e=t.__transition;if(!e||!(e=e[n]))throw new Error("transition not found");return e}function Pn(t,n){var e,r,i,o=t.__transition,u=!0;if(o){n=null==n?null:n+"";for(i in o)(e=o[i]).name===n?(r=e.state>bl&&e.stateMath.abs(t[1]-D[1])?b=!0:x=!0),D=t,m=!0,$n(),o()}function o(){var t;switch(_=D[0]-q[0],y=D[1]-q[1],T){case th:case Kl:N&&(_=Math.max(C-a,Math.min(P-p,_)),s=a+_,d=p+_),k&&(y=Math.max(z-l,Math.min(R-v,y)),h=l+y,g=v+y);break;case nh:N<0?(_=Math.max(C-a,Math.min(P-a,_)),s=a+_,d=p):N>0&&(_=Math.max(C-p,Math.min(P-p,_)),s=a,d=p+_),k<0?(y=Math.max(z-l,Math.min(R-l,y)),h=l+y,g=v):k>0&&(y=Math.max(z-v,Math.min(R-v,y)),h=l,g=v+y);break;case eh:N&&(s=Math.max(C,Math.min(P,a-_*N)),d=Math.max(C,Math.min(P,p+_*N))),k&&(h=Math.max(z,Math.min(R,l-y*k)),g=Math.max(z,Math.min(R,v+y*k)))}d0&&(a=s-_),k<0?v=g-y:k>0&&(l=h-y),T=th,F.attr("cursor",uh.selection),o());break;default:return}$n()},!0).on("keyup.brush",function(){switch(t.event.keyCode){case 16:L&&(x=b=L=!1,o());break;case 18:T===eh&&(N<0?p=d:N>0&&(a=s),k<0?v=g:k>0&&(l=h),T=nh,o());break;case 32:T===th&&(t.event.altKey?(N&&(p=d-_*N,a=s+_*N),k&&(v=g-y*k,l=h+y*k),T=eh):(N<0?p=d:N>0&&(a=s),k<0?v=g:k>0&&(l=h),T=nh),F.attr("cursor",uh[M]),o());break;default:return}$n()},!0).on("mousemove.brush",e,!0).on("mouseup.brush",u,!0);_t(t.event.view)}Vn(),Pn(w),r.call(w),U.start()}}function a(){var t=this.__brush||{selection:null};return t.extent=s.apply(this,arguments),t.dim=n,t}var c,s=Gn,f=Zn,l=N(e,"start","brush","end"),h=6;return e.move=function(t,e){t.selection?t.on("start.brush",function(){i(this,arguments).beforestart().start()}).on("interrupt.brush end.brush",function(){i(this,arguments).end()}).tween("brush",function(){function t(t){u.selection=1===t&&Jn(s)?null:f(t),r.call(o),a.brush()}var o=this,u=o.__brush,a=i(o,arguments),c=u.selection,s=n.input("function"==typeof e?e.apply(this,arguments):e,u.extent),f=fn(c,s);return c&&s?t:t(1)}):t.each(function(){var t=arguments,o=this.__brush,u=n.input("function"==typeof e?e.apply(this,t):e,o.extent),a=i(this,t).beforestart();Pn(this),o.selection=null==u||Jn(u)?null:u,r.call(this),a.start().brush().end()})},o.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting&&(this.starting=!1,this.emit("start")),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(t){it(new function(t,n,e){this.target=t,this.type=n,this.selection=e}(e,t,n.output(this.state.selection)),l.apply,l,[t,this.that,this.args])}},e.extent=function(t){return arguments.length?(s="function"==typeof t?t:Xn([[+t[0][0],+t[0][1]],[+t[1][0],+t[1][1]]]),e):s},e.filter=function(t){return arguments.length?(f="function"==typeof t?t:Xn(!!t),e):f},e.handleSize=function(t){return arguments.length?(h=+t,e):h},e.on=function(){var t=l.on.apply(l,arguments);return t===l?e:t},e}function te(t){return function(){return t}}function ne(){this._x0=this._y0=this._x1=this._y1=null,this._=""}function ee(){return new ne}function re(t){return t.source}function ie(t){return t.target}function oe(t){return t.radius}function ue(t){return t.startAngle}function ae(t){return t.endAngle}function ce(){}function se(t,n){var e=new ce;if(t instanceof ce)t.each(function(t,n){e.set(n,t)});else if(Array.isArray(t)){var r,i=-1,o=t.length;if(null==n)for(;++i=u?s=!0:(e=t.charCodeAt(a++))===Nh?f=!0:e===kh&&(f=!0,t.charCodeAt(a)===Nh&&++a),t.slice(r+1,n-1).replace(/""/g,'"')}for(;a=(o=(v+_)/2))?v=o:_=o,(f=e>=(u=(g+y)/2))?g=u:y=u,i=p,!(p=p[l=f<<1|s]))return i[l]=d,t;if(a=+t._x.call(null,p.data),c=+t._y.call(null,p.data),n===a&&e===c)return d.next=p,i?i[l]=d:t._root=d,t;do{i=i?i[l]=new Array(4):t._root=new Array(4),(s=n>=(o=(v+_)/2))?v=o:_=o,(f=e>=(u=(g+y)/2))?g=u:y=u}while((l=f<<1|s)==(h=(c>=u)<<1|a>=o));return i[h]=p,i[l]=d,t}function be(t,n,e,r,i){this.node=t,this.x0=n,this.y0=e,this.x1=r,this.y1=i}function we(t){return t[0]}function Me(t){return t[1]}function Te(t,n,e){var r=new Ne(null==n?we:n,null==e?Me:e,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function Ne(t,n,e,r,i,o){this._x=t,this._y=n,this._x0=e,this._y0=r,this._x1=i,this._y1=o,this._root=void 0}function ke(t){for(var n={data:t.data},e=n;t=t.next;)e=e.next={data:t.data};return n}function Se(t){return t.x+t.vx}function Ee(t){return t.y+t.vy}function Ae(t){return t.index}function Ce(t,n){var e=t.get(n);if(!e)throw new Error("missing: "+n);return e}function ze(t){return t.x}function Pe(t){return t.y}function Re(t,n){if((e=(t=n?t.toExponential(n-1):t.toExponential()).indexOf("e"))<0)return null;var e,r=t.slice(0,e);return[r.length>1?r[0]+r.slice(2):r,+t.slice(e+1)]}function Le(t){return(t=Re(Math.abs(t)))?t[1]:NaN}function qe(t,n){var e=Re(t,n);if(!e)return t+"";var r=e[0],i=e[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}function De(t){return new Ue(t)}function Ue(t){if(!(n=Bh.exec(t)))throw new Error("invalid format: "+t);var n,e=n[1]||" ",r=n[2]||">",i=n[3]||"-",o=n[4]||"",u=!!n[5],a=n[6]&&+n[6],c=!!n[7],s=n[8]&&+n[8].slice(1),f=n[9]||"";"n"===f?(c=!0,f="g"):Yh[f]||(f=""),(u||"0"===e&&"="===r)&&(u=!0,e="0",r="="),this.fill=e,this.align=r,this.sign=i,this.symbol=o,this.zero=u,this.width=a,this.comma=c,this.precision=s,this.type=f}function Oe(t){return t}function Fe(t){function n(t){function n(t){var n,r,u,f=g,x=_;if("c"===v)x=y(t)+x,t="";else{var b=(t=+t)<0;if(t=y(Math.abs(t),d),b&&0==+t&&(b=!1),f=(b?"("===s?s:"-":"-"===s||"("===s?"":s)+f,x=("s"===v?jh[8+Oh/3]:"")+x+(b&&"("===s?")":""),m)for(n=-1,r=t.length;++n(u=t.charCodeAt(n))||u>57){x=(46===u?i+t.slice(n+1):t.slice(n))+x,t=t.slice(0,n);break}}p&&!l&&(t=e(t,1/0));var w=f.length+t.length+x.length,M=w>1)+f+t+x+M.slice(w);break;default:t=M+f+t+x}return o(t)}var a=(t=De(t)).fill,c=t.align,s=t.sign,f=t.symbol,l=t.zero,h=t.width,p=t.comma,d=t.precision,v=t.type,g="$"===f?r[0]:"#"===f&&/[boxX]/.test(v)?"0"+v.toLowerCase():"",_="$"===f?r[1]:/[%p]/.test(v)?u:"",y=Yh[v],m=!v||/[defgprs%]/.test(v);return d=null==d?v?6:12:/[gprs]/.test(v)?Math.max(1,Math.min(21,d)):Math.max(0,Math.min(20,d)),n.toString=function(){return t+""},n}var e=t.grouping&&t.thousands?function(t,n){return function(e,r){for(var i=e.length,o=[],u=0,a=t[0],c=0;i>0&&a>0&&(c+a+1>r&&(a=Math.max(1,r-c)),o.push(e.substring(i-=a,i+a)),!((c+=a+1)>r));)a=t[u=(u+1)%t.length];return o.reverse().join(n)}}(t.grouping,t.thousands):Oe,r=t.currency,i=t.decimal,o=t.numerals?function(t){return function(n){return n.replace(/[0-9]/g,function(n){return t[+n]})}}(t.numerals):Oe,u=t.percent||"%";return{format:n,formatPrefix:function(t,e){var r=n((t=De(t),t.type="f",t)),i=3*Math.max(-8,Math.min(8,Math.floor(Le(e)/3))),o=Math.pow(10,-i),u=jh[8+i/3];return function(t){return r(o*t)+u}}}}function Ie(n){return Hh=Fe(n),t.format=Hh.format,t.formatPrefix=Hh.formatPrefix,Hh}function Ye(t){return Math.max(0,-Le(Math.abs(t)))}function Be(t,n){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Le(n)/3)))-Le(Math.abs(t)))}function He(t,n){return t=Math.abs(t),n=Math.abs(n)-t,Math.max(0,Le(n)-Le(t))+1}function je(){return new Xe}function Xe(){this.reset()}function Ve(t,n,e){var r=t.s=n+e,i=r-n,o=r-i;t.t=n-o+(e-i)}function $e(t){return t>1?0:t<-1?Np:Math.acos(t)}function We(t){return t>1?kp:t<-1?-kp:Math.asin(t)}function Ze(t){return(t=Fp(t/2))*t}function Ge(){}function Qe(t,n){t&&jp.hasOwnProperty(t.type)&&jp[t.type](t,n)}function Je(t,n,e){var r,i=-1,o=t.length-e;for(n.lineStart();++i=0?1:-1,i=r*e,o=Lp(n),u=Fp(n),a=Zh*u,c=Wh*o+a*Lp(i),s=a*r*Fp(i);Xp.add(Rp(s,c)),$h=t,Wh=o,Zh=u}function or(t){return[Rp(t[1],t[0]),We(t[2])]}function ur(t){var n=t[0],e=t[1],r=Lp(e);return[r*Lp(n),r*Fp(n),Fp(e)]}function ar(t,n){return t[0]*n[0]+t[1]*n[1]+t[2]*n[2]}function cr(t,n){return[t[1]*n[2]-t[2]*n[1],t[2]*n[0]-t[0]*n[2],t[0]*n[1]-t[1]*n[0]]}function sr(t,n){t[0]+=n[0],t[1]+=n[1],t[2]+=n[2]}function fr(t,n){return[t[0]*n,t[1]*n,t[2]*n]}function lr(t){var n=Yp(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=n,t[1]/=n,t[2]/=n}function hr(t,n){ip.push(op=[Gh=t,Jh=t]),nKh&&(Kh=n)}function pr(t,n){var e=ur([t*Cp,n*Cp]);if(rp){var r=cr(rp,e),i=cr([r[1],-r[0],0],r);lr(i),i=or(i);var o,u=t-tp,a=u>0?1:-1,c=i[0]*Ap*a,s=zp(u)>180;s^(a*tpKh&&(Kh=o):(c=(c+360)%360-180,s^(a*tpKh&&(Kh=n))),s?tmr(Gh,Jh)&&(Jh=t):mr(t,Jh)>mr(Gh,Jh)&&(Gh=t):Jh>=Gh?(tJh&&(Jh=t)):t>tp?mr(Gh,t)>mr(Gh,Jh)&&(Jh=t):mr(t,Jh)>mr(Gh,Jh)&&(Gh=t)}else ip.push(op=[Gh=t,Jh=t]);nKh&&(Kh=n),rp=e,tp=t}function dr(){Zp.point=pr}function vr(){op[0]=Gh,op[1]=Jh,Zp.point=hr,rp=null}function gr(t,n){if(rp){var e=t-tp;Wp.add(zp(e)>180?e+(e>0?360:-360):e)}else np=t,ep=n;$p.point(t,n),pr(t,n)}function _r(){$p.lineStart()}function yr(){gr(np,ep),$p.lineEnd(),zp(Wp)>Mp&&(Gh=-(Jh=180)),op[0]=Gh,op[1]=Jh,rp=null}function mr(t,n){return(n-=t)<0?n+360:n}function xr(t,n){return t[0]-n[0]}function br(t,n){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:nNp?t-Ep:t<-Np?t+Ep:t,n]}function qr(t,n,e){return(t%=Ep)?n||e?Rr(Ur(t),Or(n,e)):Ur(t):n||e?Or(n,e):Lr}function Dr(t){return function(n,e){return n+=t,[n>Np?n-Ep:n<-Np?n+Ep:n,e]}}function Ur(t){var n=Dr(t);return n.invert=Dr(-t),n}function Or(t,n){function e(t,n){var e=Lp(n),a=Lp(t)*e,c=Fp(t)*e,s=Fp(n),f=s*r+a*i;return[Rp(c*o-f*u,a*r-s*i),We(f*o+c*u)]}var r=Lp(t),i=Fp(t),o=Lp(n),u=Fp(n);return e.invert=function(t,n){var e=Lp(n),a=Lp(t)*e,c=Fp(t)*e,s=Fp(n),f=s*o-c*u;return[Rp(c*o+s*u,a*r+f*i),We(f*r-a*i)]},e}function Fr(t){function n(n){return n=t(n[0]*Cp,n[1]*Cp),n[0]*=Ap,n[1]*=Ap,n}return t=qr(t[0]*Cp,t[1]*Cp,t.length>2?t[2]*Cp:0),n.invert=function(n){return n=t.invert(n[0]*Cp,n[1]*Cp),n[0]*=Ap,n[1]*=Ap,n},n}function Ir(t,n,e,r,i,o){if(e){var u=Lp(n),a=Fp(n),c=r*e;null==i?(i=n+r*Ep,o=n-c/2):(i=Yr(u,i),o=Yr(u,o),(r>0?io)&&(i+=r*Ep));for(var s,f=i;r>0?f>o:f1&&n.push(n.pop().concat(n.shift()))},result:function(){var e=n;return n=[],t=null,e}}}function Hr(t,n){return zp(t[0]-n[0])=0;--o)i.point((f=s[o])[0],f[1]);else r(h.x,h.p.x,-1,i);h=h.p}s=(h=h.o).z,p=!p}while(!h.v);i.lineEnd()}}}function Vr(t){if(n=t.length){for(var n,e,r=0,i=t[0];++r=0?1:-1,T=M*w,N=T>Np,k=d*x;if(cd.add(Rp(k*M*Fp(T),v*b+k*Lp(T))),o+=N?w+M*Ep:w,N^h>=e^y>=e){var S=cr(ur(l),ur(_));lr(S);var E=cr(i,S);lr(E);var A=(N^w>=0?-1:1)*We(E[2]);(r>A||r===A&&(S[0]||S[1]))&&(u+=N^w>=0?1:-1)}}return(o<-Mp||o0){for(m||(i.polygonStart(),m=!0),i.lineStart(),t=0;t1&&2&o&&u.push(u.pop().concat(u.shift())),p.push(u.filter(Zr))}var h,p,d,v=n(i),_=Br(),y=n(_),m=!1,x={point:o,lineStart:a,lineEnd:c,polygonStart:function(){x.point=s,x.lineStart=f,x.lineEnd=l,p=[],h=[]},polygonEnd:function(){x.point=o,x.lineStart=a,x.lineEnd=c,p=g(p);var t=$r(h,r);p.length?(m||(i.polygonStart(),m=!0),Xr(p,Gr,t,e,i)):t&&(m||(i.polygonStart(),m=!0),i.lineStart(),e(null,null,1,i),i.lineEnd()),m&&(i.polygonEnd(),m=!1),p=h=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}};return x}}function Zr(t){return t.length>1}function Gr(t,n){return((t=t.x)[0]<0?t[1]-kp-Mp:kp-t[1])-((n=n.x)[0]<0?n[1]-kp-Mp:kp-n[1])}function Qr(t){function n(t,n){return Lp(t)*Lp(n)>i}function e(t,n,e){var r=[1,0,0],o=cr(ur(t),ur(n)),u=ar(o,o),a=o[0],c=u-a*a;if(!c)return!e&&t;var s=i*u/c,f=-i*a/c,l=cr(r,o),h=fr(r,s);sr(h,fr(o,f));var p=l,d=ar(h,p),v=ar(p,p),g=d*d-v*(ar(h,h)-1);if(!(g<0)){var _=Yp(g),y=fr(p,(-d-_)/v);if(sr(y,h),y=or(y),!e)return y;var m,x=t[0],b=n[0],w=t[1],M=n[1];b0^y[1]<(zp(y[0]-x)Np^(x<=y[0]&&y[0]<=b)){var k=fr(p,(-d+_)/v);return sr(k,h),[y,or(k)]}}}function r(n,e){var r=u?t:Np-t,i=0;return n<-r?i|=1:n>r&&(i|=2),e<-r?i|=4:e>r&&(i|=8),i}var i=Lp(t),o=6*Cp,u=i>0,a=zp(i)>Mp;return Wr(n,function(t){var i,o,c,s,f;return{lineStart:function(){s=c=!1,f=1},point:function(l,h){var p,d=[l,h],v=n(l,h),g=u?v?0:r(l,h):v?r(l+(l<0?Np:-Np),h):0;if(!i&&(s=c=v)&&t.lineStart(),v!==c&&(!(p=e(i,d))||Hr(i,p)||Hr(d,p))&&(d[0]+=Mp,d[1]+=Mp,v=n(d[0],d[1])),v!==c)f=0,v?(t.lineStart(),p=e(d,i),t.point(p[0],p[1])):(p=e(i,d),t.point(p[0],p[1]),t.lineEnd()),i=p;else if(a&&i&&u^v){var _;g&o||!(_=e(d,i,!0))||(f=0,u?(t.lineStart(),t.point(_[0][0],_[0][1]),t.point(_[1][0],_[1][1]),t.lineEnd()):(t.point(_[1][0],_[1][1]),t.lineEnd(),t.lineStart(),t.point(_[0][0],_[0][1])))}!v||i&&Hr(i,d)||t.point(d[0],d[1]),i=d,c=v,o=g},lineEnd:function(){c&&t.lineEnd(),i=null},clean:function(){return f|(s&&c)<<1}}},function(n,e,r,i){Ir(i,t,o,r,n,e)},u?[0,-t]:[-Np,t-Np])}function Jr(t,n,e,r){function i(i,o){return t<=i&&i<=e&&n<=o&&o<=r}function o(i,o,a,s){var f=0,l=0;if(null==i||(f=u(i,a))!==(l=u(o,a))||c(i,o)<0^a>0)do{s.point(0===f||3===f?t:e,f>1?r:n)}while((f=(f+a+4)%4)!==l);else s.point(o[0],o[1])}function u(r,i){return zp(r[0]-t)0?0:3:zp(r[0]-e)0?2:1:zp(r[1]-n)0?1:0:i>0?3:2}function a(t,n){return c(t.x,n.x)}function c(t,n){var e=u(t,1),r=u(n,1);return e!==r?e-r:0===e?n[1]-t[1]:1===e?t[0]-n[0]:2===e?t[1]-n[1]:n[0]-t[0]}return function(u){function c(t,n){i(t,n)&&w.point(t,n)}function s(o,u){var a=i(o,u);if(l&&h.push([o,u]),x)p=o,d=u,v=a,x=!1,a&&(w.lineStart(),w.point(o,u));else if(a&&m)w.point(o,u);else{var c=[_=Math.max(ld,Math.min(fd,_)),y=Math.max(ld,Math.min(fd,y))],s=[o=Math.max(ld,Math.min(fd,o)),u=Math.max(ld,Math.min(fd,u))];!function(t,n,e,r,i,o){var u,a=t[0],c=t[1],s=0,f=1,l=n[0]-a,h=n[1]-c;if(u=e-a,l||!(u>0)){if(u/=l,l<0){if(u0){if(u>f)return;u>s&&(s=u)}if(u=i-a,l||!(u<0)){if(u/=l,l<0){if(u>f)return;u>s&&(s=u)}else if(l>0){if(u0)){if(u/=h,h<0){if(u0){if(u>f)return;u>s&&(s=u)}if(u=o-c,h||!(u<0)){if(u/=h,h<0){if(u>f)return;u>s&&(s=u)}else if(h>0){if(u0&&(t[0]=a+s*l,t[1]=c+s*h),f<1&&(n[0]=a+f*l,n[1]=c+f*h),!0}}}}}(c,s,t,n,e,r)?a&&(w.lineStart(),w.point(o,u),b=!1):(m||(w.lineStart(),w.point(c[0],c[1])),w.point(s[0],s[1]),a||w.lineEnd(),b=!1)}_=o,y=u,m=a}var f,l,h,p,d,v,_,y,m,x,b,w=u,M=Br(),T={point:c,lineStart:function(){T.point=s,l&&l.push(h=[]),x=!0,m=!1,_=y=NaN},lineEnd:function(){f&&(s(p,d),v&&m&&M.rejoin(),f.push(M.result())),T.point=c,m&&w.lineEnd()},polygonStart:function(){w=M,f=[],l=[],b=!0},polygonEnd:function(){var n=function(){for(var n=0,e=0,i=l.length;er&&(h-o)*(r-u)>(p-u)*(t-o)&&++n:p<=r&&(h-o)*(r-u)<(p-u)*(t-o)&&--n;return n}(),e=b&&n,i=(f=g(f)).length;(e||i)&&(u.polygonStart(),e&&(u.lineStart(),o(null,null,1,u),u.lineEnd()),i&&Xr(f,a,n,o,u),u.polygonEnd()),w=u,f=l=h=null}};return T}}function Kr(){pd.point=pd.lineEnd=Ge}function ti(t,n){Qp=t*=Cp,Jp=Fp(n*=Cp),Kp=Lp(n),pd.point=ni}function ni(t,n){t*=Cp;var e=Fp(n*=Cp),r=Lp(n),i=zp(t-Qp),o=Lp(i),u=r*Fp(i),a=Kp*e-Jp*r*o,c=Jp*e+Kp*r*o;hd.add(Rp(Yp(u*u+a*a),c)),Qp=t,Jp=e,Kp=r}function ei(t){return hd.reset(),tr(t,pd),+hd}function ri(t,n){return dd[0]=t,dd[1]=n,ei(vd)}function ii(t,n){return!(!t||!_d.hasOwnProperty(t.type))&&_d[t.type](t,n)}function oi(t,n){return 0===ri(t,n)}function ui(t,n){var e=ri(t[0],t[1]);return ri(t[0],n)+ri(n,t[1])<=e+Mp}function ai(t,n){return!!$r(t.map(ci),si(n))}function ci(t){return(t=t.map(si)).pop(),t}function si(t){return[t[0]*Cp,t[1]*Cp]}function fi(t,n,e){var r=f(t,n-Mp,e).concat(n);return function(t){return r.map(function(n){return[t,n]})}}function li(t,n,e){var r=f(t,n-Mp,e).concat(n);return function(t){return r.map(function(n){return[n,t]})}}function hi(){function t(){return{type:"MultiLineString",coordinates:n()}}function n(){return f(qp(o/_)*_,i,_).map(p).concat(f(qp(s/y)*y,c,y).map(d)).concat(f(qp(r/v)*v,e,v).filter(function(t){return zp(t%_)>Mp}).map(l)).concat(f(qp(a/g)*g,u,g).filter(function(t){return zp(t%y)>Mp}).map(h))}var e,r,i,o,u,a,c,s,l,h,p,d,v=10,g=v,_=90,y=360,m=2.5;return t.lines=function(){return n().map(function(t){return{type:"LineString",coordinates:t}})},t.outline=function(){return{type:"Polygon",coordinates:[p(o).concat(d(c).slice(1),p(i).reverse().slice(1),d(s).reverse().slice(1))]}},t.extent=function(n){return arguments.length?t.extentMajor(n).extentMinor(n):t.extentMinor()},t.extentMajor=function(n){return arguments.length?(o=+n[0][0],i=+n[1][0],s=+n[0][1],c=+n[1][1],o>i&&(n=o,o=i,i=n),s>c&&(n=s,s=c,c=n),t.precision(m)):[[o,s],[i,c]]},t.extentMinor=function(n){return arguments.length?(r=+n[0][0],e=+n[1][0],a=+n[0][1],u=+n[1][1],r>e&&(n=r,r=e,e=n),a>u&&(n=a,a=u,u=n),t.precision(m)):[[r,a],[e,u]]},t.step=function(n){return arguments.length?t.stepMajor(n).stepMinor(n):t.stepMinor()},t.stepMajor=function(n){return arguments.length?(_=+n[0],y=+n[1],t):[_,y]},t.stepMinor=function(n){return arguments.length?(v=+n[0],g=+n[1],t):[v,g]},t.precision=function(n){return arguments.length?(m=+n,l=fi(a,u,90),h=li(r,e,m),p=fi(s,c,90),d=li(o,i,m),t):m},t.extentMajor([[-180,-90+Mp],[180,90-Mp]]).extentMinor([[-180,-80-Mp],[180,80+Mp]])}function pi(t){return t}function di(){xd.point=vi}function vi(t,n){xd.point=gi,td=ed=t,nd=rd=n}function gi(t,n){md.add(rd*t-ed*n),ed=t,rd=n}function _i(){gi(td,nd)}function yi(t,n){kd+=t,Sd+=n,++Ed}function mi(){qd.point=xi}function xi(t,n){qd.point=bi,yi(ud=t,ad=n)}function bi(t,n){var e=t-ud,r=n-ad,i=Yp(e*e+r*r);Ad+=i*(ud+t)/2,Cd+=i*(ad+n)/2,zd+=i,yi(ud=t,ad=n)}function wi(){qd.point=yi}function Mi(){qd.point=Ni}function Ti(){ki(id,od)}function Ni(t,n){qd.point=ki,yi(id=ud=t,od=ad=n)}function ki(t,n){var e=t-ud,r=n-ad,i=Yp(e*e+r*r);Ad+=i*(ud+t)/2,Cd+=i*(ad+n)/2,zd+=i,Pd+=(i=ad*t-ud*n)*(ud+t),Rd+=i*(ad+n),Ld+=3*i,yi(ud=t,ad=n)}function Si(t){this._context=t}function Ei(t,n){Bd.point=Ai,Ud=Fd=t,Od=Id=n}function Ai(t,n){Fd-=t,Id-=n,Yd.add(Yp(Fd*Fd+Id*Id)),Fd=t,Id=n}function Ci(){this._string=[]}function zi(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}function Pi(t){return function(n){var e=new Ri;for(var r in t)e[r]=t[r];return e.stream=n,e}}function Ri(){}function Li(t,n,e){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),tr(e,t.stream(Nd)),n(Nd.result()),null!=r&&t.clipExtent(r),t}function qi(t,n,e){return Li(t,function(e){var r=n[1][0]-n[0][0],i=n[1][1]-n[0][1],o=Math.min(r/(e[1][0]-e[0][0]),i/(e[1][1]-e[0][1])),u=+n[0][0]+(r-o*(e[1][0]+e[0][0]))/2,a=+n[0][1]+(i-o*(e[1][1]+e[0][1]))/2;t.scale(150*o).translate([u,a])},e)}function Di(t,n,e){return qi(t,[[0,0],n],e)}function Ui(t,n,e){return Li(t,function(e){var r=+n,i=r/(e[1][0]-e[0][0]),o=(r-i*(e[1][0]+e[0][0]))/2,u=-i*e[0][1];t.scale(150*i).translate([o,u])},e)}function Oi(t,n,e){return Li(t,function(e){var r=+n,i=r/(e[1][1]-e[0][1]),o=-i*e[0][0],u=(r-i*(e[1][1]+e[0][1]))/2;t.scale(150*i).translate([o,u])},e)}function Fi(t,n){return+n?function(t,n){function e(r,i,o,u,a,c,s,f,l,h,p,d,v,g){var _=s-r,y=f-i,m=_*_+y*y;if(m>4*n&&v--){var x=u+h,b=a+p,w=c+d,M=Yp(x*x+b*b+w*w),T=We(w/=M),N=zp(zp(w)-1)n||zp((_*A+y*C)/m-.5)>.3||u*h+a*p+c*d2?t[2]%360*Cp:0,r()):[x*Ap,b*Ap,w*Ap]},n.precision=function(t){return arguments.length?(E=Fi(e,S=t*t),i()):Yp(S)},n.fitExtent=function(t,e){return qi(n,t,e)},n.fitSize=function(t,e){return Di(n,t,e)},n.fitWidth=function(t,e){return Ui(n,t,e)},n.fitHeight=function(t,e){return Oi(n,t,e)},function(){return o=t.apply(this,arguments),n.invert=o.invert&&function(t){return(t=s.invert((t[0]-u)/v,(a-t[1])/v))&&[t[0]*Ap,t[1]*Ap]},r()}}function Bi(t){var n=0,e=Np/3,r=Yi(t),i=r(n,e);return i.parallels=function(t){return arguments.length?r(n=t[0]*Cp,e=t[1]*Cp):[n*Ap,e*Ap]},i}function Hi(t,n){function e(t,n){var e=Yp(o-2*i*Fp(n))/i;return[e*Fp(t*=i),u-e*Lp(t)]}var r=Fp(t),i=(r+Fp(n))/2;if(zp(i)0?n<-kp+Mp&&(n=-kp+Mp):n>kp-Mp&&(n=kp-Mp);var e=o/Op(Gi(n),i);return[e*Fp(i*t),o-e*Lp(i*t)]}var r=Lp(t),i=t===n?Fp(t):Up(r/Lp(n))/Up(Gi(n)/Gi(t)),o=r*Op(Gi(t),i)/i;return i?(e.invert=function(t,n){var e=o-n,r=Ip(i)*Yp(t*t+e*e);return[Rp(t,zp(e))/i*Ip(e),2*Pp(Op(o/r,1/i))-kp]},e):Wi}function Ji(t,n){return[t,n]}function Ki(t,n){function e(t,n){var e=o-n,r=i*t;return[e*Fp(r),o-e*Lp(r)]}var r=Lp(t),i=t===n?Fp(t):(r-Lp(n))/(n-t),o=r/i+t;return zp(i)=0;)n+=e[r].value;else n=1;t.value=n}function fo(t,n){var e,r,i,o,u,a=new vo(t),c=+t.value&&(a.value=t.value),s=[a];for(null==n&&(n=lo);e=s.pop();)if(c&&(e.value=+e.data.value),(i=n(e.data))&&(u=i.length))for(e.children=new Array(u),o=u-1;o>=0;--o)s.push(r=e.children[o]=new vo(i[o])),r.parent=e,r.depth=e.depth+1;return a.eachBefore(po)}function lo(t){return t.children}function ho(t){t.data=t.data.data}function po(t){var n=0;do{t.height=n}while((t=t.parent)&&t.height<++n)}function vo(t){this.data=t,this.depth=this.height=0,this.parent=null}function go(t){for(var n,e,r=0,i=(t=function(t){for(var n,e,r=t.length;r;)e=Math.random()*r--|0,n=t[r],t[r]=t[e],t[e]=n;return t}(Wd.call(t))).length,o=[];r0&&e*e>r*r+i*i}function mo(t,n){for(var e=0;ee*e+r*r}function To(t){var n=t._,e=t.next._,r=n.r+e.r,i=(n.x*e.r+e.x*n.r)/r,o=(n.y*e.r+e.y*n.r)/r;return i*i+o*o}function No(t){this._=t,this.next=null,this.previous=null}function ko(t){if(!(i=t.length))return 0;var n,e,r,i,o,u,a,c,s,f,l;if(n=t[0],n.x=0,n.y=0,!(i>1))return n.r;if(e=t[1],n.x=-e.r,e.x=n.r,e.y=0,!(i>2))return n.r+e.r;wo(e,n,r=t[2]),n=new No(n),e=new No(e),r=new No(r),n.next=r.previous=e,e.next=n.previous=r,r.next=e.previous=n;t:for(a=3;ah&&(h=a),g=f*f*v,(p=Math.max(h/g,g/l))>d){f-=a;break}d=p}_.push(u={value:f,dice:c1&&Vo(t[e[r-2]],t[e[r-1]],t[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function Zo(t){this._size=t,this._call=this._error=null,this._tasks=[],this._data=[],this._waiting=this._active=this._ended=this._start=0}function Go(t){if(!t._start)try{(function(t){for(;t._start=t._waiting&&t._active=0;)if((e=t._tasks[r])&&(t._tasks[r]=null,e.abort))try{e.abort()}catch(n){}t._active=NaN,Jo(t)}function Jo(t){if(!t._active&&t._call){var n=t._data;t._data=void 0,t._call(t._error,n)}}function Ko(t){if(null==t)t=1/0;else if(!((t=+t)>=1))throw new Error("invalid concurrency");return new Zo(t)}function tu(){return Math.random()}function nu(t,n){function e(t){var n,e=s.status;if(!e&&function(t){var n=t.responseType;return n&&"text"!==n?t.response:t.responseText}(s)||e>=200&&e<300||304===e){if(o)try{n=o.call(r,s)}catch(t){return void a.call("error",r,t)}else n=s;a.call("load",r,n)}else a.call("error",r,t)}var r,i,o,u,a=N("beforesend","progress","load","error"),c=se(),s=new XMLHttpRequest,f=null,l=null,h=0;if("undefined"==typeof XDomainRequest||"withCredentials"in s||!/^(http(s)?:)?\/\//.test(t)||(s=new XDomainRequest),"onload"in s?s.onload=s.onerror=s.ontimeout=e:s.onreadystatechange=function(t){s.readyState>3&&e(t)},s.onprogress=function(t){a.call("progress",r,t)},r={header:function(t,n){return t=(t+"").toLowerCase(),arguments.length<2?c.get(t):(null==n?c.remove(t):c.set(t,n+""),r)},mimeType:function(t){return arguments.length?(i=null==t?null:t+"",r):i},responseType:function(t){return arguments.length?(u=t,r):u},timeout:function(t){return arguments.length?(h=+t,r):h},user:function(t){return arguments.length<1?f:(f=null==t?null:t+"",r)},password:function(t){return arguments.length<1?l:(l=null==t?null:t+"",r)},response:function(t){return o=t,r},get:function(t,n){return r.send("GET",t,n)},post:function(t,n){return r.send("POST",t,n)},send:function(n,e,o){return s.open(n,t,!0,f,l),null==i||c.has("accept")||c.set("accept",i+",*/*"),s.setRequestHeader&&c.each(function(t,n){s.setRequestHeader(n,t)}),null!=i&&s.overrideMimeType&&s.overrideMimeType(i),null!=u&&(s.responseType=u),h>0&&(s.timeout=h),null==o&&"function"==typeof e&&(o=e,e=null),null!=o&&1===o.length&&(o=function(t){return function(n,e){t(null==n?e:null)}}(o)),null!=o&&r.on("error",o).on("load",function(t){o(null,t)}),a.call("beforesend",r,s),s.send(null==e?null:e),r},abort:function(){return s.abort(),r},on:function(){var t=a.on.apply(a,arguments);return t===a?r:t}},null!=n){if("function"!=typeof n)throw new Error("invalid callback: "+n);return r.get(n)}return r}function eu(t,n){return function(e,r){var i=nu(e).mimeType(t).response(n);if(null!=r){if("function"!=typeof r)throw new Error("invalid callback: "+r);return i.get(r)}return i}}function ru(t,n){return function(e,r,i){arguments.length<3&&(i=r,r=null);var o=nu(e).mimeType(t);return o.row=function(t){return arguments.length?o.response(function(t,n){return function(e){return t(e.responseText,n)}}(n,r=t)):r},o.row(r),i?o.get(i):o}}function iu(t){function n(n){var o=n+"",u=e.get(o);if(!u){if(i!==yv)return i;e.set(o,u=r.push(n))}return t[(u-1)%t.length]}var e=se(),r=[],i=yv;return t=null==t?[]:_v.call(t),n.domain=function(t){if(!arguments.length)return r.slice();r=[],e=se();for(var i,o,u=-1,a=t.length;++u2?lu:fu,o=u=null,r}function r(n){return(o||(o=i(a,c,f?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=n?0:t>=e?1:r(t)}}}(t):t,s)))(+n)}var i,o,u,a=mv,c=mv,s=fn,f=!1;return r.invert=function(t){return(u||(u=i(c,a,su,f?function(t){return function(n,e){var r=t(n=+n,e=+e);return function(t){return t<=0?n:t>=1?e:r(t)}}}(n):n)))(+t)},r.domain=function(t){return arguments.length?(a=gv.call(t,cu),e()):a.slice()},r.range=function(t){return arguments.length?(c=_v.call(t),e()):c.slice()},r.rangeRound=function(t){return c=_v.call(t),s=ln,e()},r.clamp=function(t){return arguments.length?(f=!!t,e()):f},r.interpolate=function(t){return arguments.length?(s=t,e()):s},e()}function du(n){var e=n.domain;return n.ticks=function(t){var n=e();return l(n[0],n[n.length-1],null==t?10:t)},n.tickFormat=function(n,r){return function(n,e,r){var i,o=n[0],u=n[n.length-1],a=p(o,u,null==e?10:e);switch((r=De(null==r?",f":r)).type){case"s":var c=Math.max(Math.abs(o),Math.abs(u));return null!=r.precision||isNaN(i=Be(a,c))||(r.precision=i),t.formatPrefix(r,c);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=He(a,Math.max(Math.abs(o),Math.abs(u))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=Ye(a))||(r.precision=i-2*("%"===r.type))}return t.format(r)}(e(),n,r)},n.nice=function(t){null==t&&(t=10);var r,i=e(),o=0,u=i.length-1,a=i[o],c=i[u];return c0?r=h(a=Math.floor(a/r)*r,c=Math.ceil(c/r)*r,t):r<0&&(r=h(a=Math.ceil(a*r)/r,c=Math.floor(c*r)/r,t)),r>0?(i[o]=Math.floor(a/r)*r,i[u]=Math.ceil(c/r)*r,e(i)):r<0&&(i[o]=Math.ceil(a*r)/r,i[u]=Math.floor(c*r)/r,e(i)),n},n}function vu(){var t=pu(su,an);return t.copy=function(){return hu(t,vu())},du(t)}function gu(){function t(t){return+t}var n=[0,1];return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=gv.call(e,cu),t):n.slice()},t.copy=function(){return gu().domain(n)},du(t)}function _u(t,n){var e,r=0,i=(t=t.slice()).length-1,o=t[r],u=t[i];return u0){for(;pc)break;g.push(h)}}else for(;p=1;--f)if(!((h=s*f)c)break;g.push(h)}}else g=l(p,d,Math.min(d-p,v)).map(u);return n?g.reverse():g},e.tickFormat=function(n,r){if(null==r&&(r=10===i?".0e":","),"function"!=typeof r&&(r=t.format(r)),n===1/0)return r;null==n&&(n=10);var a=Math.max(1,i*n/e.ticks().length);return function(t){var n=t/u(Math.round(o(t)));return n*i0?o[n-1]:r[0],n=i?[o[i-1],r]:[o[n-1],o[n]]},t.copy=function(){return Eu().domain([e,r]).range(u)},du(t)}function Au(){function t(t){if(t<=t)return e[Os(n,t,0,r)]}var n=[.5],e=[0,1],r=1;return t.domain=function(i){return arguments.length?(n=_v.call(i),r=Math.min(n.length,e.length-1),t):n.slice()},t.range=function(i){return arguments.length?(e=_v.call(i),r=Math.min(n.length,e.length-1),t):e.slice()},t.invertExtent=function(t){var r=e.indexOf(t);return[n[r-1],n[r]]},t.copy=function(){return Au().domain(n).range(e)},t}function Cu(t,n,e,r){function i(n){return t(n=new Date(+n)),n}return i.floor=i,i.ceil=function(e){return t(e=new Date(e-1)),n(e,1),t(e),e},i.round=function(t){var n=i(t),e=i.ceil(t);return t-n0))return a;do{a.push(u=new Date(+e)),n(e,o),t(e)}while(u=n)for(;t(n),!e(n);)n.setTime(n-1)},function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;n(t,-1),!e(t););else for(;--r>=0;)for(;n(t,1),!e(t););})},e&&(i.count=function(n,r){return xv.setTime(+n),bv.setTime(+r),t(xv),t(bv),Math.floor(e(xv,bv))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(n){return r(n)%t==0}:function(n){return i.count(0,n)%t==0}):i:null}),i}function zu(t){return Cu(function(n){n.setDate(n.getDate()-(n.getDay()+7-t)%7),n.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+7*n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Tv)/Nv})}function Pu(t){return Cu(function(n){n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+7-t)%7),n.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+7*n)},function(t,n){return(n-t)/Nv})}function Ru(t){if(0<=t.y&&t.y<100){var n=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return n.setFullYear(t.y),n}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function Lu(t){if(0<=t.y&&t.y<100){var n=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return n.setUTCFullYear(t.y),n}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function qu(t){return{y:t,m:0,d:1,H:0,M:0,S:0,L:0}}function Du(t){function n(t,n){return function(e){var r,i,o,u=[],a=-1,c=0,s=t.length;for(e instanceof Date||(e=new Date(+e));++a53)return null;"w"in u||(u.w=1),"Z"in u?(i=(o=(i=Lu(qu(u.y))).getUTCDay())>4||0===o?og.ceil(i):og(i),i=eg.offset(i,7*(u.V-1)),u.y=i.getUTCFullYear(),u.m=i.getUTCMonth(),u.d=i.getUTCDate()+(u.w+6)%7):(i=(o=(i=n(qu(u.y))).getDay())>4||0===o?qv.ceil(i):qv(i),i=Pv.offset(i,7*(u.V-1)),u.y=i.getFullYear(),u.m=i.getMonth(),u.d=i.getDate()+(u.w+6)%7)}else("W"in u||"U"in u)&&("w"in u||(u.w="u"in u?u.u%7:"W"in u?1:0),o="Z"in u?Lu(qu(u.y)).getUTCDay():n(qu(u.y)).getDay(),u.m=0,u.d="W"in u?(u.w+6)%7+7*u.W-(o+5)%7:u.w+7*u.U-(o+6)%7);return"Z"in u?(u.H+=u.Z/100|0,u.M+=u.Z%100,Lu(u)):n(u)}}function r(t,n,e,r){for(var i,o,u=0,a=n.length,c=e.length;u=c)return-1;if(37===(i=n.charCodeAt(u++))){if(i=n.charAt(u++),!(o=T[i in Mg?n.charAt(u++):i])||(r=o(t,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}var i=t.dateTime,o=t.date,u=t.time,a=t.periods,c=t.days,s=t.shortDays,f=t.months,l=t.shortMonths,h=Fu(a),p=Iu(a),d=Fu(c),v=Iu(c),g=Fu(s),_=Iu(s),y=Fu(f),m=Iu(f),x=Fu(l),b=Iu(l),w={a:function(t){return s[t.getDay()]},A:function(t){return c[t.getDay()]},b:function(t){return l[t.getMonth()]},B:function(t){return f[t.getMonth()]},c:null,d:ua,e:ua,f:la,H:aa,I:ca,j:sa,L:fa,m:ha,M:pa,p:function(t){return a[+(t.getHours()>=12)]},Q:Ya,s:Ba,S:da,u:va,U:ga,V:_a,w:ya,W:ma,x:null,X:null,y:xa,Y:ba,Z:wa,"%":Ia},M={a:function(t){return s[t.getUTCDay()]},A:function(t){return c[t.getUTCDay()]},b:function(t){return l[t.getUTCMonth()]},B:function(t){return f[t.getUTCMonth()]},c:null,d:Ma,e:Ma,f:Ea,H:Ta,I:Na,j:ka,L:Sa,m:Aa,M:Ca,p:function(t){return a[+(t.getUTCHours()>=12)]},Q:Ya,s:Ba,S:za,u:Pa,U:Ra,V:La,w:qa,W:Da,x:null,X:null,y:Ua,Y:Oa,Z:Fa,"%":Ia},T={a:function(t,n,e){var r=g.exec(n.slice(e));return r?(t.w=_[r[0].toLowerCase()],e+r[0].length):-1},A:function(t,n,e){var r=d.exec(n.slice(e));return r?(t.w=v[r[0].toLowerCase()],e+r[0].length):-1},b:function(t,n,e){var r=x.exec(n.slice(e));return r?(t.m=b[r[0].toLowerCase()],e+r[0].length):-1},B:function(t,n,e){var r=y.exec(n.slice(e));return r?(t.m=m[r[0].toLowerCase()],e+r[0].length):-1},c:function(t,n,e){return r(t,i,n,e)},d:Gu,e:Gu,f:ea,H:Ju,I:Ju,j:Qu,L:na,m:Zu,M:Ku,p:function(t,n,e){var r=h.exec(n.slice(e));return r?(t.p=p[r[0].toLowerCase()],e+r[0].length):-1},Q:ia,s:oa,S:ta,u:Bu,U:Hu,V:ju,w:Yu,W:Xu,x:function(t,n,e){return r(t,o,n,e)},X:function(t,n,e){return r(t,u,n,e)},y:$u,Y:Vu,Z:Wu,"%":ra};return w.x=n(o,w),w.X=n(u,w),w.c=n(i,w),M.x=n(o,M),M.X=n(u,M),M.c=n(i,M),{format:function(t){var e=n(t+="",w);return e.toString=function(){return t},e},parse:function(t){var n=e(t+="",Ru);return n.toString=function(){return t},n},utcFormat:function(t){var e=n(t+="",M);return e.toString=function(){return t},e},utcParse:function(t){var n=e(t,Lu);return n.toString=function(){return t},n}}}function Uu(t,n,e){var r=t<0?"-":"",i=(r?-t:t)+"",o=i.length;return r+(o68?1900:2e3),e+r[0].length):-1}function Wu(t,n,e){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(n.slice(e,e+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),e+r[0].length):-1}function Zu(t,n,e){var r=Tg.exec(n.slice(e,e+2));return r?(t.m=r[0]-1,e+r[0].length):-1}function Gu(t,n,e){var r=Tg.exec(n.slice(e,e+2));return r?(t.d=+r[0],e+r[0].length):-1}function Qu(t,n,e){var r=Tg.exec(n.slice(e,e+3));return r?(t.m=0,t.d=+r[0],e+r[0].length):-1}function Ju(t,n,e){var r=Tg.exec(n.slice(e,e+2));return r?(t.H=+r[0],e+r[0].length):-1}function Ku(t,n,e){var r=Tg.exec(n.slice(e,e+2));return r?(t.M=+r[0],e+r[0].length):-1}function ta(t,n,e){var r=Tg.exec(n.slice(e,e+2));return r?(t.S=+r[0],e+r[0].length):-1}function na(t,n,e){var r=Tg.exec(n.slice(e,e+3));return r?(t.L=+r[0],e+r[0].length):-1}function ea(t,n,e){var r=Tg.exec(n.slice(e,e+6));return r?(t.L=Math.floor(r[0]/1e3),e+r[0].length):-1}function ra(t,n,e){var r=Ng.exec(n.slice(e,e+1));return r?e+r[0].length:-1}function ia(t,n,e){var r=Tg.exec(n.slice(e));return r?(t.Q=+r[0],e+r[0].length):-1}function oa(t,n,e){var r=Tg.exec(n.slice(e));return r?(t.Q=1e3*+r[0],e+r[0].length):-1}function ua(t,n){return Uu(t.getDate(),n,2)}function aa(t,n){return Uu(t.getHours(),n,2)}function ca(t,n){return Uu(t.getHours()%12||12,n,2)}function sa(t,n){return Uu(1+Pv.count(Gv(t),t),n,3)}function fa(t,n){return Uu(t.getMilliseconds(),n,3)}function la(t,n){return fa(t,n)+"000"}function ha(t,n){return Uu(t.getMonth()+1,n,2)}function pa(t,n){return Uu(t.getMinutes(),n,2)}function da(t,n){return Uu(t.getSeconds(),n,2)}function va(t){var n=t.getDay();return 0===n?7:n}function ga(t,n){return Uu(Lv.count(Gv(t),t),n,2)}function _a(t,n){var e=t.getDay();return t=e>=4||0===e?Ov(t):Ov.ceil(t),Uu(Ov.count(Gv(t),t)+(4===Gv(t).getDay()),n,2)}function ya(t){return t.getDay()}function ma(t,n){return Uu(qv.count(Gv(t),t),n,2)}function xa(t,n){return Uu(t.getFullYear()%100,n,2)}function ba(t,n){return Uu(t.getFullYear()%1e4,n,4)}function wa(t){var n=t.getTimezoneOffset();return(n>0?"-":(n*=-1,"+"))+Uu(n/60|0,"0",2)+Uu(n%60,"0",2)}function Ma(t,n){return Uu(t.getUTCDate(),n,2)}function Ta(t,n){return Uu(t.getUTCHours(),n,2)}function Na(t,n){return Uu(t.getUTCHours()%12||12,n,2)}function ka(t,n){return Uu(1+eg.count(xg(t),t),n,3)}function Sa(t,n){return Uu(t.getUTCMilliseconds(),n,3)}function Ea(t,n){return Sa(t,n)+"000"}function Aa(t,n){return Uu(t.getUTCMonth()+1,n,2)}function Ca(t,n){return Uu(t.getUTCMinutes(),n,2)}function za(t,n){return Uu(t.getUTCSeconds(),n,2)}function Pa(t){var n=t.getUTCDay();return 0===n?7:n}function Ra(t,n){return Uu(ig.count(xg(t),t),n,2)}function La(t,n){var e=t.getUTCDay();return t=e>=4||0===e?cg(t):cg.ceil(t),Uu(cg.count(xg(t),t)+(4===xg(t).getUTCDay()),n,2)}function qa(t){return t.getUTCDay()}function Da(t,n){return Uu(og.count(xg(t),t),n,2)}function Ua(t,n){return Uu(t.getUTCFullYear()%100,n,2)}function Oa(t,n){return Uu(t.getUTCFullYear()%1e4,n,4)}function Fa(){return"+0000"}function Ia(){return"%"}function Ya(t){return+t}function Ba(t){return Math.floor(+t/1e3)}function Ha(n){return bg=Du(n),t.timeFormat=bg.format,t.timeParse=bg.parse,t.utcFormat=bg.utcFormat,t.utcParse=bg.utcParse,bg}function ja(t){return new Date(t)}function Xa(t){return t instanceof Date?+t:+new Date(+t)}function Va(t,n,r,i,o,u,a,c,s){function f(e){return(a(e)=1?i_:t<=-1?-i_:Math.asin(t)}function Ja(t){return t.innerRadius}function Ka(t){return t.outerRadius}function tc(t){return t.startAngle}function nc(t){return t.endAngle}function ec(t){return t&&t.padAngle}function rc(t,n,e,r,i,o,u){var a=t-e,c=n-r,s=(u?o:-o)/n_(a*a+c*c),f=s*c,l=-s*a,h=t+f,p=n+l,d=e+f,v=r+l,g=(h+d)/2,_=(p+v)/2,y=d-h,m=v-p,x=y*y+m*m,b=i-o,w=h*v-d*p,M=(m<0?-1:1)*n_(Jg(0,b*b*x-w*w)),T=(w*m-y*M)/x,N=(-w*y-m*M)/x,k=(w*m+y*M)/x,S=(-w*y+m*M)/x,E=T-g,A=N-_,C=k-g,z=S-_;return E*E+A*A>C*C+z*z&&(T=k,N=S),{cx:T,cy:N,x01:-f,y01:-l,x11:T*(i/b-1),y11:N*(i/b-1)}}function ic(t){this._context=t}function oc(t){return new ic(t)}function uc(t){return t[0]}function ac(t){return t[1]}function cc(){function t(t){var a,c,s,f=t.length,l=!1;for(null==i&&(u=o(s=ee())),a=0;a<=f;++a)!(a=f;--l)s.point(g[l],_[l]);s.lineEnd(),s.areaEnd()}v&&(g[n]=+e(h,n,t),_[n]=+i(h,n,t),s.point(r?+r(h,n,t):g[n],o?+o(h,n,t):_[n]))}if(p)return s=null,p+""||null}function n(){return cc().defined(u).curve(c).context(a)}var e=uc,r=null,i=Ga(0),o=ac,u=Ga(!0),a=null,c=oc,s=null;return t.x=function(n){return arguments.length?(e="function"==typeof n?n:Ga(+n),r=null,t):e},t.x0=function(n){return arguments.length?(e="function"==typeof n?n:Ga(+n),t):e},t.x1=function(n){return arguments.length?(r=null==n?null:"function"==typeof n?n:Ga(+n),t):r},t.y=function(n){return arguments.length?(i="function"==typeof n?n:Ga(+n),o=null,t):i},t.y0=function(n){return arguments.length?(i="function"==typeof n?n:Ga(+n),t):i},t.y1=function(n){return arguments.length?(o=null==n?null:"function"==typeof n?n:Ga(+n),t):o},t.lineX0=t.lineY0=function(){return n().x(e).y(i)},t.lineY1=function(){return n().x(e).y(o)},t.lineX1=function(){return n().x(r).y(i)},t.defined=function(n){return arguments.length?(u="function"==typeof n?n:Ga(!!n),t):u},t.curve=function(n){return arguments.length?(c=n,null!=a&&(s=c(a)),t):c},t.context=function(n){return arguments.length?(null==n?a=s=null:s=c(a=n),t):a},t}function fc(t,n){return nt?1:n>=t?0:NaN}function lc(t){return t}function hc(t){this._curve=t}function pc(t){function n(n){return new hc(t(n))}return n._curve=t,n}function dc(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?n(pc(t)):n()._curve},t}function vc(){return dc(cc().curve(u_))}function gc(){var t=sc().curve(u_),n=t.curve,e=t.lineX0,r=t.lineX1,i=t.lineY0,o=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return dc(e())},delete t.lineX0,t.lineEndAngle=function(){return dc(r())},delete t.lineX1,t.lineInnerRadius=function(){return dc(i())},delete t.lineY0,t.lineOuterRadius=function(){return dc(o())},delete t.lineY1,t.curve=function(t){return arguments.length?n(pc(t)):n()._curve},t}function _c(t,n){return[(n=+n)*Math.cos(t-=Math.PI/2),n*Math.sin(t)]}function yc(t){return t.source}function mc(t){return t.target}function xc(t){function n(){var n,a=a_.call(arguments),c=e.apply(this,a),s=r.apply(this,a);if(u||(u=n=ee()),t(u,+i.apply(this,(a[0]=c,a)),+o.apply(this,a),+i.apply(this,(a[0]=s,a)),+o.apply(this,a)),n)return u=null,n+""||null}var e=yc,r=mc,i=uc,o=ac,u=null;return n.source=function(t){return arguments.length?(e=t,n):e},n.target=function(t){return arguments.length?(r=t,n):r},n.x=function(t){return arguments.length?(i="function"==typeof t?t:Ga(+t),n):i},n.y=function(t){return arguments.length?(o="function"==typeof t?t:Ga(+t),n):o},n.context=function(t){return arguments.length?(u=null==t?null:t,n):u},n}function bc(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n=(n+r)/2,e,n,i,r,i)}function wc(t,n,e,r,i){t.moveTo(n,e),t.bezierCurveTo(n,e=(e+i)/2,r,e,r,i)}function Mc(t,n,e,r,i){var o=_c(n,e),u=_c(n,e=(e+i)/2),a=_c(r,e),c=_c(r,i);t.moveTo(o[0],o[1]),t.bezierCurveTo(u[0],u[1],a[0],a[1],c[0],c[1])}function Tc(){}function Nc(t,n,e){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+n)/6,(t._y0+4*t._y1+e)/6)}function kc(t){this._context=t}function Sc(t){this._context=t}function Ec(t){this._context=t}function Ac(t,n){this._basis=new kc(t),this._beta=n}function Cc(t,n,e){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-n),t._y2+t._k*(t._y1-e),t._x2,t._y2)}function zc(t,n){this._context=t,this._k=(1-n)/6}function Pc(t,n){this._context=t,this._k=(1-n)/6}function Rc(t,n){this._context=t,this._k=(1-n)/6}function Lc(t,n,e){var r=t._x1,i=t._y1,o=t._x2,u=t._y2;if(t._l01_a>e_){var a=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,c=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*a-t._x0*t._l12_2a+t._x2*t._l01_2a)/c,i=(i*a-t._y0*t._l12_2a+t._y2*t._l01_2a)/c}if(t._l23_a>e_){var s=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,f=3*t._l23_a*(t._l23_a+t._l12_a);o=(o*s+t._x1*t._l23_2a-n*t._l12_2a)/f,u=(u*s+t._y1*t._l23_2a-e*t._l12_2a)/f}t._context.bezierCurveTo(r,i,o,u,t._x2,t._y2)}function qc(t,n){this._context=t,this._alpha=n}function Dc(t,n){this._context=t,this._alpha=n}function Uc(t,n){this._context=t,this._alpha=n}function Oc(t){this._context=t}function Fc(t){return t<0?-1:1}function Ic(t,n,e){var r=t._x1-t._x0,i=n-t._x1,o=(t._y1-t._y0)/(r||i<0&&-0),u=(e-t._y1)/(i||r<0&&-0),a=(o*i+u*r)/(r+i);return(Fc(o)+Fc(u))*Math.min(Math.abs(o),Math.abs(u),.5*Math.abs(a))||0}function Yc(t,n){var e=t._x1-t._x0;return e?(3*(t._y1-t._y0)/e-n)/2:n}function Bc(t,n,e){var r=t._x0,i=t._y0,o=t._x1,u=t._y1,a=(o-r)/3;t._context.bezierCurveTo(r+a,i+a*n,o-a,u-a*e,o,u)}function Hc(t){this._context=t}function jc(t){this._context=new Xc(t)}function Xc(t){this._context=t}function Vc(t){this._context=t}function $c(t){var n,e,r=t.length-1,i=new Array(r),o=new Array(r),u=new Array(r);for(i[0]=0,o[0]=2,u[0]=t[0]+2*t[1],n=1;n=0;--n)i[n]=(u[n]-i[n+1])/o[n];for(o[r-1]=(t[r]+i[r-1])/2,n=0;n1)for(var e,r,i,o=1,u=t[n[0]],a=u.length;o=0;)e[n]=n;return e}function Qc(t,n){return t[n]}function Jc(t){var n=t.map(Kc);return Gc(t).sort(function(t,e){return n[t]-n[e]})}function Kc(t){for(var n,e=0,r=-1,i=t.length;++r0)){if(o/=h,h<0){if(o0){if(o>l)return;o>f&&(f=o)}if(o=r-c,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>f&&(f=o)}else if(h>0){if(o0)){if(o/=p,p<0){if(o0){if(o>l)return;o>f&&(f=o)}if(o=i-s,p||!(o<0)){if(o/=p,p<0){if(o>l)return;o>f&&(f=o)}else if(p>0){if(o0||l<1)||(f>0&&(t[0]=[c+f*h,s+f*p]),l<1&&(t[1]=[c+l*h,s+l*p]),!0)}}}}}function hs(t,n,e,r,i){var o=t[1];if(o)return!0;var u,a,c=t[0],s=t.left,f=t.right,l=s[0],h=s[1],p=f[0],d=f[1],v=(l+p)/2,g=(h+d)/2;if(d===h){if(v=r)return;if(l>p){if(c){if(c[1]>=i)return}else c=[v,e];o=[v,i]}else{if(c){if(c[1]1)if(l>p){if(c){if(c[1]>=i)return}else c=[(e-a)/u,e];o=[(i-a)/u,i]}else{if(c){if(c[1]=r)return}else c=[n,u*n+a];o=[r,u*r+a]}else{if(c){if(c[0]=-I_)){var p=c*c+s*s,d=f*f+l*l,v=(l*p-s*d)/h,g=(c*d-f*p)/h,_=U_.pop()||new function(){is(this),this.x=this.y=this.arc=this.site=this.cy=null};_.arc=t,_.site=i,_.x=v+u,_.y=(_.cy=g+a)+Math.sqrt(v*v+g*g),t.circle=_;for(var y=null,m=q_._;m;)if(_.yF_)a=a.L;else{if(!((i=o-function(t,n){var e=t.N;if(e)return ws(e,n);var r=t.site;return r[1]===n?r[0]:1/0}(a,u))>F_)){r>-F_?(n=a.P,e=a):i>-F_?(n=a,e=a.N):n=e=a;break}if(!a.R){n=a;break}a=a.R}(function(t){L_[t.index]={site:t,halfedges:[]}})(t);var c=ys(t);if(R_.insert(n,c),n||e){if(n===e)return _s(n),e=ys(n.site),R_.insert(c,e),c.edge=e.edge=cs(n.site,c.site),gs(n),void gs(e);if(e){_s(n),_s(e);var s=n.site,f=s[0],l=s[1],h=t[0]-f,p=t[1]-l,d=e.site,v=d[0]-f,g=d[1]-l,_=2*(h*g-p*v),y=h*h+p*p,m=v*v+g*g,x=[(g*y-p*m)/_+f,(h*m-v*y)/_+l];fs(e.edge,s,d,x),c.edge=cs(s,t,null,x),e.edge=cs(t,d,null,x),gs(n),gs(e)}else c.edge=cs(n.site,c.site)}}function ws(t,n){var e=t.site,r=e[0],i=e[1],o=i-n;if(!o)return r;var u=t.P;if(!u)return-1/0;var a=(e=u.site)[0],c=e[1],s=c-n;if(!s)return a;var f=a-r,l=1/o-1/s,h=f/s;return l?(-h+Math.sqrt(h*h-2*l*(f*f/(-2*s)-c+s/2+i-o/2)))/l+r:(r+a)/2}function Ms(t,n,e){return(t[0]-e[0])*(n[1]-t[1])-(t[0]-n[0])*(e[1]-t[1])}function Ts(t,n){return n[1]-t[1]||n[0]-t[0]}function Ns(t,n){var e,r,i,o=t.sort(Ts).pop();for(D_=[],L_=new Array(t.length),R_=new rs,q_=new rs;;)if(i=P_,o&&(!i||o[1]F_||Math.abs(i[0][1]-i[1][1])>F_)||delete D_[o]})(u,a,c,s),function(t,n,e,r){var i,o,u,a,c,s,f,l,h,p,d,v,g=L_.length,_=!0;for(i=0;iF_||Math.abs(v-h)>F_)&&(c.splice(a,0,D_.push(ss(u,p,Math.abs(d-t)F_?[t,Math.abs(l-t)F_?[Math.abs(h-r)F_?[e,Math.abs(l-e)F_?[Math.abs(h-n)r?(r+i)/2:Math.min(0,r)||Math.max(0,i),u>o?(o+u)/2:Math.min(0,o)||Math.max(0,u))}var Us=e(n),Os=Us.right,Fs=Us.left,Is=Array.prototype,Ys=Is.slice,Bs=Is.map,Hs=Math.sqrt(50),js=Math.sqrt(10),Xs=Math.sqrt(2),Vs=Array.prototype.slice,$s=1,Ws=2,Zs=3,Gs=4,Qs=1e-6,Js={value:function(){}};k.prototype=N.prototype={constructor:k,on:function(t,n){var e,r=this._,i=function(t,n){return t.trim().split(/^|\s+/).map(function(t){var e="",r=t.indexOf(".");if(r>=0&&(e=t.slice(r+1),t=t.slice(0,r)),t&&!n.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:e}})}(t+"",r),o=-1,u=i.length;{if(!(arguments.length<2)){if(null!=n&&"function"!=typeof n)throw new Error("invalid callback: "+n);for(;++o0)for(var e,r,i=new Array(e),o=0;o=0&&(this._names.splice(n,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var af={};if(t.event=null,"undefined"!=typeof document){"onmouseenter"in document.documentElement||(af={mouseenter:"mouseover",mouseleave:"mouseout"})}var cf=[null];ut.prototype=at.prototype={constructor:ut,select:function(t){"function"!=typeof t&&(t=z(t));for(var n=this._groups,e=n.length,r=new Array(e),i=0;i=x&&(x=m+1);!(y=g[x])&&++x=0;)(r=i[o])&&(u&&u!==r.nextSibling&&u.parentNode.insertBefore(r,u),u=r);return this},sort:function(t){function n(n,e){return n&&e?t(n.__data__,e.__data__):!n-!e}t||(t=O);for(var e=this._groups,r=e.length,i=new Array(r),o=0;o1?this.each((null==n?function(t){return function(){this.style.removeProperty(t)}}:"function"==typeof n?function(t,n,e){return function(){var r=n.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,e)}}:function(t,n,e){return function(){this.style.setProperty(t,n,e)}})(t,n,null==e?"":e)):I(this.node(),t)},property:function(t,n){return arguments.length>1?this.each((null==n?function(t){return function(){delete this[t]}}:"function"==typeof n?function(t,n){return function(){var e=n.apply(this,arguments);null==e?delete this[t]:this[t]=e}}:function(t,n){return function(){this[t]=n}})(t,n)):this.node()[t]},classed:function(t,n){var e=Y(t+"");if(arguments.length<2){for(var r=B(this.node()),i=-1,o=e.length;++i=0&&(n=t.slice(e+1),t=t.slice(0,e)),{type:t,name:n}})}(t+""),u=o.length;if(!(arguments.length<2)){for(a=n?rt:et,null==e&&(e=!1),r=0;r=240?t-240:t+120,i,r),Ut(t,i,r),Ut(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1}}));var wf=Math.PI/180,Mf=180/Math.PI,Tf=.95047,Nf=1,kf=1.08883,Sf=4/29,Ef=6/29,Af=3*Ef*Ef,Cf=Ef*Ef*Ef;Nt(It,Ft,kt(St,{brighter:function(t){return new It(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new It(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,n=isNaN(this.a)?t:t+this.a/500,e=isNaN(this.b)?t:t-this.b/200;return t=Nf*Bt(t),n=Tf*Bt(n),e=kf*Bt(e),new Rt(Ht(3.2404542*n-1.5371385*t-.4985314*e),Ht(-.969266*n+1.8760108*t+.041556*e),Ht(.0556434*n-.2040259*t+1.0572252*e),this.opacity)}})),Nt(Vt,Xt,kt(St,{brighter:function(t){return new Vt(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new Vt(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return Ot(this).rgb()}}));var zf=-.29227,Pf=-.90649,Rf=1.97294,Lf=Rf*Pf,qf=1.78277*Rf,Df=1.78277*zf- -.14861*Pf;Nt(Wt,$t,kt(St,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new Wt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new Wt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*wf,n=+this.l,e=isNaN(this.s)?0:this.s*n*(1-n),r=Math.cos(t),i=Math.sin(t);return new Rt(255*(n+e*(-.14861*r+1.78277*i)),255*(n+e*(zf*r+Pf*i)),255*(n+e*(Rf*r)),this.opacity)}}));var Uf,Of,Ff,If,Yf,Bf,Hf=function t(n){function e(t,n){var e=r((t=Pt(t)).r,(n=Pt(n)).r),i=r(t.g,n.g),o=r(t.b,n.b),u=en(t.opacity,n.opacity);return function(n){return t.r=e(n),t.g=i(n),t.b=o(n),t.opacity=u(n),t+""}}var r=nn(n);return e.gamma=t,e}(1),jf=rn(Gt),Xf=rn(Qt),Vf=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,$f=new RegExp(Vf.source,"g"),Wf=180/Math.PI,Zf={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},Gf=pn(function(t){return"none"===t?Zf:(Uf||(Uf=document.createElement("DIV"),Of=document.documentElement,Ff=document.defaultView),Uf.style.transform=t,t=Ff.getComputedStyle(Of.appendChild(Uf),null).getPropertyValue("transform"),Of.removeChild(Uf),t=t.slice(7,-1).split(","),hn(+t[0],+t[1],+t[2],+t[3],+t[4],+t[5]))},"px, ","px)","deg)"),Qf=pn(function(t){return null==t?Zf:(If||(If=document.createElementNS("http://www.w3.org/2000/svg","g")),If.setAttribute("transform",t),(t=If.transform.baseVal.consolidate())?(t=t.matrix,hn(t.a,t.b,t.c,t.d,t.e,t.f)):Zf)},", ",")",")"),Jf=Math.SQRT2,Kf=2,tl=4,nl=1e-12,el=gn(tn),rl=gn(en),il=_n(tn),ol=_n(en),ul=yn(tn),al=yn(en),cl=0,sl=0,fl=0,ll=1e3,hl=0,pl=0,dl=0,vl="object"==typeof performance&&performance.now?performance:Date,gl="object"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};bn.prototype=wn.prototype={constructor:bn,restart:function(t,n,e){if("function"!=typeof t)throw new TypeError("callback is not a function");e=(null==e?mn():+e)+(null==n?0:+n),this._next||Bf===this||(Bf?Bf._next=this:Yf=this,Bf=this),this._call=t,this._time=e,kn()},stop:function(){this._call&&(this._call=null,this._time=1/0,kn())}};var _l=N("start","end","interrupt"),yl=[],ml=0,xl=1,bl=2,wl=3,Ml=4,Tl=5,Nl=6,kl=at.prototype.constructor,Sl=0,El=at.prototype;qn.prototype=Dn.prototype={constructor:qn,select:function(t){var n=this._name,e=this._id;"function"!=typeof t&&(t=z(t));for(var r=this._groups,i=r.length,o=new Array(i),u=0;u=0&&(t=t.slice(0,n)),!t||"start"===t})}(n)?An:Cn;return function(){var u=o(this,t),a=u.on;a!==r&&(i=(r=a).copy()).on(n,e),u.on=i}}(e,t,n))},attr:function(t,n){var e=E(t),r="transform"===e?Qf:Ln;return this.attrTween(t,"function"==typeof n?(e.local?function(t,n,e){var r,i,o;return function(){var u,a=e(this);if(null!=a)return(u=this.getAttributeNS(t.space,t.local))===a?null:u===r&&a===i?o:o=n(r=u,i=a);this.removeAttributeNS(t.space,t.local)}}:function(t,n,e){var r,i,o;return function(){var u,a=e(this);if(null!=a)return(u=this.getAttribute(t))===a?null:u===r&&a===i?o:o=n(r=u,i=a);this.removeAttribute(t)}})(e,r,Rn(this,"attr."+t,n)):null==n?(e.local?function(t){return function(){this.removeAttributeNS(t.space,t.local)}}:function(t){return function(){this.removeAttribute(t)}})(e):(e.local?function(t,n,e){var r,i;return function(){var o=this.getAttributeNS(t.space,t.local);return o===e?null:o===r?i:i=n(r=o,e)}}:function(t,n,e){var r,i;return function(){var o=this.getAttribute(t);return o===e?null:o===r?i:i=n(r=o,e)}})(e,r,n+""))},attrTween:function(t,n){var e="attr."+t;if(arguments.length<2)return(e=this.tween(e))&&e._value;if(null==n)return this.tween(e,null);if("function"!=typeof n)throw new Error;var r=E(t);return this.tween(e,(r.local?function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttributeNS(t.space,t.local,r(n))}}return e._value=n,e}:function(t,n){function e(){var e=this,r=n.apply(e,arguments);return r&&function(n){e.setAttribute(t,r(n))}}return e._value=n,e})(r,n))},style:function(t,n,e){var r="transform"==(t+="")?Gf:Ln;return null==n?this.styleTween(t,function(t,n){var e,r,i;return function(){var o=I(this,t),u=(this.style.removeProperty(t),I(this,t));return o===u?null:o===e&&u===r?i:i=n(e=o,r=u)}}(t,r)).on("end.style."+t,function(t){return function(){this.style.removeProperty(t)}}(t)):this.styleTween(t,"function"==typeof n?function(t,n,e){var r,i,o;return function(){var u=I(this,t),a=e(this);return null==a&&(this.style.removeProperty(t),a=I(this,t)),u===a?null:u===r&&a===i?o:o=n(r=u,i=a)}}(t,r,Rn(this,"style."+t,n)):function(t,n,e){var r,i;return function(){var o=I(this,t);return o===e?null:o===r?i:i=n(r=o,e)}}(t,r,n+""),e)},styleTween:function(t,n,e){var r="style."+(t+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==n)return this.tween(r,null);if("function"!=typeof n)throw new Error;return this.tween(r,function(t,n,e){function r(){var r=this,i=n.apply(r,arguments);return i&&function(n){r.style.setProperty(t,i(n),e)}}return r._value=n,r}(t,n,null==e?"":e))},text:function(t){return this.tween("text","function"==typeof t?function(t){return function(){var n=t(this);this.textContent=null==n?"":n}}(Rn(this,"text",t)):function(t){return function(){this.textContent=t}}(null==t?"":t+""))},remove:function(){return this.on("end.remove",function(t){return function(){var n=this.parentNode;for(var e in this.__transition)if(+e!==t)return;n&&n.removeChild(this)}}(this._id))},tween:function(t,n){var e=this._id;if(t+="",arguments.length<2){for(var r,i=zn(this.node(),e).tween,o=0,u=i.length;o1e-6)if(Math.abs(f*a-c*s)>1e-6&&i){var h=e-o,p=r-u,d=a*a+c*c,v=h*h+p*p,g=Math.sqrt(d),_=Math.sqrt(l),y=i*Math.tan((yh-Math.acos((d+l-v)/(2*g*_)))/2),m=y/_,x=y/g;Math.abs(m-1)>1e-6&&(this._+="L"+(t+m*s)+","+(n+m*f)),this._+="A"+i+","+i+",0,0,"+ +(f*h>s*p)+","+(this._x1=t+x*a)+","+(this._y1=n+x*c)}else this._+="L"+(this._x1=t)+","+(this._y1=n);else;},arc:function(t,n,e,r,i,o){t=+t,n=+n;var u=(e=+e)*Math.cos(r),a=e*Math.sin(r),c=t+u,s=n+a,f=1^o,l=o?r-i:i-r;if(e<0)throw new Error("negative radius: "+e);null===this._x1?this._+="M"+c+","+s:(Math.abs(this._x1-c)>1e-6||Math.abs(this._y1-s)>1e-6)&&(this._+="L"+c+","+s),e&&(l<0&&(l=l%mh+mh),l>xh?this._+="A"+e+","+e+",0,1,"+f+","+(t-u)+","+(n-a)+"A"+e+","+e+",0,1,"+f+","+(this._x1=c)+","+(this._y1=s):l>1e-6&&(this._+="A"+e+","+e+",0,"+ +(l>=yh)+","+f+","+(this._x1=t+e*Math.cos(i))+","+(this._y1=n+e*Math.sin(i))))},rect:function(t,n,e,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+n)+"h"+ +e+"v"+ +r+"h"+-e+"Z"},toString:function(){return this._}};ce.prototype=se.prototype={constructor:ce,has:function(t){return"$"+t in this},get:function(t){return this["$"+t]},set:function(t,n){return this["$"+t]=n,this},remove:function(t){var n="$"+t;return n in this&&delete this[n]},clear:function(){for(var t in this)"$"===t[0]&&delete this[t]},keys:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(n.slice(1));return t},values:function(){var t=[];for(var n in this)"$"===n[0]&&t.push(this[n]);return t},entries:function(){var t=[];for(var n in this)"$"===n[0]&&t.push({key:n.slice(1),value:this[n]});return t},size:function(){var t=0;for(var n in this)"$"===n[0]&&++t;return t},empty:function(){for(var t in this)if("$"===t[0])return!1;return!0},each:function(t){for(var n in this)"$"===n[0]&&t(this[n],n.slice(1),this)}};var bh=se.prototype;de.prototype=ve.prototype={constructor:de,has:bh.has,add:function(t){return t+="",this["$"+t]=t,this},remove:bh.remove,clear:bh.clear,values:bh.keys,size:bh.size,empty:bh.empty,each:bh.each};var wh={},Mh={},Th=34,Nh=10,kh=13,Sh=_e(","),Eh=Sh.parse,Ah=Sh.parseRows,Ch=Sh.format,zh=Sh.formatRows,Ph=_e("\t"),Rh=Ph.parse,Lh=Ph.parseRows,qh=Ph.format,Dh=Ph.formatRows,Uh=Te.prototype=Ne.prototype;Uh.copy=function(){var t,n,e=new Ne(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return e;if(!r.length)return e._root=ke(r),e;for(t=[{source:r,target:e._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(n=r.source[i])&&(n.length?t.push({source:n,target:r.target[i]=new Array(4)}):r.target[i]=ke(n));return e},Uh.add=function(t){var n=+this._x.call(null,t),e=+this._y.call(null,t);return xe(this.cover(n,e),n,e,t)},Uh.addAll=function(t){var n,e,r,i,o=t.length,u=new Array(o),a=new Array(o),c=1/0,s=1/0,f=-1/0,l=-1/0;for(e=0;ef&&(f=r),il&&(l=i));for(ft||t>i||r>n||n>o))return this;var u,a,c=i-e,s=this._root;switch(a=(n<(r+o)/2)<<1|t<(e+i)/2){case 0:do{u=new Array(4),u[a]=s,s=u}while(c*=2,i=e+c,o=r+c,t>i||n>o);break;case 1:do{u=new Array(4),u[a]=s,s=u}while(c*=2,e=i-c,o=r+c,e>t||n>o);break;case 2:do{u=new Array(4),u[a]=s,s=u}while(c*=2,i=e+c,r=o-c,t>i||r>n);break;case 3:do{u=new Array(4),u[a]=s,s=u}while(c*=2,e=i-c,r=o-c,e>t||r>n)}this._root&&this._root.length&&(this._root=s)}return this._x0=e,this._y0=r,this._x1=i,this._y1=o,this},Uh.data=function(){var t=[];return this.visit(function(n){if(!n.length)do{t.push(n.data)}while(n=n.next)}),t},Uh.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},Uh.find=function(t,n,e){var r,i,o,u,a,c,s,f=this._x0,l=this._y0,h=this._x1,p=this._y1,d=[],v=this._root;for(v&&d.push(new be(v,f,l,h,p)),null==e?e=1/0:(f=t-e,l=n-e,h=t+e,p=n+e,e*=e);c=d.pop();)if(!(!(v=c.node)||(i=c.x0)>h||(o=c.y0)>p||(u=c.x1)=_)<<1|t>=g)&&(c=d[d.length-1],d[d.length-1]=d[d.length-1-s],d[d.length-1-s]=c)}else{var y=t-+this._x.call(null,v.data),m=n-+this._y.call(null,v.data),x=y*y+m*m;if(x=(a=(d+g)/2))?d=a:g=a,(f=u>=(c=(v+_)/2))?v=c:_=c,n=p,!(p=p[l=f<<1|s]))return this;if(!p.length)break;(n[l+1&3]||n[l+2&3]||n[l+3&3])&&(e=n,h=l)}for(;p.data!==t;)if(r=p,!(p=p.next))return this;return(i=p.next)&&delete p.next,r?(i?r.next=i:delete r.next,this):n?(i?n[l]=i:delete n[l],(p=n[0]||n[1]||n[2]||n[3])&&p===(n[3]||n[2]||n[1]||n[0])&&!p.length&&(e?e[h]=p:this._root=p),this):(this._root=i,this)},Uh.removeAll=function(t){for(var n=0,e=t.length;n0&&(o=0)}return o>0?t.slice(0,o)+t.slice(e+1):t},"%":function(t,n){return(100*t).toFixed(n)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,n){return t.toExponential(n)},f:function(t,n){return t.toFixed(n)},g:function(t,n){return t.toPrecision(n)},o:function(t){return Math.round(t).toString(8)},p:function(t,n){return qe(100*t,n)},r:qe,s:function(t,n){var e=Re(t,n);if(!e)return t+"";var r=e[0],i=e[1],o=i-(Oh=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,u=r.length;return o===u?r:o>u?r+new Array(o-u+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Re(t,Math.max(0,n+o-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},Bh=/^(?:(.)?([<>=^]))?([+\-\( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?([a-z%])?$/i;De.prototype=Ue.prototype,Ue.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(null==this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(null==this.precision?"":"."+Math.max(0,0|this.precision))+this.type};var Hh,jh=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];Ie({decimal:".",thousands:",",grouping:[3],currency:["$",""]}),Xe.prototype={constructor:Xe,reset:function(){this.s=this.t=0},add:function(t){Ve(wp,t,this.t),Ve(this,wp.s,this.s),this.s?this.t+=wp.t:this.s=wp.t},valueOf:function(){return this.s}};var Xh,Vh,$h,Wh,Zh,Gh,Qh,Jh,Kh,tp,np,ep,rp,ip,op,up,ap,cp,sp,fp,lp,hp,pp,dp,vp,gp,_p,yp,mp,xp,bp,wp=new Xe,Mp=1e-6,Tp=1e-12,Np=Math.PI,kp=Np/2,Sp=Np/4,Ep=2*Np,Ap=180/Np,Cp=Np/180,zp=Math.abs,Pp=Math.atan,Rp=Math.atan2,Lp=Math.cos,qp=Math.ceil,Dp=Math.exp,Up=Math.log,Op=Math.pow,Fp=Math.sin,Ip=Math.sign||function(t){return t>0?1:t<0?-1:0},Yp=Math.sqrt,Bp=Math.tan,Hp={Feature:function(t,n){Qe(t.geometry,n)},FeatureCollection:function(t,n){for(var e=t.features,r=-1,i=e.length;++rMp?Kh=90:Wp<-Mp&&(Qh=-90),op[0]=Gh,op[1]=Jh}},Gp={sphere:Ge,point:wr,lineStart:Tr,lineEnd:Sr,polygonStart:function(){Gp.lineStart=Er,Gp.lineEnd=Ar},polygonEnd:function(){Gp.lineStart=Tr,Gp.lineEnd=Sr}};Lr.invert=Lr;var Qp,Jp,Kp,td,nd,ed,rd,id,od,ud,ad,cd=je(),sd=Wr(function(){return!0},function(t){var n,e=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),n=1},point:function(o,u){var a=o>0?Np:-Np,c=zp(o-e);zp(c-Np)0?kp:-kp),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(a,r),t.point(o,r),n=0):i!==a&&c>=Np&&(zp(e-i)Mp?Pp((Fp(n)*(o=Lp(r))*Fp(e)-Fp(r)*(i=Lp(n))*Fp(t))/(i*o*u)):(n+r)/2}(e,r,o,u),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(a,r),n=0),t.point(e=o,r=u),i=a},lineEnd:function(){t.lineEnd(),e=r=NaN},clean:function(){return 2-n}}},function(t,n,e,r){var i;if(null==t)i=e*kp,r.point(-Np,i),r.point(0,i),r.point(Np,i),r.point(Np,0),r.point(Np,-i),r.point(0,-i),r.point(-Np,-i),r.point(-Np,0),r.point(-Np,i);else if(zp(t[0]-n[0])>Mp){var o=t[0]Md&&(Md=t),nTd&&(Td=n)},lineStart:Ge,lineEnd:Ge,polygonStart:Ge,polygonEnd:Ge,result:function(){var t=[[bd,wd],[Md,Td]];return Md=Td=-(wd=bd=1/0),t}},kd=0,Sd=0,Ed=0,Ad=0,Cd=0,zd=0,Pd=0,Rd=0,Ld=0,qd={point:yi,lineStart:mi,lineEnd:wi,polygonStart:function(){qd.lineStart=Mi,qd.lineEnd=Ti},polygonEnd:function(){qd.point=yi,qd.lineStart=mi,qd.lineEnd=wi},result:function(){var t=Ld?[Pd/Ld,Rd/Ld]:zd?[Ad/zd,Cd/zd]:Ed?[kd/Ed,Sd/Ed]:[NaN,NaN];return kd=Sd=Ed=Ad=Cd=zd=Pd=Rd=Ld=0,t}};Si.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._context.moveTo(t,n),this._point=1;break;case 1:this._context.lineTo(t,n);break;default:this._context.moveTo(t+this._radius,n),this._context.arc(t,n,this._radius,0,Ep)}},result:Ge};var Dd,Ud,Od,Fd,Id,Yd=je(),Bd={point:Ge,lineStart:function(){Bd.point=Ei},lineEnd:function(){Dd&&Ai(Ud,Od),Bd.point=Ge},polygonStart:function(){Dd=!0},polygonEnd:function(){Dd=null},result:function(){var t=+Yd;return Yd.reset(),t}};Ci.prototype={_radius:4.5,_circle:zi(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,n){switch(this._point){case 0:this._string.push("M",t,",",n),this._point=1;break;case 1:this._string.push("L",t,",",n);break;default:null==this._circle&&(this._circle=zi(this._radius)),this._string.push("M",t,",",n,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}},Ri.prototype={constructor:Ri,point:function(t,n){this.stream.point(t,n)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var Hd=16,jd=Lp(30*Cp),Xd=Pi({point:function(t,n){this.stream.point(t*Cp,n*Cp)}}),Vd=Vi(function(t){return Yp(2/(1+t))});Vd.invert=$i(function(t){return 2*We(t/2)});var $d=Vi(function(t){return(t=$e(t))&&t/Fp(t)});$d.invert=$i(function(t){return t}),Wi.invert=function(t,n){return[t,2*Pp(Dp(n))-kp]},Ji.invert=Ji,to.invert=$i(Pp),eo.invert=function(t,n){var e,r=n,i=25;do{var o=r*r,u=o*o;r-=e=(r*(1.007226+o*(.015085+u*(.028874*o-.044475-.005916*u)))-n)/(1.007226+o*(.045255+u*(.259866*o-.311325-.005916*11*u)))}while(zp(e)>Mp&&--i>0);return[t/(.8707+(o=r*r)*(o*(o*o*o*(.003971-.001529*o)-.013791)-.131979)),r]},ro.invert=$i(We),io.invert=$i(function(t){return 2*Pp(t)}),oo.invert=function(t,n){return[-n,2*Pp(Dp(t))-kp]},vo.prototype=fo.prototype={constructor:vo,count:function(){return this.eachAfter(so)},each:function(t){var n,e,r,i,o=this,u=[o];do{for(n=u.reverse(),u=[];o=n.pop();)if(t(o),e=o.children)for(r=0,i=e.length;r=0;--e)i.push(n[e]);return this},sum:function(t){return this.eachAfter(function(n){for(var e=+t(n.data)||0,r=n.children,i=r&&r.length;--i>=0;)e+=r[i].value;n.value=e})},sort:function(t){return this.eachBefore(function(n){n.children&&n.children.sort(t)})},path:function(t){for(var n=this,e=function(t,n){if(t===n)return t;var e=t.ancestors(),r=n.ancestors(),i=null;for(t=e.pop(),n=r.pop();t===n;)i=t,t=e.pop(),n=r.pop();return i}(n,t),r=[n];n!==e;)n=n.parent,r.push(n);for(var i=r.length;t!==e;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,n=[t];t=t.parent;)n.push(t);return n},descendants:function(){var t=[];return this.each(function(n){t.push(n)}),t},leaves:function(){var t=[];return this.eachBefore(function(n){n.children||t.push(n)}),t},links:function(){var t=this,n=[];return t.each(function(e){e!==t&&n.push({source:e.parent,target:e})}),n},copy:function(){return fo(this).eachBefore(ho)}};var Wd=Array.prototype.slice,Zd="$",Gd={depth:-1},Qd={};Ho.prototype=Object.create(vo.prototype);var Jd=(1+Math.sqrt(5))/2,Kd=function t(n){function e(t,e,r,i,o){Xo(n,t,e,r,i,o)}return e.ratio=function(n){return t((n=+n)>1?n:1)},e}(Jd),tv=function t(n){function e(t,e,r,i,o){if((u=t._squarify)&&u.ratio===n)for(var u,a,c,s,f,l=-1,h=u.length,p=t.value;++l1?n:1)},e}(Jd),nv=[].slice,ev={};Zo.prototype=Ko.prototype={constructor:Zo,defer:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("defer after await");if(null!=this._error)return this;var n=nv.call(arguments,1);return n.push(t),++this._waiting,this._tasks.push(n),Go(this),this},abort:function(){return null==this._error&&Qo(this,new Error("abort")),this},await:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=function(n,e){t.apply(null,[n].concat(e))},Jo(this),this},awaitAll:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=t,Jo(this),this}};var rv=function t(n){function e(t,e){return t=null==t?0:+t,e=null==e?1:+e,1===arguments.length?(e=t,t=0):e-=t,function(){return n()*e+t}}return e.source=t,e}(tu),iv=function t(n){function e(t,e){var r,i;return t=null==t?0:+t,e=null==e?1:+e,function(){var o;if(null!=r)o=r,r=null;else do{r=2*n()-1,o=2*n()-1,i=r*r+o*o}while(!i||i>1);return t+e*o*Math.sqrt(-2*Math.log(i)/i)}}return e.source=t,e}(tu),ov=function t(n){function e(){var t=iv.source(n).apply(this,arguments);return function(){return Math.exp(t())}}return e.source=t,e}(tu),uv=function t(n){function e(t){return function(){for(var e=0,r=0;r0?t>1?Cu(function(n){n.setTime(Math.floor(n/t)*t)},function(n,e){n.setTime(+n+e*t)},function(n,e){return(e-n)/t}):wv:null};var Mv=wv.range,Tv=6e4,Nv=6048e5,kv=Cu(function(t){t.setTime(1e3*Math.floor(t/1e3))},function(t,n){t.setTime(+t+1e3*n)},function(t,n){return(n-t)/1e3},function(t){return t.getUTCSeconds()}),Sv=kv.range,Ev=Cu(function(t){t.setTime(Math.floor(t/Tv)*Tv)},function(t,n){t.setTime(+t+n*Tv)},function(t,n){return(n-t)/Tv},function(t){return t.getMinutes()}),Av=Ev.range,Cv=Cu(function(t){var n=t.getTimezoneOffset()*Tv%36e5;n<0&&(n+=36e5),t.setTime(36e5*Math.floor((+t-n)/36e5)+n)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getHours()}),zv=Cv.range,Pv=Cu(function(t){t.setHours(0,0,0,0)},function(t,n){t.setDate(t.getDate()+n)},function(t,n){return(n-t-(n.getTimezoneOffset()-t.getTimezoneOffset())*Tv)/864e5},function(t){return t.getDate()-1}),Rv=Pv.range,Lv=zu(0),qv=zu(1),Dv=zu(2),Uv=zu(3),Ov=zu(4),Fv=zu(5),Iv=zu(6),Yv=Lv.range,Bv=qv.range,Hv=Dv.range,jv=Uv.range,Xv=Ov.range,Vv=Fv.range,$v=Iv.range,Wv=Cu(function(t){t.setDate(1),t.setHours(0,0,0,0)},function(t,n){t.setMonth(t.getMonth()+n)},function(t,n){return n.getMonth()-t.getMonth()+12*(n.getFullYear()-t.getFullYear())},function(t){return t.getMonth()}),Zv=Wv.range,Gv=Cu(function(t){t.setMonth(0,1),t.setHours(0,0,0,0)},function(t,n){t.setFullYear(t.getFullYear()+n)},function(t,n){return n.getFullYear()-t.getFullYear()},function(t){return t.getFullYear()});Gv.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Cu(function(n){n.setFullYear(Math.floor(n.getFullYear()/t)*t),n.setMonth(0,1),n.setHours(0,0,0,0)},function(n,e){n.setFullYear(n.getFullYear()+e*t)}):null};var Qv=Gv.range,Jv=Cu(function(t){t.setUTCSeconds(0,0)},function(t,n){t.setTime(+t+n*Tv)},function(t,n){return(n-t)/Tv},function(t){return t.getUTCMinutes()}),Kv=Jv.range,tg=Cu(function(t){t.setUTCMinutes(0,0,0)},function(t,n){t.setTime(+t+36e5*n)},function(t,n){return(n-t)/36e5},function(t){return t.getUTCHours()}),ng=tg.range,eg=Cu(function(t){t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCDate(t.getUTCDate()+n)},function(t,n){return(n-t)/864e5},function(t){return t.getUTCDate()-1}),rg=eg.range,ig=Pu(0),og=Pu(1),ug=Pu(2),ag=Pu(3),cg=Pu(4),sg=Pu(5),fg=Pu(6),lg=ig.range,hg=og.range,pg=ug.range,dg=ag.range,vg=cg.range,gg=sg.range,_g=fg.range,yg=Cu(function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCMonth(t.getUTCMonth()+n)},function(t,n){return n.getUTCMonth()-t.getUTCMonth()+12*(n.getUTCFullYear()-t.getUTCFullYear())},function(t){return t.getUTCMonth()}),mg=yg.range,xg=Cu(function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n)},function(t,n){return n.getUTCFullYear()-t.getUTCFullYear()},function(t){return t.getUTCFullYear()});xg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Cu(function(n){n.setUTCFullYear(Math.floor(n.getUTCFullYear()/t)*t),n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},function(n,e){n.setUTCFullYear(n.getUTCFullYear()+e*t)}):null};var bg,wg=xg.range,Mg={"-":"",_:" ",0:"0"},Tg=/^\s*\d+/,Ng=/^%/,kg=/[\\^$*+?|[\]().{}]/g;Ha({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});var Sg="%Y-%m-%dT%H:%M:%S.%LZ",Eg=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat(Sg),Ag=+new Date("2000-01-01T00:00:00.000Z")?function(t){var n=new Date(t);return isNaN(n)?null:n}:t.utcParse(Sg),Cg=1e3,zg=60*Cg,Pg=60*zg,Rg=24*Pg,Lg=7*Rg,qg=30*Rg,Dg=365*Rg,Ug=$a("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),Og=$a("393b795254a36b6ecf9c9ede6379398ca252b5cf6bcedb9c8c6d31bd9e39e7ba52e7cb94843c39ad494ad6616be7969c7b4173a55194ce6dbdde9ed6"),Fg=$a("3182bd6baed69ecae1c6dbefe6550dfd8d3cfdae6bfdd0a231a35474c476a1d99bc7e9c0756bb19e9ac8bcbddcdadaeb636363969696bdbdbdd9d9d9"),Ig=$a("1f77b4aec7e8ff7f0effbb782ca02c98df8ad62728ff98969467bdc5b0d58c564bc49c94e377c2f7b6d27f7f7fc7c7c7bcbd22dbdb8d17becf9edae5"),Yg=al($t(300,.5,0),$t(-240,.5,1)),Bg=al($t(-100,.75,.35),$t(80,1.5,.8)),Hg=al($t(260,.75,.35),$t(80,1.5,.8)),jg=$t(),Xg=Wa($a("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),Vg=Wa($a("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),$g=Wa($a("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),Wg=Wa($a("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),Zg=Math.abs,Gg=Math.atan2,Qg=Math.cos,Jg=Math.max,Kg=Math.min,t_=Math.sin,n_=Math.sqrt,e_=1e-12,r_=Math.PI,i_=r_/2,o_=2*r_;ic.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:this._context.lineTo(t,n)}}};var u_=pc(oc);hc.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,n){this._curve.point(n*Math.sin(t),n*-Math.cos(t))}};var a_=Array.prototype.slice,c_={draw:function(t,n){var e=Math.sqrt(n/r_);t.moveTo(e,0),t.arc(0,0,e,0,o_)}},s_={draw:function(t,n){var e=Math.sqrt(n/5)/2;t.moveTo(-3*e,-e),t.lineTo(-e,-e),t.lineTo(-e,-3*e),t.lineTo(e,-3*e),t.lineTo(e,-e),t.lineTo(3*e,-e),t.lineTo(3*e,e),t.lineTo(e,e),t.lineTo(e,3*e),t.lineTo(-e,3*e),t.lineTo(-e,e),t.lineTo(-3*e,e),t.closePath()}},f_=Math.sqrt(1/3),l_=2*f_,h_={draw:function(t,n){var e=Math.sqrt(n/l_),r=e*f_;t.moveTo(0,-e),t.lineTo(r,0),t.lineTo(0,e),t.lineTo(-r,0),t.closePath()}},p_=Math.sin(r_/10)/Math.sin(7*r_/10),d_=Math.sin(o_/10)*p_,v_=-Math.cos(o_/10)*p_,g_={draw:function(t,n){var e=Math.sqrt(.8908130915292852*n),r=d_*e,i=v_*e;t.moveTo(0,-e),t.lineTo(r,i);for(var o=1;o<5;++o){var u=o_*o/5,a=Math.cos(u),c=Math.sin(u);t.lineTo(c*e,-a*e),t.lineTo(a*r-c*i,c*r+a*i)}t.closePath()}},__={draw:function(t,n){var e=Math.sqrt(n),r=-e/2;t.rect(r,r,e,e)}},y_=Math.sqrt(3),m_={draw:function(t,n){var e=-Math.sqrt(n/(3*y_));t.moveTo(0,2*e),t.lineTo(-y_*e,-e),t.lineTo(y_*e,-e),t.closePath()}},x_=Math.sqrt(3)/2,b_=1/Math.sqrt(12),w_=3*(b_/2+1),M_={draw:function(t,n){var e=Math.sqrt(n/w_),r=e/2,i=e*b_,o=r,u=e*b_+e,a=-o,c=u;t.moveTo(r,i),t.lineTo(o,u),t.lineTo(a,c),t.lineTo(-.5*r-x_*i,x_*r+-.5*i),t.lineTo(-.5*o-x_*u,x_*o+-.5*u),t.lineTo(-.5*a-x_*c,x_*a+-.5*c),t.lineTo(-.5*r+x_*i,-.5*i-x_*r),t.lineTo(-.5*o+x_*u,-.5*u-x_*o),t.lineTo(-.5*a+x_*c,-.5*c-x_*a),t.closePath()}},T_=[c_,s_,h_,__,g_,m_,M_];kc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Nc(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Nc(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Sc.prototype={areaStart:Tc,areaEnd:Tc,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x2=t,this._y2=n;break;case 1:this._point=2,this._x3=t,this._y3=n;break;case 2:this._point=3,this._x4=t,this._y4=n,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+n)/6);break;default:Nc(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Ec.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var e=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+n)/6;this._line?this._context.lineTo(e,r):this._context.moveTo(e,r);break;case 3:this._point=4;default:Nc(this,t,n)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n}},Ac.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,n=this._y,e=t.length-1;if(e>0)for(var r,i=t[0],o=n[0],u=t[e]-i,a=n[e]-o,c=-1;++c<=e;)r=c/e,this._basis.point(this._beta*t[c]+(1-this._beta)*(i+r*u),this._beta*n[c]+(1-this._beta)*(o+r*a));this._x=this._y=null,this._basis.lineEnd()},point:function(t,n){this._x.push(+t),this._y.push(+n)}};var N_=function t(n){function e(t){return 1===n?new kc(t):new Ac(t,n)}return e.beta=function(n){return t(+n)},e}(.85);zc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:Cc(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2,this._x1=t,this._y1=n;break;case 2:this._point=3;default:Cc(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var k_=function t(n){function e(t){return new zc(t,n)}return e.tension=function(n){return t(+n)},e}(0);Pc.prototype={areaStart:Tc,areaEnd:Tc,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Cc(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var S_=function t(n){function e(t){return new Pc(t,n)}return e.tension=function(n){return t(+n)},e}(0);Rc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Cc(this,t,n)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var E_=function t(n){function e(t){return new Rc(t,n)}return e.tension=function(n){return t(+n)},e}(0);qc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3;default:Lc(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var A_=function t(n){function e(t){return n?new qc(t,n):new zc(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Dc.prototype={areaStart:Tc,areaEnd:Tc,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=n;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=n);break;case 2:this._point=3,this._x5=t,this._y5=n;break;default:Lc(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var C_=function t(n){function e(t){return n?new Dc(t,n):new Pc(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Uc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){if(t=+t,n=+n,this._point){var e=this._x2-t,r=this._y2-n;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(e*e+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Lc(this,t,n)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=n}};var z_=function t(n){function e(t){return n?new Uc(t,n):new Rc(t,0)}return e.alpha=function(n){return t(+n)},e}(.5);Oc.prototype={areaStart:Tc,areaEnd:Tc,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,n){t=+t,n=+n,this._point?this._context.lineTo(t,n):(this._point=1,this._context.moveTo(t,n))}},Hc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:Bc(this,this._t0,Yc(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,n){var e=NaN;if(t=+t,n=+n,t!==this._x1||n!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;break;case 2:this._point=3,Bc(this,Yc(this,e=Ic(this,t,n)),e);break;default:Bc(this,this._t0,e=Ic(this,t,n))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=n,this._t0=e}}},(jc.prototype=Object.create(Hc.prototype)).point=function(t,n){Hc.prototype.point.call(this,n,t)},Xc.prototype={moveTo:function(t,n){this._context.moveTo(n,t)},closePath:function(){this._context.closePath()},lineTo:function(t,n){this._context.lineTo(n,t)},bezierCurveTo:function(t,n,e,r,i,o){this._context.bezierCurveTo(n,t,r,e,o,i)}},Vc.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,n=this._y,e=t.length;if(e)if(this._line?this._context.lineTo(t[0],n[0]):this._context.moveTo(t[0],n[0]),2===e)this._context.lineTo(t[1],n[1]);else for(var r=$c(t),i=$c(n),o=0,u=1;u=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,n){switch(t=+t,n=+n,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,n):this._context.moveTo(t,n);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,n),this._context.lineTo(t,n);else{var e=this._x*(1-this._t)+t*this._t;this._context.lineTo(e,this._y),this._context.lineTo(e,n)}}this._x=t,this._y=n}},rs.prototype={constructor:rs,insert:function(t,n){var e,r,i;if(t){if(n.P=t,n.N=t.N,t.N&&(t.N.P=n),t.N=n,t.R){for(t=t.R;t.L;)t=t.L;t.L=n}else t.R=n;e=t}else this._?(t=as(this._),n.P=null,n.N=t,t.P=t.L=n,e=t):(n.P=n.N=null,this._=n,e=null);for(n.L=n.R=null,n.U=e,n.C=!0,t=n;e&&e.C;)e===(r=e.U).L?(i=r.R)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.R&&(os(this,e),e=(t=e).U),e.C=!1,r.C=!0,us(this,r)):(i=r.L)&&i.C?(e.C=i.C=!1,r.C=!0,t=r):(t===e.L&&(us(this,e),e=(t=e).U),e.C=!1,r.C=!0,os(this,r)),e=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var n,e,r,i=t.U,o=t.L,u=t.R;if(e=o?u?as(u):o:u,i?i.L===t?i.L=e:i.R=e:this._=e,o&&u?(r=e.C,e.C=t.C,e.L=o,o.U=e,e!==u?(i=e.U,e.U=t.U,t=e.R,i.L=t,e.R=u,u.U=e):(e.U=i,i=e,t=e.R)):(r=t.C,t=e),t&&(t.U=i),!r)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if((n=i.R).C&&(n.C=!1,i.C=!0,os(this,i),n=i.R),n.L&&n.L.C||n.R&&n.R.C){n.R&&n.R.C||(n.L.C=!1,n.C=!0,us(this,n),n=i.R),n.C=i.C,i.C=n.R.C=!1,os(this,i),t=this._;break}}else if((n=i.L).C&&(n.C=!1,i.C=!0,us(this,i),n=i.L),n.L&&n.L.C||n.R&&n.R.C){n.L&&n.L.C||(n.R.C=!1,n.C=!0,os(this,n),n=i.L),n.C=i.C,i.C=n.L.C=!1,us(this,i),t=this._;break}n.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}};var P_,R_,L_,q_,D_,U_=[],O_=[],F_=1e-6,I_=1e-12;Ns.prototype={constructor:Ns,polygons:function(){var t=this.edges;return this.cells.map(function(n){var e=n.halfedges.map(function(e){return ds(n,t[e])});return e.data=n.site.data,e})},triangles:function(){var t=[],n=this.edges;return this.cells.forEach(function(e,r){if(o=(i=e.halfedges).length)for(var i,o,u,a=e.site,c=-1,s=n[i[o-1]],f=s.left===a?s.right:s.left;++c=a)return null;var c=t-i.site[0],s=n-i.site[1],f=c*c+s*s;do{i=o.cells[r=u],u=null,i.halfedges.forEach(function(e){var r=o.edges[e],a=r.left;if(a!==i.site&&a||(a=r.right)){var c=t-a[0],s=n-a[1],l=c*c+s*s;lt?1:n>=t?0:NaN},t.deviation=u,t.extent=a,t.histogram=function(){function t(t){var i,o,u=t.length,a=new Array(u);for(i=0;il;)h.pop(),--d;var v,g=new Array(d+1);for(i=0;i<=d;++i)(v=g[i]=[]).x0=i>0?h[i-1]:s,v.x1=i=e)for(r=e;++or&&(r=e)}else for(;++o=e)for(r=e;++or&&(r=e);return r},t.mean=function(t,n){var e,r=t.length,o=r,u=-1,a=0;if(null==n)for(;++u=o.length)return null!=e&&n.sort(e),null!=r?r(n):n;for(var c,s,f,l=-1,h=n.length,p=o[i++],d=se(),v=u();++lo.length)return t;var i,a=u[e-1];return null!=r&&e>=o.length?i=t.entries():(i=[],t.each(function(t,r){i.push({key:r,values:n(t,e)})})),null!=a?i.sort(function(t,n){return a(t.key,n.key)}):i}var e,r,i,o=[],u=[];return i={object:function(n){return t(n,0,fe,le)},map:function(n){return t(n,0,he,pe)},entries:function(e){return n(t(e,0,he,pe),0)},key:function(t){return o.push(t),i},sortKeys:function(t){return u[o.length-1]=t,i},sortValues:function(t){return e=t,i},rollup:function(t){return r=t,i}}},t.set=ve,t.map=se,t.keys=function(t){var n=[];for(var e in t)n.push(e);return n},t.values=function(t){var n=[];for(var e in t)n.push(t[e]);return n},t.entries=function(t){var n=[];for(var e in t)n.push({key:e,value:t[e]});return n},t.color=Et,t.rgb=Pt,t.hsl=qt,t.lab=Ft,t.hcl=Xt,t.cubehelix=$t,t.dispatch=N,t.drag=function(){function n(t){t.on("mousedown.drag",e).filter(g).on("touchstart.drag",o).on("touchmove.drag",u).on("touchend.drag touchcancel.drag",a).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(){if(!h&&p.apply(this,arguments)){var n=c("mouse",d.apply(this,arguments),pt,this,arguments);n&&(ct(t.event.view).on("mousemove.drag",r,!0).on("mouseup.drag",i,!0),_t(t.event.view),vt(),l=!1,s=t.event.clientX,f=t.event.clientY,n("start"))}}function r(){if(gt(),!l){var n=t.event.clientX-s,e=t.event.clientY-f;l=n*n+e*e>x}_.mouse("drag")}function i(){ct(t.event.view).on("mousemove.drag mouseup.drag",null),yt(t.event.view,l),gt(),_.mouse("end")}function o(){if(p.apply(this,arguments)){var n,e,r=t.event.changedTouches,i=d.apply(this,arguments),o=r.length;for(n=0;nc+p||is+p||or.index){var d=c-a.x-a.vx,v=s-a.y-a.vy,g=d*d+v*v;gt.r&&(t.r=t[n].r)}function r(){if(i){var n,e,r=i.length;for(o=new Array(r),n=0;n=f)){(t.data!==o||t.next)&&(0===i&&(i=me(),p+=i*i),0===c&&(c=me(),p+=c*c),p1?(null==n?l.remove(t):l.set(t,i(n)),o):l.get(t)},find:function(n,e,r){var i,o,u,a,c,s=0,f=t.length;for(null==r?r=1/0:r*=r,s=0;s1?(p.on(t,n),o):p.on(t)}}},t.forceX=function(t){function n(t){for(var n,e=0,u=r.length;emr(r[0],r[1])&&(r[1]=i[1]),mr(i[0],r[1])>mr(r[0],r[1])&&(r[0]=i[0])):o.push(r=i);for(u=-1/0,n=0,r=o[e=o.length-1];n<=e;r=i,++n)i=o[n],(a=mr(r[1],i[0]))>u&&(u=a,Gh=i[0],Jh=r[1])}return ip=op=null,Gh===1/0||Qh===1/0?[[NaN,NaN],[NaN,NaN]]:[[Gh,Qh],[Jh,Kh]]},t.geoCentroid=function(t){up=ap=cp=sp=fp=lp=hp=pp=dp=vp=gp=0,tr(t,Gp);var n=dp,e=vp,r=gp,i=n*n+e*e+r*r;return i=.12&&i<.234&&r>=-.425&&r<-.214?s:i>=.166&&i<.234&&r>=-.214&&r<-.115?f:c).invert(t)},t.stream=function(t){return e&&r===t?e:e=function(t){var n=t.length;return{point:function(e,r){for(var i=-1;++i2?t[2]+90:90]):(t=e(),[t[0],t[1],t[2]-90])},e([0,0,90]).scale(159.155)},t.geoTransverseMercatorRaw=oo,t.geoRotation=Fr,t.geoStream=tr,t.geoTransform=function(t){return{stream:Pi(t)}},t.cluster=function(){function t(t){var o,u=0;t.eachAfter(function(t){var e=t.children;e?(t.x=function(t){return t.reduce(ao,0)/t.length}(e),t.y=function(t){return 1+t.reduce(co,0)}(e)):(t.x=o?u+=n(t,o):0,t.y=0,o=t)});var a=function(t){for(var n;n=t.children;)t=n[0];return t}(t),c=function(t){for(var n;n=t.children;)t=n[n.length-1];return t}(t),s=a.x-n(a,c)/2,f=c.x+n(c,a)/2;return t.eachAfter(i?function(n){n.x=(n.x-t.x)*e,n.y=(t.y-n.y)*r}:function(n){n.x=(n.x-s)/(f-s)*e,n.y=(1-(t.y?n.y/t.y:1))*r})}var n=uo,e=1,r=1,i=!1;return t.separation=function(e){return arguments.length?(n=e,t):n},t.size=function(n){return arguments.length?(i=!1,e=+n[0],r=+n[1],t):i?null:[e,r]},t.nodeSize=function(n){return arguments.length?(i=!0,e=+n[0],r=+n[1],t):i?[e,r]:null},t},t.hierarchy=fo,t.pack=function(){function t(t){return t.x=e/2,t.y=r/2,n?t.eachBefore(zo(n)).eachAfter(Po(i,.5)).eachBefore(Ro(1)):t.eachBefore(zo(Co)).eachAfter(Po(Eo,1)).eachAfter(Po(i,t.r/Math.min(e,r))).eachBefore(Ro(Math.min(e,r)/(2*t.r))),t}var n=null,e=1,r=1,i=Eo;return t.radius=function(e){return arguments.length?(n=function(t){return null==t?null:So(t)}(e),t):n},t.size=function(n){return arguments.length?(e=+n[0],r=+n[1],t):[e,r]},t.padding=function(n){return arguments.length?(i="function"==typeof n?n:Ao(+n),t):i},t},t.packSiblings=function(t){return ko(t),t},t.packEnclose=go,t.partition=function(){function t(t){var o=t.height+1;return t.x0=t.y0=r,t.x1=n,t.y1=e/o,t.eachBefore(function(t,n){return function(e){e.children&&qo(e,e.x0,t*(e.depth+1)/n,e.x1,t*(e.depth+2)/n);var i=e.x0,o=e.y0,u=e.x1-r,a=e.y1-r;u0)throw new Error("cycle");return o}var n=Do,e=Uo;return t.id=function(e){return arguments.length?(n=So(e),t):n},t.parentId=function(n){return arguments.length?(e=So(n),t):e},t},t.tree=function(){function t(t){var c=function(t){for(var n,e,r,i,o,u=new Ho(t,0),a=[u];n=a.pop();)if(r=n._.children)for(n.children=new Array(o=r.length),i=o-1;i>=0;--i)a.push(e=n.children[i]=new Ho(r[i],i)),e.parent=n;return(u.parent=new Ho(null,0)).children=[u],u}(t);if(c.eachAfter(n),c.parent.m=-c.z,c.eachBefore(e),a)t.eachBefore(r);else{var s=t,f=t,l=t;t.eachBefore(function(t){t.xf.x&&(f=t),t.depth>l.depth&&(l=t)});var h=s===f?1:i(s,f)/2,p=h-s.x,d=o/(f.x+h+p),v=u/(l.depth||1);t.eachBefore(function(t){t.x=(t.x+p)*d,t.y=t.depth*v})}return t}function n(t){var n=t.children,e=t.parent.children,r=t.i?e[t.i-1]:null;if(n){(function(t){for(var n,e=0,r=0,i=t.children,o=i.length;--o>=0;)(n=i[o]).z+=e,n.m+=e,e+=n.s+(r+=n.c)})(t);var o=(n[0].z+n[n.length-1].z)/2;r?(t.z=r.z+i(t._,r._),t.m=t.z-o):t.z=o}else r&&(t.z=r.z+i(t._,r._));t.parent.A=function(t,n,e){if(n){for(var r,o=t,u=t,a=n,c=o.parent.children[0],s=o.m,f=u.m,l=a.m,h=c.m;a=Io(a),o=Fo(o),a&&o;)c=Fo(c),(u=Io(u)).a=t,(r=a.z+l-o.z-s+i(a._,o._))>0&&(Yo(Bo(a,t,e),t,r),s+=r,f+=r),l+=a.m,s+=o.m,h+=c.m,f+=u.m;a&&!Io(u)&&(u.t=a,u.m+=l-f),o&&!Fo(c)&&(c.t=o,c.m+=s-h,e=t)}return e}(t,r,t.parent.A||e[0])}function e(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function r(t){t.x*=o,t.y=t.depth*u}var i=Oo,o=1,u=1,a=null;return t.separation=function(n){return arguments.length?(i=n,t):i},t.size=function(n){return arguments.length?(a=!1,o=+n[0],u=+n[1],t):a?null:[o,u]},t.nodeSize=function(n){return arguments.length?(a=!0,o=+n[0],u=+n[1],t):a?[o,u]:null},t},t.treemap=function(){function t(t){return t.x0=t.y0=0,t.x1=i,t.y1=o,t.eachBefore(n),u=[0],r&&t.eachBefore(Lo),t}function n(t){var n=u[t.depth],r=t.x0+n,i=t.y0+n,o=t.x1-n,h=t.y1-n;o=n-1){var s=c[t];return s.x0=r,s.y0=i,s.x1=u,void(s.y1=a)}for(var l=f[t],h=e/2+l,p=t+1,d=n-1;p>>1;f[v]a-i){var y=(r*_+u*g)/e;o(t,p,g,r,i,y,a),o(p,n,_,y,i,u,a)}else{var m=(i*_+a*g)/e;o(t,p,g,r,i,u,m),o(p,n,_,r,m,u,a)}}var u,a,c=t.children,s=c.length,f=new Array(s+1);for(f[0]=a=u=0;u=0;--n)s.push(t[r[o[n]][2]]);for(n=+a;na!=s>a&&u<(c-e)*(a-r)/(s-r)+e&&(f=!f),c=e,s=r;return f},t.polygonLength=function(t){for(var n,e,r=-1,i=t.length,o=t[i-1],u=o[0],a=o[1],c=0;++r1)&&(t-=Math.floor(t));var n=Math.abs(t-.5);return jg.h=360*t-100,jg.s=1.5-1.5*n,jg.l=.8-.9*n,jg+""},t.interpolateWarm=Bg,t.interpolateCool=Hg,t.interpolateViridis=Xg,t.interpolateMagma=Vg,t.interpolateInferno=$g,t.interpolatePlasma=Wg,t.scaleSequential=Za,t.create=function(t){return ct(A(t).call(document.documentElement))},t.creator=A,t.local=st,t.matcher=of,t.mouse=pt,t.namespace=E,t.namespaces=tf,t.clientPoint=ht,t.select=ct,t.selectAll=function(t){return"string"==typeof t?new ut([document.querySelectorAll(t)],[document.documentElement]):new ut([null==t?[]:t],cf)},t.selection=at,t.selector=z,t.selectorAll=R,t.style=I,t.touch=dt,t.touches=function(t,n){null==n&&(n=lt().touches);for(var e=0,r=n?n.length:0,i=new Array(r);eh;if(c||(c=t=ee()),le_)if(d>o_-e_)c.moveTo(l*Qg(h),l*t_(h)),c.arc(0,0,l,h,p,!v),f>e_&&(c.moveTo(f*Qg(p),f*t_(p)),c.arc(0,0,f,p,h,v));else{var g,_,y=h,m=p,x=h,b=p,w=d,M=d,T=a.apply(this,arguments)/2,N=T>e_&&(i?+i.apply(this,arguments):n_(f*f+l*l)),k=Kg(Zg(l-f)/2,+r.apply(this,arguments)),S=k,E=k;if(N>e_){var A=Qa(N/f*t_(T)),C=Qa(N/l*t_(T));(w-=2*A)>e_?(A*=v?1:-1,x+=A,b-=A):(w=0,x=b=(h+p)/2),(M-=2*C)>e_?(C*=v?1:-1,y+=C,m-=C):(M=0,y=m=(h+p)/2)}var z=l*Qg(y),P=l*t_(y),R=f*Qg(b),L=f*t_(b);if(k>e_){var q=l*Qg(m),D=l*t_(m),U=f*Qg(x),O=f*t_(x);if(de_?function(t,n,e,r,i,o,u,a){var c=e-t,s=r-n,f=u-i,l=a-o,h=(f*(n-o)-l*(t-i))/(l*c-f*s);return[t+h*c,n+h*s]}(z,P,U,O,q,D,R,L):[R,L],I=z-F[0],Y=P-F[1],B=q-F[0],H=D-F[1],j=1/t_(function(t){return t>1?0:t<-1?r_:Math.acos(t)}((I*B+Y*H)/(n_(I*I+Y*Y)*n_(B*B+H*H)))/2),X=n_(F[0]*F[0]+F[1]*F[1]);S=Kg(k,(f-X)/(j-1)),E=Kg(k,(l-X)/(j+1))}}M>e_?E>e_?(g=rc(U,O,z,P,l,E,v),_=rc(q,D,R,L,l,E,v),c.moveTo(g.cx+g.x01,g.cy+g.y01),Ee_&&w>e_?S>e_?(g=rc(R,L,q,D,f,-S,v),_=rc(z,P,U,O,f,-S,v),c.lineTo(g.cx+g.x01,g.cy+g.y01),S0&&(p+=l);for(null!=e?d.sort(function(t,n){return e(v[t],v[n])}):null!=r&&d.sort(function(n,e){return r(t[n],t[e])}),a=0,s=p?(_-h*m)/p:0;a0?l*s:0)+m,v[c]={data:t[c],index:a,value:l,startAngle:g,endAngle:f,padAngle:y};return v}var n=lc,e=fc,r=null,i=Ga(0),o=Ga(o_),u=Ga(0);return t.value=function(e){return arguments.length?(n="function"==typeof e?e:Ga(+e),t):n},t.sortValues=function(n){return arguments.length?(e=n,r=null,t):e},t.sort=function(n){return arguments.length?(r=n,e=null,t):r},t.startAngle=function(n){return arguments.length?(i="function"==typeof n?n:Ga(+n),t):i},t.endAngle=function(n){return arguments.length?(o="function"==typeof n?n:Ga(+n),t):o},t.padAngle=function(n){return arguments.length?(u="function"==typeof n?n:Ga(+n),t):u},t},t.areaRadial=gc,t.radialArea=gc,t.lineRadial=vc,t.radialLine=vc,t.pointRadial=_c,t.linkHorizontal=function(){return xc(bc)},t.linkVertical=function(){return xc(wc)},t.linkRadial=function(){var t=xc(Mc);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.symbol=function(){function t(){var t;if(r||(r=t=ee()),n.apply(this,arguments).draw(r,+e.apply(this,arguments)),t)return r=null,t+""||null}var n=Ga(c_),e=Ga(64),r=null;return t.type=function(e){return arguments.length?(n="function"==typeof e?e:Ga(e),t):n},t.size=function(n){return arguments.length?(e="function"==typeof n?n:Ga(+n),t):e},t.context=function(n){return arguments.length?(r=null==n?null:n,t):r},t},t.symbols=T_,t.symbolCircle=c_,t.symbolCross=s_,t.symbolDiamond=h_,t.symbolSquare=__,t.symbolStar=g_,t.symbolTriangle=m_,t.symbolWye=M_,t.curveBasisClosed=function(t){return new Sc(t)},t.curveBasisOpen=function(t){return new Ec(t)},t.curveBasis=function(t){return new kc(t)},t.curveBundle=N_,t.curveCardinalClosed=S_,t.curveCardinalOpen=E_,t.curveCardinal=k_,t.curveCatmullRomClosed=C_,t.curveCatmullRomOpen=z_,t.curveCatmullRom=A_,t.curveLinearClosed=function(t){return new Oc(t)},t.curveLinear=oc,t.curveMonotoneX=function(t){return new Hc(t)},t.curveMonotoneY=function(t){return new jc(t)},t.curveNatural=function(t){return new Vc(t)},t.curveStep=function(t){return new Wc(t,.5)},t.curveStepAfter=function(t){return new Wc(t,1)},t.curveStepBefore=function(t){return new Wc(t,0)},t.stack=function(){function t(t){var o,u,a=n.apply(this,arguments),c=t.length,s=a.length,f=new Array(s);for(o=0;o0){for(var e,r,i,o=0,u=t[0].length;o1)for(var e,r,i,o,u,a,c=0,s=t[n[0]].length;c=0?(r[0]=o,r[1]=o+=i):i<0?(r[1]=u,r[0]=u+=i):r[0]=o},t.stackOffsetNone=Zc,t.stackOffsetSilhouette=function(t,n){if((e=t.length)>0){for(var e,r=0,i=t[n[0]],o=i.length;r0&&(r=(e=t[n[0]]).length)>0){for(var e,r,i,o=0,u=1;uxl&&e.name===n)return new qn([[t]],Jl,n,+r)}return null},t.interrupt=Pn,t.voronoi=function(){function t(t){return new Ns(t.map(function(r,i){var o=[Math.round(n(r,i,t)/F_)*F_,Math.round(e(r,i,t)/F_)*F_];return o.index=i,o.data=r,o}),r)}var n=ns,e=es,r=null;return t.polygons=function(n){return t(n).polygons()},t.links=function(n){return t(n).links()},t.triangles=function(n){return t(n).triangles()},t.x=function(e){return arguments.length?(n="function"==typeof e?e:ts(+e),t):n},t.y=function(n){return arguments.length?(e="function"==typeof n?n:ts(+n),t):e},t.extent=function(n){return arguments.length?(r=null==n?null:[[+n[0][0],+n[0][1]],[+n[1][0],+n[1][1]]],t):r&&[[r[0][0],r[0][1]],[r[1][0],r[1][1]]]},t.size=function(n){return arguments.length?(r=null==n?null:[[0,0],[+n[0],+n[1]]],t):r&&[r[1][0]-r[0][0],r[1][1]-r[0][1]]},t},t.zoom=function(){function n(t){t.property("__zoom",Rs).on("wheel.zoom",c).on("mousedown.zoom",s).on("dblclick.zoom",f).filter(x).on("touchstart.zoom",l).on("touchmove.zoom",h).on("touchend.zoom touchcancel.zoom",p).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function e(t,n){return(n=Math.max(b[0],Math.min(b[1],n)))===t.k?t:new Ss(n,t.x,t.y)}function r(t,n,e){var r=n[0]-e[0]*t.k,i=n[1]-e[1]*t.k;return r===t.x&&i===t.y?t:new Ss(t.k,r,i)}function i(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function o(t,n,e){t.on("start.zoom",function(){u(this,arguments).start()}).on("interrupt.zoom end.zoom",function(){u(this,arguments).end()}).tween("zoom",function(){var t=arguments,r=u(this,t),o=_.apply(this,t),a=e||i(o),c=Math.max(o[1][0]-o[0][0],o[1][1]-o[0][1]),s=this.__zoom,f="function"==typeof n?n.apply(this,t):n,l=T(s.invert(a).concat(c/s.k),f.invert(a).concat(c/f.k));return function(t){if(1===t)t=f;else{var n=l(t),e=c/n[2];t=new Ss(e,a[0]-n[0]*e,a[1]-n[1]*e)}r.zoom(null,t)}})}function u(t,n){for(var e,r=0,i=k.length;rC}n.zoom("mouse",y(r(n.that.__zoom,n.mouse[0]=pt(n.that),n.mouse[1]),n.extent,w))},!0).on("mouseup.zoom",function(){e.on("mousemove.zoom mouseup.zoom",null),yt(t.event.view,n.moved),Cs(),n.end()},!0),i=pt(this),o=t.event.clientX,a=t.event.clientY;_t(t.event.view),As(),n.mouse=[i,this.__zoom.invert(i)],Pn(this),n.start()}}function f(){if(g.apply(this,arguments)){var i=this.__zoom,u=pt(this),a=i.invert(u),c=i.k*(t.event.shiftKey?.5:2),s=y(r(e(i,c),u,a),_.apply(this,arguments),w);Cs(),M>0?ct(this).transition().duration(M).call(o,s,u):ct(this).call(n.transform,s)}}function l(){if(g.apply(this,arguments)){var n,e,r,i,o=u(this,arguments),a=t.event.changedTouches,c=a.length;for(As(),e=0;e=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"label"in b&&b.disabled===a||"form"in b&&b.disabled===a||"form"in b&&b.disabled===!1&&(b.isDisabled===a||b.isDisabled!==!a&&("label"in b||!ea(b))!==a)}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(_,aa),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=V.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(_,aa),$.test(j[0].type)&&qa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&sa(j),!a)return G.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||$.test(a)&&qa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext,B=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,C=/^.[^:#\[\.,]*$/;function D(a,b,c){if(r.isFunction(b))return r.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return r.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(C.test(b))return r.filter(b,a,c);b=r.filter(b,a)}return r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType})}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(D(this,a||[],!1))},not:function(a){return this.pushStack(D(this,a||[],!0))},is:function(a){return!!D(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var E,F=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,G=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||E,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:F.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),B.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};G.prototype=r.fn,E=r(d);var H=/^(?:parents|prev(?:Until|All))/,I={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function J(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return J(a,"nextSibling")},prev:function(a){return J(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return a.contentDocument||r.merge([],a.childNodes)}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(I[a]||r.uniqueSort(e),H.test(a)&&e.reverse()),this.pushStack(e)}});var K=/\S+/g;function L(a){var b={};return r.each(a.match(K)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?L(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function M(a){return a}function N(a){throw a}function O(a,b,c){var d;try{a&&r.isFunction(d=a.promise)?d.call(a).done(b).fail(c):a&&r.isFunction(d=a.then)?d.call(a,b,c):b.call(void 0,a)}catch(a){c.call(void 0,a)}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==N&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:M,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:M)),c[2][3].add(g(0,a,r.isFunction(d)?d:N))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(O(a,g.done(h(c)).resolve,g.reject),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)O(e[c],h(c),g.reject);return g.promise()}});var P=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&P.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var Q=r.Deferred();r.fn.ready=function(a){return Q.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,holdReady:function(a){a?r.readyWait++:r.ready(!0)},ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||Q.resolveWith(d,[r]))}}),r.ready.then=Q.then;function R(){d.removeEventListener("DOMContentLoaded",R),a.removeEventListener("load",R),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",R),a.addEventListener("load",R));var S=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)S(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0, +r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){W.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=V.get(a,b),c&&(!d||r.isArray(c)?d=V.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return V.get(a,c)||V.access(a,c,{empty:r.Callbacks("once memory").add(function(){V.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,ja=/^$|\/(?:java|ecma)script/i,ka={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ka.optgroup=ka.option,ka.tbody=ka.tfoot=ka.colgroup=ka.caption=ka.thead,ka.th=ka.td;function la(a,b){var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&r.nodeName(a,b)?r.merge([a],c):c}function ma(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=la(l.appendChild(f),"script"),j&&ma(g),c){k=0;while(f=g[k++])ja.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var pa=d.documentElement,qa=/^key/,ra=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,sa=/^([^.]*)(?:\.(.+)|)/;function ta(){return!0}function ua(){return!1}function va(){try{return d.activeElement}catch(a){}}function wa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)wa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ua;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(pa,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(K)||[""],j=b.length;while(j--)h=sa.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.hasData(a)&&V.get(a);if(q&&(i=q.events)){b=(b||"").match(K)||[""],j=b.length;while(j--)if(h=sa.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&V.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(V.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c-1:r.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h\x20\t\r\n\f]*)[^>]*)\/>/gi,ya=/\s*$/g;function Ca(a,b){return r.nodeName(a,"table")&&r.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a:a}function Da(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Ea(a){var b=Aa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(V.hasData(a)&&(f=V.access(a),g=V.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&za.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(m&&(e=oa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(la(e,"script"),Da),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=la(h),f=la(a),d=0,e=f.length;d0&&ma(g,!i&&la(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(T(c)){if(b=c[V.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[V.expando]=void 0}c[W.expando]&&(c[W.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return S(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(la(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return S(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!ya.test(a)&&!ka[(ia.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function Xa(a,b,c,d,e){return new Xa.prototype.init(a,b,c,d,e)}r.Tween=Xa,Xa.prototype={constructor:Xa,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=Xa.propHooks[this.prop];return a&&a.get?a.get(this):Xa.propHooks._default.get(this)},run:function(a){var b,c=Xa.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Xa.propHooks._default.set(this),this}},Xa.prototype.init.prototype=Xa.prototype,Xa.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},Xa.propHooks.scrollTop=Xa.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=Xa.prototype.init,r.fx.step={};var Ya,Za,$a=/^(?:toggle|show|hide)$/,_a=/queueHooks$/;function ab(){Za&&(a.requestAnimationFrame(ab),r.fx.tick())}function bb(){return a.setTimeout(function(){Ya=void 0}),Ya=r.now()}function cb(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=aa[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function db(a,b,c){for(var d,e=(gb.tweeners[b]||[]).concat(gb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?hb:void 0)),void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&r.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(K); +if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),hb={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=ib[b]||r.find.attr;ib[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=ib[g],ib[g]=e,e=null!=c(a,b,d)?g:null,ib[g]=f),e}});var jb=/^(?:input|select|textarea|button)$/i,kb=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return S(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):jb.test(a.nodeName)||kb.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});var lb=/[\t\r\n\f]/g;function mb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,mb(this)))});if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=mb(c),d=1===c.nodeType&&(" "+e+" ").replace(lb," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=r.trim(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,mb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=mb(c),d=1===c.nodeType&&(" "+e+" ").replace(lb," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=r.trim(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,mb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(K)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=mb(this),b&&V.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":V.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+mb(c)+" ").replace(lb," ").indexOf(b)>-1)return!0;return!1}});var nb=/\r/g,ob=/[\x20\t\r\n\f]+/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":r.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(nb,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:r.trim(r.text(a)).replace(ob," ")}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type,g=f?null:[],h=f?e+1:d.length,i=e<0?h:f?e:0;i-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(r.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var pb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!pb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,pb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(V.get(h,"events")||{})[b.type]&&V.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&T(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!T(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=V.access(d,b);e||d.addEventListener(a,c,!0),V.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=V.access(d,b)-1;e?V.access(d,b,e):(d.removeEventListener(a,c,!0),V.remove(d,b))}}});var qb=a.location,rb=r.now(),sb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var tb=/\[\]$/,ub=/\r?\n/g,vb=/^(?:submit|button|image|reset|file)$/i,wb=/^(?:input|select|textarea|keygen)/i;function xb(a,b,c,d){var e;if(r.isArray(b))r.each(b,function(b,e){c||tb.test(a)?d(a,e):xb(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)xb(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(r.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)xb(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&wb.test(this.nodeName)&&!vb.test(a)&&(this.checked||!ha.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:r.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(ub,"\r\n")}}):{name:b.name,value:c.replace(ub,"\r\n")}}).get()}});var yb=/%20/g,zb=/#.*$/,Ab=/([?&])_=[^&]*/,Bb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Cb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Db=/^(?:GET|HEAD)$/,Eb=/^\/\//,Fb={},Gb={},Hb="*/".concat("*"),Ib=d.createElement("a");Ib.href=qb.href;function Jb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(K)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Kb(a,b,c,d){var e={},f=a===Gb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Lb(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Mb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Nb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:qb.href,type:"GET",isLocal:Cb.test(qb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Hb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Lb(Lb(a,r.ajaxSettings),b):Lb(r.ajaxSettings,a)},ajaxPrefilter:Jb(Fb),ajaxTransport:Jb(Gb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Bb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||qb.href)+"").replace(Eb,qb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(K)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Ib.protocol+"//"+Ib.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Kb(Fb,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Db.test(o.type),f=o.url.replace(zb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(yb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(sb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Ab,""),n=(sb.test(f)?"&":"?")+"_="+rb++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Hb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Kb(Gb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Mb(o,y,d)),v=Nb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Ob={0:200,1223:204},Pb=r.ajaxSettings.xhr();o.cors=!!Pb&&"withCredentials"in Pb,o.ajax=Pb=!!Pb,r.ajaxTransport(function(b){var c,d;if(o.cors||Pb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Ob[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r(" diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/auto-time-formatting.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/auto-time-formatting.htm new file mode 100644 index 0000000..af132dd --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/auto-time-formatting.htm @@ -0,0 +1,296 @@ +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+ +
function fake_data(length, seconds) {
+    var d = new Date();
+    var v = 100000;
+    var data=[];
+
+    for (var i = 0; i < length; i++) {
+        v += (Math.random() - 0.5) * 10000;
+        data.push({date: MG.clone(d), value: v});
+        d = new Date(d.getTime() + seconds * 1000);
+    }
+    return data;
+}
+
+function fake_days(length) {
+    var d = new Date();
+    var v = 100000;
+
+    var data = [];
+    for (var i = 0; i < length; i++) {
+        v += (Math.random() - 0.5) * 10000;
+        if (v < 0) v = 0;
+        data.push({date: MG.clone(d), value: v});
+        d.setDate(d.getDate() + 1);
+    }
+    return data;
+}
+
+function fake_years(length) {
+    var y = 2015;
+    var d = new Date(y,0,1);
+    out = [];
+    v = 100000;
+    for (var i = 0; i < length; i++) {
+        v += (Math.random()-.5) * 10000;
+        out.push({value:v, date: MG.clone(d)});
+        y -=1;
+        d = new Date(y,0,1);
+    }
+    out.reverse();
+    return out;
+}
+
+
+var less_than_a_minute = fake_data(25, 1);
+var less_than_a_day = fake_data(25,60 * 20);
+var a_few_days = fake_data(75,60 * 60);
+var many_days = fake_days(60);
+var many_many_many_days = fake_days(365*2);
+var a_few_years = fake_days(365*4);
+
+MG.data_graphic({
+    title: "European Clock",
+    description: 'By setting european_clock to true, you can default to European-style time. This is at the moment experimental, and the formatting may change.',
+    data: less_than_a_minute,
+    target: '#european',
+    european_clock: true,
+    width: 600,
+    height: 200,
+    right: 40
+});
+
+MG.data_graphic({
+    title: "Less Than A Minute",
+    data: less_than_a_minute,
+    target: '#time1',
+    width: 600,
+    height: 200,
+    right: 40
+});
+
+MG.data_graphic({
+    title: "Less Than A Day",
+    data: less_than_a_day,
+    target: '#time2',
+    width: 600,
+    height: 200,
+    right: 40
+});
+
+MG.data_graphic({
+    title: "A Few Days",
+    data: a_few_days,
+    target: '#time3',
+    width: 600,
+    height: 200,
+    right: 40
+});
+
+MG.data_graphic({
+    title: "Over A Large Span of Days",
+    data: many_days,
+    target: '#time4',
+    width: 600,
+    height: 200,
+    right: 40
+});
+
+MG.data_graphic({
+    title: "Over Many Months",
+    data: many_many_many_days,
+    target: '#many-months',
+    width: 600,
+    height: 200,
+    right: 40
+});
+
+MG.data_graphic({
+    title: "Over A Few Years",
+    data: a_few_years,
+    target: '#a-few-years',
+    width: 600,
+    height: 200,
+    right: 40
+});
+
+MG.data_graphic({
+    title: "Over Centuries",
+    data: fake_years(300),
+    target: '#centuries',
+    width: 600,
+    height: 200,
+    right: 40
+});
+ +
+
+ + +
+
+
+
+
+
+
+ +
MG.data_graphic({
+    title: "European Clock",
+    description: 'By setting european_clock to true, you can default to European-style time. This is at the moment experimental, and the formatting may change.',
+    data: less_than_a_minute,
+    target: '#european',
+    european_clock: true,
+    width: 600,
+    height: 200,
+    right: 40
+});
+                
+ +
+
+ + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/axes.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/axes.htm new file mode 100644 index 0000000..375120a --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/axes.htm @@ -0,0 +1,486 @@ +
+
+
+ + +
d3.json('data/xnotdate.json', function(data) {
+    MG.data_graphic({
+        title: "Axis Labels",
+        description: "A graphic where we're not plotting dates on the x-axis and where the axes include labels and the line animates on load. We've also enabled extended ticks along the y-axis.",
+        data: data,
+        animate_on_load: true,
+        area: false,
+        width: 600,
+        height: 240,
+        right: 40,
+        left: 90,
+        bottom: 50,
+        y_extended_ticks: true,
+        target: '#xnotdate',
+        x_accessor: 'males',
+        y_accessor: 'females',
+        x_label: 'males',
+        y_label: 'females',
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/some_percentage.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Some Percentages",
+        description: "Here is an example that shows percentages.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        format: 'percentage',
+        target: '#percentage'
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/some_currency.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Some Currency",
+        description: "Here is an example that uses custom units for currency.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#currency',
+        yax_units: '$'
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/log.json', function(data) {
+    data = [data];
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Log Scale",
+        description: "You can change the y-axis' scale to logarithmic by setting y_scale_type to log.",
+        data: data,
+        y_scale_type: 'log',
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#log1'
+    });
+});
+ +
+
+ +
+
+
+
+
+
+
+ data 1, + data 2 +
+ +
d3.json('data/fake_users1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "No X Axis",
+        description: "You can hide either axis by setting x_axis or y_axis to false.",
+        data: data,
+        decimals: 0,
+        width: 600,
+        height: 200,
+        right: 40,
+        xax_count: 4,
+        target: '#hidden1',
+        area: false,
+        x_axis: false,
+    });
+});
+
+d3.json('data/brief-1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "No Y Axis",
+        description: "You can hide either axis by setting x_axis or y_axis to false.",
+        data: data,
+        decimals: 0,
+        width: 600,
+        height: 200,
+        right: 20,
+        xax_count: 4,
+        target: '#hidden2',
+        area: false,
+        y_axis: false
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/fake_users1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Rug Plots",
+        description: "You can set rug plots either axis by setting x_rug or y_rug to true.",
+        data: data,
+        decimals: 0,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#y_rug',
+        area: false,
+        y_rug: true
+    });
+});
+ +
+
+ + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+ data 1, + data 2 +
+ +
d3.json('data/brief-1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    var position = [['left', 'top'],['right', 'top'], ['left', 'bottom'], ['right', 'bottom']];
+    position.forEach(function(pos,i) {
+        console.log(pos,i)
+        var i = i+1;
+        
+        MG.data_graphic({
+            title: "Axis Positions: " + pos[0] +', ' + pos[1],
+            description: "Set x_axis_position: " + pos[1] + " and x_axis_position: " + pos[0] +".",
+            x_axis_position: pos[1],
+            y_axis_position: pos[0],
+            data: data,
+            decimals: 0,
+            left: pos[0] === 'right' ? 20 : 50,
+            right: pos[0] === 'left' ? 20 : 50,
+            top: pos[1] === 'bottom' ? 50 : 50,
+            bottom: pos[1] === 'top' ? 25 : 50,
+            target: '#axis-pos-'+i,
+            area: false
+        });      
+    })
+});
+ +
+
+ + + + + + + + + + + + +
+
+
+
+
+
+
+
+ data 1, + data 2 +
+ +
d3.json('data/neg1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Negative Values 1",
+        description: "MG defaults to 0 on the y-axis as min if there are no negative numbers. If there are negatives, should provide some buffer below.",
+        data: data,
+        width: 295,
+        height: 220,
+        right: 10,
+        target: '#neg1'
+    });
+
+    var data2 = MG.clone(data).map(function(d) {
+        d.value = d.value + 550;
+        return d;
+    });
+
+    MG.data_graphic({
+        title: "Y-Axis Not Zero",
+        data: data2,
+        width: 295,
+        height: 220,
+        right: 10,
+        min_y_from_data: true,
+        yax_units: '$',
+        target: '#y-axis-not-zero',
+        x_accessor: 'date',
+        y_accessor: 'value'
+    });
+});
+
+d3.json('data/neg2.json', function(data) {
+    MG.data_graphic({
+        title: "Negative Values 2",
+        data: data,
+        width: 295,
+        height: 220,
+        right: 10,
+        target: '#neg2',
+        x_accessor: 'subject',
+        y_accessor: 'measure'
+    });
+});
+ +
+
+ + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/brushing_zooming.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/brushing_zooming.htm new file mode 100644 index 0000000..e23e35d --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/brushing_zooming.htm @@ -0,0 +1,166 @@ +
+
+
+
+
+
+
+
+ + +
d3.json('data/fake_users2.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+    MG.data_graphic({
+        title: "Basic Brushing & Zooming",
+        description: "This is a simple example of brushing and zooming. You can set 'brush' as 'xy', 'x', 'y' to specify the axis(es) that may be brushed.",
+        data: data,
+        top: 70,
+        width: 600,
+        height: 240,
+        right: 40,
+        missing_is_hidden: true,
+        target: '#basic_brushing',
+        brush: 'xy',
+    });
+});
+
+d3.json('data/points1.json', function(data) {
+    MG.data_graphic({
+        title: "Point Chart Brushing",
+        description: "Brushing and zooming also works for point charts.",
+        data: data,
+        chart_type: 'point',
+        width: 600,
+        height: 240,
+        right: 40,
+        target: '#point_chart_brushing',
+        x_accessor: 'x',
+        y_accessor: 'y',
+        y_rug: true,
+        brush: 'xy',
+    });
+});
+ +
+
+ +
+
+
+
+
+
+
+
+ + +
d3.json('data/fake_users2.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+    const main = {
+        title: "Overview Plot",
+        description: "This is a simple example of an overview plot. You can create an overview plot by creating another chart with 'zoom_target' option and then setting it as the object of the main chart.",
+        data: data,
+        top: 70,
+        width: 600,
+        height: 200,
+        right: 40,
+        missing_is_hidden: true,
+        target: '#main',
+        brush: 'xy',
+    }
+    MG.data_graphic(main);
+    MG.data_graphic({
+        data: data,
+        width: 600,
+        height: 50,
+        top: 8,
+        bottom: 0,
+        right: 40,
+        missing_is_hidden: true,
+        target: '#overview_plot',
+        brush: 'x',
+        zoom_target: main,
+        x_axis: false,
+        y_axis: false,
+        showActivePoint: false,
+    });
+});
+ +
+
+ + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/data.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/data.htm new file mode 100644 index 0000000..aa0f076 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/data.htm @@ -0,0 +1,386 @@ +
+
+
+
+
+
+
+
+ data +
+ +
d3.json('data/missing-y.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Few Observations",
+        description: "We sometimes have only a few observations. By setting missing_is_zero: true, missing values for a time-series will be interpreted as zeros. In this example, we've overridden the rollover callback to show 'no data' for missing observations and have set the min_x and max_x options in order to expand the date range.",
+        data: data,
+        interpolate: d3.curveLinear,
+        missing_is_zero: true,
+        width: 600,
+        height: 200,
+        right: 40,
+        min_x: new Date('2014-01-01'),
+        max_x: new Date('2014-06-01'),
+        target: '#missing-y',
+        mouseover: function(d, i) {
+            var df = d3.timeFormat('%b %d, %Y');
+            var date = df(d.date);
+            var y_val = (d.value === 0) ? 'no data' : d.value;
+
+            d3.select('#missing-y svg .mg-active-datapoint')
+                .text(date +  '   ' + y_val);
+        }
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/missing-is-hidden.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Broken Lines",
+        description: "Setting missing_is_hidden to true will hide missing ranges rather than considering them to be zeros or interpolating between the two points on either side.",
+        data: data,
+        missing_is_hidden: true,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#missing_is_hidden',
+        area: false,
+        show_secondary_x_label: false
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/missing-is-hidden-accessor.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Broken Lines (Missing Data Points)",
+        description: "You can hide individual data points on a particular attribute by setting missing_is_hidden_accessor. Data points whose y-accessor values are null are also hidden.",
+        data: data,
+        missing_is_hidden: true,
+        missing_is_hidden_accessor: 'dead',
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#missing_is_hidden_accessor'
+    });
+});
+ +
+
+ +
+
+
+
+
+
+
+ +
MG.data_graphic({
+    title: "Missing Data",
+    description: "This is an example of a graphic whose data is currently missing. We've also set the error option, which appends an error icon to the title and logs an error to the browser's console.",
+    error: 'This data is blocked by Lorem Ipsum. Get your **** together, Ipsum.',
+    chart_type: 'missing-data',
+    missing_text: 'This is an example of a missing chart',
+    target: '#missing-data',
+    width: 600,
+    height: 200
+});
+ +
+
+ +
+
+
+
+
+
+
+
+ data +
+ +
d3.json('data/fake_users2.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    var all_the_data = MG.clone(data[0]);
+    for (i = 1; i < data.length; i++){
+        for (var j = 0; j < data[i].length; j++) {
+            if (i === 2 && all_the_data[j].date < new Date('2014-02-01')) {
+            } else {
+                all_the_data[j]['value' + (i + 1)] = data[i][j].value;
+            }
+        }
+    }
+
+    MG.data_graphic({
+        title: "Handling Different Sized Lines in a Single Array",
+        description: "How do you handle data with multiple implied time series lengths?",
+        data: all_the_data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#missing1',
+        linked: true,
+        x_accessor: 'date',
+        y_accessor: ['value', 'value2', 'value3']
+    });
+});
+ +
+
+ +
+
+
+
+
+
+
+
+ data +
+ +
d3.json('data/fake_users1.json', function(data) {
+
+    for (var i = 0; i < data.length; i++) {
+        data[i].active = (i % 5 === 0);
+    }
+
+    data = MG.convert.date(data, 'date');
+
+    MG.data_graphic({
+        title: "Show active points on line chart",
+        description: "This line chart displays pre-defined active points",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        point_size: 3,
+        active_point_on_lines: true,
+        active_point_accessor: 'active',
+        active_point_size: 2,
+        target: '#display_active_point_01',
+        aggregate_rollover: true
+    });
+});
+ +
+
+ +
+
+
+
+
+
+
+
+ data +
+ +
d3.json('data/fake_users2.json', function(data) {
+
+    for (var i = 0; i < data.length; i++) {
+        for (var j = 0; j < data[i].length; j++) {
+            if (i === 0) {
+                data[i][j].active = (j % 5 === 0);
+            }
+            if (i === 1) {
+                data[i][j].active = (j % 10 === 0);
+            }
+        }
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Show active points on multi-lines chart",
+        description: "This multi-lines chart displays pre-defined active points for each lines",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        point_size: 3,
+        active_point_on_lines: true,
+        active_point_accessor: 'active',
+        active_point_size: 2,
+        target: '#display_active_point_01',
+        aggregate_rollover: true
+    });
+});
+ +
+
+ + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/experimental.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/experimental.htm new file mode 100644 index 0000000..725a8d3 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/experimental.htm @@ -0,0 +1,1159 @@ +
+
+
+
+
+
+
+
+
+
+
+ + +
d3.json('data/points1.json', function(data) {
+    MG.data_graphic({
+        title: "Simple Scatterplot",
+        description: "This is an example of a simple scatterplot, in which we have enabled rug plots on the y-axis by setting the y_rug option to true.",
+        data: data,
+        chart_type: 'point',
+        width: 295,
+        height: 225,
+        right: 10,
+        target: '#scatter-simple',
+        x_accessor: 'x',
+        y_accessor: 'y',
+        mouseover: function(d, i) { console.log(d,i); },
+        y_rug: true
+    });
+
+    MG.data_graphic({
+        title: "Automatic Category Coloring",
+        description: "By setting color_type to 'category' you can color the points according to another discrete value.",
+        data: data,
+        chart_type: 'point',
+        width: 295,
+        height: 225,
+        right: 10,
+        target: '#categorical1',
+        x_accessor: 'x',
+        y_accessor: 'y',
+        color_accessor: 'v',
+        color_type:'category',
+        y_rug: true
+    });
+
+    MG.data_graphic({
+        title: "Custom Category Color Mapping",
+        description: "You can specify the color domain and the corresponding color range to get custom mapping of categories to colors.",
+        data: data,
+        chart_type: 'point',
+        width: 295,
+        height: 225,
+        right: 10,
+        target: '#categorical2',
+        x_accessor: 'x',
+        y_accessor: 'y',
+        color_accessor: 'v',
+        color_domain: ['cat_0', 'cat_1', 'other'],
+        color_range: ['blue', 'gray', 'black'],
+        color_type: 'category',
+        x_rug: true
+    });
+
+    MG.data_graphic({
+        title: "Simple Line of Best Fit",
+        description: "For any scatterplot, set least_squares to true to add.",
+        data: data,
+        least_squares: true,
+        chart_type: 'point',
+        width: 295,
+        height: 225,
+        right: 10,
+        target: '#scatter-line-best-fit',
+        x_accessor: 'x',
+        y_accessor: 'y'
+    });
+
+    MG.data_graphic({
+        title: "Points Highlighting",
+        description: "You can set highlight to filter the points you want to highlight.",
+        data: data,
+        chart_type: 'point',
+        width: 295,
+        height: 225,
+        right: 10,
+        target: '#highlight',
+        x_accessor: 'x',
+        y_accessor: 'y',
+        y_rug: true,
+        highlight: (d, i) => d.z > 2
+    });
+});
+
+d3.json('data/fake_users1.json', function(data) {
+        data = MG.convert.date(data, 'date');
+        MG.data_graphic({
+            title: "Another Least Squares Example",
+            description: "Least squares effortlessly works with dates or times on axes.",
+            data: data,
+            chart_type: 'point',
+            width: 295,
+            height: 225,
+            left: 60,
+            right: 10,
+            least_squares: true,
+            target: '#sls-time-series',
+            x_accessor: 'date',
+            y_accessor: 'value'
+        });
+});
+
+var color_range = (theme === 'light') ? null : ['white','yellow'];
+
+d3.json('data/points1.json', function(data) {
+    MG.data_graphic({
+        title: "Scatterplot with Size and Color",
+        description: "Scatterplots have x_accessor, y_accessor, size_accessor, and color_accessor. For the last two you can also provide domain and range functions, to make it easy to change the color ranges. Colors default to red and blue, but can be overridden by passing an array of colors to color_range, as we've done in this example for the dark theme.",
+        data: data,
+        chart_type: 'point',
+        width: 295,
+        height: 225,
+        right: 10,
+        target: '#scatter-size-and-color',
+        x_accessor: 'x',
+        y_accessor: 'y',
+        color_accessor:'z',
+        color_range: color_range,
+        size_accessor:'w',
+        x_rug: true,
+        y_rug: true
+    });
+});
+ +
+
+ + +
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+ + +

+d3.tsv('data/nh-gop.tsv', function(data) {
+    var polls = [];
+    var who = ['Bush', 'Rubio', 'Trump', 'Cruz'];
+    data.forEach(function(p){
+        who.forEach(function(d){
+            var out = {};
+            out.candidate = d;
+            out.number = p[d] === '--' ? 0 : parseFloat(p[d]);
+            out.poll = p.Poll;
+            out.size = Math.random();
+            out.when = p.Date;
+            polls.push(out);
+        })
+    });
+
+    var trump = polls.filter(function(d){
+        return d.poll == 'PPP (D)';
+    })
+
+    MG.data_graphic({
+        title: 'Categorical Scale: X, points',
+        data: trump,
+        chart_type: 'point',
+        y_accessor: 'number',
+        x_accessor: 'candidate',
+        height:400,
+        width:300,
+        target: '#point-categorical',
+    })
+
+    MG.data_graphic({
+        title: 'Categorical Scale: X, bars',
+        data: trump,
+        chart_type: 'bar',
+        y_accessor: 'number',
+        x_accessor: 'candidate',
+        height:400,
+        width:300,
+        target: '#bar-categorical',
+    })
+
+    MG.data_graphic({
+        title: 'Categorical Scale: Y, points',
+        data: trump,
+        chart_type: 'point',
+        x_accessor: 'number',
+        y_accessor: 'candidate',
+        height:400,
+        width:300,
+        target: '#point-categorical2',
+    })
+
+    MG.data_graphic({
+        title: 'Categorical Scale: Y, bars',
+        data: trump,
+        chart_type: 'bar',
+        x_accessor: 'number',
+        y_accessor: 'candidate',
+        height:400,
+        width:300,
+        target: '#bar-categorical2',
+    })
+
+    MG.data_graphic({
+        title: 'Y points, groups',
+        data: polls,
+        chart_type: 'point',
+        y_axis_type: 'categorical',
+        x_accessor: 'number',
+        y_accessor: 'candidate',
+        ygroup_accessor: 'poll',
+        size_accessor: 'size',
+        size_domain: [0,1],
+        size_range: [3,6],
+        height:550,
+        width:300,
+        left:100,
+        target: '#point-categorical-group'
+    })
+
+    MG.data_graphic({
+        title: 'Y bars, groups',
+        data: polls,
+        chart_type: 'bar',
+        y_axis_type: 'categorical',
+        x_accessor: 'number',
+        y_accessor: 'candidate',
+        ygroup_accessor: 'poll',
+        height:550,
+        width:300,
+        left:100,
+        right:40,
+        target: '#bar-categorical-group'
+    })
+
+    MG.data_graphic({
+        title: 'Categorical Scale: Y, groups, horizontal',
+        data: polls,
+        chart_type: 'point',
+        y_accessor: 'number',
+        x_accessor: 'candidate',
+        xgroup_accessor: 'poll',
+        size_accessor: 'size',
+        size_domain: [0,1],
+        size_range: [3,6],
+        height:350,
+        width:700,
+        target: '#point-categorical-group-horizontal'
+    })
+
+    MG.data_graphic({
+        title: 'Categorical Scale: Y, groups, horizontal',
+        data: polls,
+        chart_type: 'bar',
+        y_accessor: 'number',
+        x_accessor: 'candidate',
+        xgroup_accessor: 'poll',
+        size_accessor: 'size',
+        size_domain: [0,1],
+        size_range: [3,6],
+        height:350,
+        width:700,
+        target: '#bar-categorical-group-horizontal'
+    })
+})
+
+ +
+
+ + + + + + + +
+
+
+
+
+
+
+
+
+
+ + +
var values = d3.range(10000).map(d3.randomBates(10));
+
+MG.data_graphic({
+    title: "Histogram 1",
+    description: "Raw data values being fed in. Here, we specify the number of bins to be 50 and have bar margins set to 0. The histogram graphic type includes the ability to bin data.",
+    data: values,
+    chart_type: 'histogram',
+    width: 295,
+    height: 180,
+    right: 10,
+    bins: 50,
+    bar_margin: 0,
+    target: '#histogram1',
+    y_extended_ticks: true,
+    mouseover: function(d, i) {
+        var pf = d3.format(',.2f');
+        d3.select('#histogram1 svg .mg-active-datapoint')
+            .text('Value: ' + pf(d.x) +  '   Count: ' + d.y);
+    }
+});
+
+d3.csv('data/ufo_dates.csv', function(ufos){
+    var data = ufos.map(function(d){
+        return parseInt(d.value) / 30;
+    });
+    data.sort();
+    MG.data_graphic({
+        title: "Difference in UFO Sighting and Reporting Dates (in months)",
+        description: "Semi-real data about the reported differences between the supposed sighting of a UFO and the date it was reported.",
+        data: data,
+        chart_type: 'histogram',
+        width: 600,
+        height: 300,
+        right: 40,
+        bar_margin: 0,
+        bins: 150,
+        target: '#ufos',
+        y_extended_ticks: true,
+        mouseover: function(d, i) {
+            var pf = d3.format(',.2f');
+            d3.select('#ufos svg .mg-active-datapoint')
+                .text(pf(d.x) + ' months      Volume: ' + pf(d.y));
+        }
+    });
+});
+
+var second = d3.range(10000).map(function(d) { return Math.random() * 10; });
+second = d3.histogram()(second)
+    .map(function(d) {
+        return {'count': d.y, 'value': d.x};
+});
+
+MG.data_graphic({
+    title: "Histogram 2",
+    description: "Already binned data being fed in.",
+    data: second,
+    binned: true,
+    chart_type: 'histogram',
+    width: 295,
+    height: 180,
+    right: 10,
+    target: '#histogram2',
+    y_extended_ticks: true,
+    x_accessor: 'value',
+    y_accessor: 'count',
+    mouseover: function(d, i) {
+        var pf = d3.format(',.2f');
+        d3.select('#histogram2 svg .mg-active-datapoint')
+            .text('Value: ' + pf(d.x) +  '   Count: ' + d.y);
+    }
+});
+
+var third = d3.range(10000).map(d3.randomBates(10));
+third = third.map(function(d,i){ return {val1: d, val2: i}; });
+
+MG.data_graphic({
+    title: "Histogram 3",
+    description: "Unbinned, but in same format as other line chart data.",
+    data: third,
+    chart_type: 'histogram',
+    width: 295,
+    height: 180,
+    right: 10,
+    target: '#histogram3',
+    linked: true,
+    y_extended_ticks: true,
+    x_accessor: 'val1',
+    mouseover: function(d, i) {
+        var pf = d3.format(',.2f');
+        d3.select('#histogram3 svg .mg-active-datapoint')
+            .text('Value: ' + pf(d.x) +  '   Count: ' + d.y);
+    }
+});
+
+// check for negative values, for sanity.
+var fourth = d3.range(10000).map(d3.randomBates(10));
+fourth = fourth.map(function(d,i){ return d - 0.5; });
+
+MG.data_graphic({
+    title: "Histogram 4",
+    description: "Sanity-checking negative data.",
+    data: fourth,
+    chart_type: 'histogram',
+    width: 295,
+    height: 180,
+    right: 10,
+    target: '#histogram4',
+    y_extended_ticks: true,
+    x_accessor: 'val1',
+    mouseover: function(d, i) {
+        var pf = d3.format(',.2f');
+        d3.select('#histogram4 svg .mg-active-datapoint')
+            .text('Value: ' + pf(d.x) +  '   Count: ' + d.y);
+    }
+});
+
+var hist1 = fake_data(25, 60).map(function(d){
+    d.value = Math.round(d.value);
+    return d;
+});
+
+MG.data_graphic({
+    title: "Histograms can be time series as well",
+    data: hist1,
+    target: '#time-hist',
+    chart_type: 'histogram',
+    width: 600,
+    height: 200,
+    binned: true,
+});
+ +
+
+ +
+
+
+ +
var table_data = [
+    { 'year': 1852, 'value1': 10.2, 'value2': 1030004.43423,'share': 0.12, 'total': 34003400, 'temp': 43, 'geo': 'United Kingdom', 'description': "Having a way of describing a row can be useful." },
+    { 'year': 1901, 'value1': 10.1, 'value2': 54003.223, 'share': 0.11, 'total': 4302100, 'temp': 55, 'geo': 'United States', 'description': "More made-up numbers." },
+    { 'year': 1732, 'value1': 4.3, 'value2': 1004.91422,   'share': 0.14, 'total': 4300240, 'temp': 42, 'geo': 'France', 'description': "We didn't specify a title for this column." },
+    { 'year': 1945, 'value1': 2.9, 'value2': 2430.121,  'share': 0.23, 'total': 24000000, 'temp': 54, 'geo': 'Brazil', 'description': "Brazil, Brazil." },
+    { 'year': 1910, 'value1': 1.0, 'value2': 5432.3,  'share': 0.19, 'total': 130000, 'temp': 52, 'geo': 'India', 'description': "Last description in the whole thing." }
+];
+
+var table1 = MG.data_table({
+        title: "A Data Table",
+        description: "A table is often the most appropriate way to present data. We aim to make the creation of data tables very simple. We are working on implementing sparklines, bullet charts, and other niceties.",
+        data: table_data,
+        show_tooltips: true
+    })
+    .target('#table1')
+    .title({
+        accessor: 'geo',
+        secondary_accessor:'year',
+        label: 'Country',
+        description: "These are arbitrary countries with arbitrary years underneath."
+    })
+    .number({ accessor: 'value1', label: 'Size', value_formatter: function(d){ return d + ' yrds'; }})
+    .number({ accessor: 'value2', label: 'Score', round: 2,  font_weight: 'bold' })
+    .number({ accessor: 'temp', label: 'Temp.', format: 'temperature', width: 100, color: 'gray' })
+    .number({
+        accessor: 'total',
+        label: 'Volume',
+        format: 'count', currency: '$',
+        width: 100,
+        font_weight: function(d){ return d < 5000000 ? 'bold' : 'normal'; },
+        color: function(d){ return d < 5000000 ? '#f70101' : 'auto'; }
+    })
+    .number({ accessor: 'share', label: 'Share', format: 'percentage', width: 100 })
+    .text({ accessor: 'description', width: 240, font_style: 'italic' })
+    .display();
+ +
+
+ +
+
+
+ +
var bdata = [
+    {a:'apples', b:'quartz'},
+    {a:'bananas', b:'pyrite'},
+    {a:'durian', b:'obsidian'}
+];
+
+var resolution_features = ['weekly', 'monthly'];
+
+var buttons = MG.button_layout('#buttons')
+    .data(bdata)
+    .manual_button('Time Scale', resolution_features, function(){ console.log('switched time scales'); })
+    .button('a', 'Fruit')
+    .button('b', 'Rock')
+    .callback(function(){
+        console.log('made it');
+        return false;
+    })
+    .display();
+ +
+
+ +
+
+
+ +
+
+
+
+ +
<div class="tooltip"></div>
+<style>
+.tooltip {
+    display: none;
+    min-height: 32px;
+    min-width: 100px;
+    padding: 12px;
+    margin-bottom: 8px;
+    background-color: #333;
+    color: white;
+    opacity: 0.7;
+    text-align: left;
+}
+</style>
+
+ +
const tooltipEl = d3.select('.tooltip').node();
+const tooltip = new Popper(document.documentElement, tooltipEl, { placement: 'top' });
+tooltipEl.addEventListener('mouseover', () => {
+    tooltipEl.style.display = 'block';
+})
+tooltipEl.addEventListener('mouseout', () => {
+    tooltipEl.style.display = 'none';
+})
+
+d3.json('data/fake_users1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Tooltip on line chart",
+        description: "Using popper.js and the mouseover callback, you can easily create a tooltip when the user hovers over a particular datapoint.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#tooltip-line-chart',
+        x_accessor: 'date',
+        y_accessor: 'value',
+        show_rollover_text: false,
+        mouseover: (d, i) => {
+            tooltipEl.style.display = 'block';
+            tooltipEl.innerText = `date: ${d3.timeFormat('%b %e, %Y')(d.date)}\nvalue: ${d.value}`;
+            tooltip.reference = d3.select(`#tooltip-line-chart .mg-line-rollover-circle`).node();
+            tooltip.update();
+        },
+        mouseout: () => {
+            tooltipEl.style.display = 'none';
+        }
+    });
+});
+
+d3.json('data/points1.json', function(data) {
+    MG.data_graphic({
+        title: "Tooltip on point chart",
+        description: "This technique also works for point charts.",
+        data: data,
+        chart_type: 'point',
+        width: 600,
+        height: 350,
+        right: 10,
+        target: '#tooltip-point-chart',
+        x_accessor: 'x',
+        y_accessor: 'y',
+        show_rollover_text: false,
+        mouseover: (d, i) => {
+            tooltipEl.style.display = 'block';
+            tooltipEl.innerText = `X: ${d.data.x}\nY: ${d.data.y}`;
+            tooltip.reference = d3.select(`#tooltip-point-chart .mg-points .path-${i}`).node();
+            tooltip.update();
+        },
+        mouseout: (d, i) => {
+            tooltipEl.style.display = 'none';
+        }
+    });
+});
+ +
+
+ + + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/lines.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/lines.htm new file mode 100644 index 0000000..b758d34 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/lines.htm @@ -0,0 +1,335 @@ +
+
+
+ + +
d3.json('data/fake_users1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Line Chart",
+        description: "This is a simple line chart. You can remove the area portion by adding area: false to the arguments list.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: document.getElementById('fake_users1'),
+        x_accessor: 'date',
+        y_accessor: 'value'
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/confidence_band.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Confidence Band",
+        description: "This is an example of a graphic with a confidence band and extended x-axis ticks enabled.",
+        data: data,
+        format: 'percentage',
+        width: 600,
+        height: 200,
+        right: 40,
+        area: false,
+        target: '#confidence_band',
+        show_secondary_x_label: false,
+        show_confidence_band: ['l', 'u'],
+        x_extended_ticks: true
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/small-range.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Small Range of Integers",
+        description: "When we have a data object of integers and a small range of values, the auto-generated set of y-axis ticks are filtered so that we don't include fractional values.",
+        data: data,
+        interpolate: d3.curveLinear,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#small-range'
+    });
+});
+ +
+
+ +
+
+
+
+
+
+
+ data 1, + data 2 +
+ +
d3.json('data/brief-1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Linked Graphic",
+        description: "The two graphics in this section are linked together. A rollover in one causes a rollover in the other.",
+        data: data,
+        linked: true,
+        width: 600,
+        height: 200,
+        right: 40,
+        xax_count: 4,
+        target: '#briefing-1'
+    });
+});
+
+d3.json('data/brief-2.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Other Linked Graphic",
+        description: "Roll over and watch as the graphic to the left triggers.",
+        data: data,
+        area: false,
+        linked: true,
+        width: 600,
+        height: 200,
+        right: 40,
+        xax_count: 4,
+        target: '#briefing-2'
+    });
+});
+ +
+
+ +
+
+
+ +
MG.data_graphic({
+    title: "Singleton",
+    description: "Handling a solitary data point.",
+    data: [{'date': new Date('2015-03-05T21:00:00Z'), 'value': 12000}],
+    width: 600,
+    height: 200,
+    right: 40,
+    target: '#singleton'
+});
+ +
+
+ +
+
+
+ +
d3.json('data/fake_users1.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Changing Single Line Color",
+        description: "For single line charts, there are two simple ways to change a line color. The first is to change the css (described on the wiki). The other is to specify a color value using color: string or colors: string.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        color: '#8C001A',
+        target: 'div#custom-color',
+        x_accessor: 'date',
+        y_accessor: 'value'
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/fake_users1.json', function(data) {
+
+    var max = d3.max(data, function (d) {
+        return d.value;
+    });
+    var min = d3.min(data, function(d) {
+        return d.value;
+    });
+
+    var offsetForNegativeValues = ((max - min) / 1.75);
+
+    for (var i = 0; i < data.length; i++) {
+        data[i].value = (data[i].value - offsetForNegativeValues) / 1000000;
+    }
+
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Flipped area under Y value baseline",
+        description: "This is a line chart having a flipped area under a Y value baseline",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        area: true,
+        flip_area_under_y_value: 0,
+        target: document.getElementById('area_flipped_users_gain_loss'),
+        x_accessor: 'date',
+        y_accessor: 'value'
+    });
+});
+ +
+
+ + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/multilines.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/multilines.htm new file mode 100644 index 0000000..d807466 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/multilines.htm @@ -0,0 +1,368 @@ +
+
+
+ + +
d3.json('data/fake_users2.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Multi-Line Chart",
+        description: "This line chart contains multiple lines.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#fake_users2',
+        legend: ['Line 1','Line 2','Line 3'],
+        legend_target: '.legend'
+    });
+});
+ +
+
+
+
+
+
+ +
+
+
+ + +
d3.json('data/missing-is-hidden-multi.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Broken Multi-Lines",
+        description: 'Setting missing_is_hidden works with multiple lines too.',
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        missing_is_hidden: true,
+        target: '#missing_is_hidden_multi',
+        show_secondary_x_label: false
+    });
+});
+ +
+
+ +
+
+
+
+
+
+
+ data 1, + data 2 +
+ +
d3.json('data/fake_users2.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Multi-Line Linked",
+        description: "Demoing linked multi-line charts.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#linked_multi1',
+        linked: true
+    });
+})
+
+d3.json('data/fake_users3.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Multi-Line Linked 2",
+        description: "Demoing linked multi-line charts.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#linked_multi2',
+        linked: true
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/fake_users3.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+    // set this to an empty array.
+    // data[0] and data[2] both still arrays of objects.
+    data[1] = [];
+
+    MG.data_graphic({
+        title: "Missing Time Series Don't Get Drawn",
+        description: "We set the second array to [] instead of the loaded data. The line color order is preserved.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#missing-multi'
+    });
+});
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/fake_users3.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    data[1][data[1].length-1].value = 50000000;
+    data[2][data[2].length-1] = MG.clone(data[1][data[1].length-1]);
+    data[2][data[2].length-1].value += 10000000;
+
+    MG.data_graphic({
+        title: "Labeling Lines",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        legend: ['US', 'CA', 'DE'],
+        target: '#multi-labelled'
+    });
+});
+ +
+
+ + +
+
+
+ + +
d3.json('data/fake_users2.json', function(data){
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    };
+    MG.data_graphic({
+        title: "Custom Line Coloring",
+        description: "By passing in an array of hex / rgb / rgba / html strings, you can specify the colors of the lines. NOTE: this feature may have an API change before it is fully in Metrics Graphics. Use at your own risk.",
+        data: [data[0], data[1], data[2]],
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#custom-colors',
+        legend: ['Team A','Team B','Team C'],
+        legend_target: 'div#custom-color-key',
+        colors: ['blue', 'rgb(255,100,43)', '#CCCCFF'],
+        aggregate_rollover: true
+    });
+})
+
+ +
+
+
+
+
+
+ +
+
+
+ + +
d3.json('data/fake_users3.json', function(data) {
+
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    };
+
+    MG.data_graphic({
+        title: "Select lines of your multi-line chart having areas",
+        description: "By passing in an array of booleans in 'area' property, you can choose which lines has an area or not.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#multiline_area_select',
+        area: [false, true, false],
+        y_extended_ticks: true,
+        x_accessor: 'date'
+    });
+});
+ + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm new file mode 100644 index 0000000..e65d641 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm @@ -0,0 +1,48 @@ +
+
+
+ + +
d3.json('data/fake_users3.json', function(data) {
+    for(var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Preserving the aspect ratio",
+        description: "You can automatically set the width or height of a data graphic to fit its parent element. When done the graphic will rescale to fit the size of the parent element while preserving its aspect ratio.",
+        data: data,
+        full_width: true,
+        height: 300,
+        right: 40,
+        x_extended_ticks: true,
+        target: '#aspect1',
+        x_accessor: 'date',
+        y_accessor: 'value'
+    });
+});
+ +
+
+ + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/rollovers.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/rollovers.htm new file mode 100644 index 0000000..53510bb --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/rollovers.htm @@ -0,0 +1,309 @@ +
+
+
+
+
+
+
+
+
+ data 1, + data 2 +
+ +
d3.json('data/float.json', function(data) {
+    data = MG.convert.date(data, 'date');
+
+    MG.data_graphic({
+        title: "Changing Precision 1",
+        description: "We can change the precision if the axis data type is a float. We can also change both the formatting, or hide the rollover text altogether. Here we set decimals: 3 to get three decimals in the rollover for percentages.",
+        data: data,
+        decimals: 3,
+        width: 600,
+        height: 200,
+        right: 40,
+        xax_count: 4,
+        target: '#precision1'
+    });
+
+    MG.data_graphic({
+        title: "Custom Rollover Text",
+        description: "Here is an example of changing the rollover text. You could in theory actually update any DOM element with the data from that rollover - a title, for instance.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        xax_count: 4,
+        mouseover: function(d, i) {
+            // custom format the rollover text, show days
+            var pf = d3.format('.0s');
+            d3.select('#custom-rollover svg .mg-active-datapoint')
+                .text('Day ' + (i + 1) + '   ' + pf(d.value));
+        },
+        target: '#custom-rollover'
+    });
+});
+
+d3.json('data/some_percentage.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    MG.data_graphic({
+        title: "Changing Precision 2",
+        description: "Here we set decimals: 0 for percentages.",
+        data: data,
+        decimals: 0,
+        format: 'percentage',
+        width: 600,
+        height: 200,
+        right: 40,
+        xax_count: 4,
+        target: '#precision2'
+    });
+
+    MG.data_graphic({
+        title: "... Or No Rollover Text",
+        description: "By setting show_rollover_text: false, you can hide the default rollover text from even appearing. This, coupled with the custom callback, gives a lot of interesting options for controlling rollovers.",
+        data: data,
+        decimals: 0,
+        show_rollover_text: false,
+        format: 'percentage',
+        width: 600,
+        height: 200,
+        right: 40,
+        xax_count: 4,
+        target: '#no-rollover-text'
+    });
+});
+ +
+
+ +
+
+
+ + +
d3.json('data/fake_users2.json', function(data) {
+    for (var i = 0; i < data.length; i++) {
+        data[i] = MG.convert.date(data[i], 'date');
+    }
+
+    var all_the_data = MG.clone(data[0]);
+    for (i = 1; i < data.length; i++){
+        for (var j = 0; j < data[i].length; j++){
+            if (i === 2 && all_the_data[j].date < new Date('2014-02-01')) {
+            } else {
+                all_the_data[j]['value' + (i + 1)] = data[i][j].value;
+            }
+        }
+    }
+
+    MG.data_graphic({
+        title: "Aggregated Rollover Information",
+        description: "Aggregated information can be displayed with the aggregate_rollover option in order to clearly highlight the relationship between lines. Also handles non-contiguous data",
+        data: all_the_data,
+        width: 600,
+        height: 200,
+        right: 40,
+        target: '#aggregate',
+        y_extended_ticks: true,
+        x_accessor: 'date',
+        y_accessor: ['value', 'value2', 'value3'],
+        aggregate_rollover: true
+    });
+});
+ +
+
+ + +
+
+
+ + +

+d3.json('data/float.json', function(data) {
+
+    data = MG.convert.date(data, 'date');
+    // check out https://github.com/mbostock/d3/wiki/Formatting for number formatting
+    //and https://github.com/mbostock/d3/wiki/Time-Formatting for time formatting options.
+
+    MG.data_graphic({
+        title: "Rollover Formatting With Strings",
+        description: "Metrics Graphics comes with two arguments: y_rollover_format and x_rollover_format. These arguments take either strings or functions. Strings are formatted according to D3's number format, or D3's time formatting, if the accessor pulls out Date objects.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        y_mouseover: '%d',
+        x_mouseover: '%e of %b? Well, ',
+        target: '#y-formatting'
+    });
+})
+
+ +
+
+ + +
+
+
+ + +

+d3.json('data/float.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    MG.data_graphic({
+        title: "Rollover Formatting With Functions",
+        description: "You can also pass in a function, whose arguments are the data point and the index.",
+        data: data,
+        width: 600,
+        height: 200,
+        right: 40,
+        y_rollover_format: function(d){
+            return Math.round(d.value) + (Math.random() > .5 ? ' + 1' : ' - 1')
+        },
+        x_rollover_format: function(d){
+            var today = new Date()
+            return Math.round((today - d.date)/ (1000 * 60 * 60 * 24)) + ' days ago, ';
+        },
+        target: '#formatting-with-functions'
+    });
+})
+
+ +
+
+ + + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/updating.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/updating.htm new file mode 100644 index 0000000..af3919b --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/updating.htm @@ -0,0 +1,169 @@ +
+
+
+
+ + + +
+
+
+ + + +
+
+
+ + +
var globals = {};
+
+var split_by_params = {
+    title: "Downloads by Channel",
+    description: "We sometimes have the need to split the data and then gracefully update the graphic with the newly selected subset of data.",
+    width: 600,
+    height: 200,
+    right: 40,
+    xax_count: 4,
+    target: '#split_by',
+    x_accessor: 'date',
+    y_accessor: 'release'
+};
+
+var modify_time_period_params = {
+    title: "Beta Downloads",
+    description: "We sometimes have the need to view data for just the past n days. Here, the transition_on_update option is set to false.",
+    width: 600,
+    height: 200,
+    right: 40,
+    show_secondary_x_label: false,
+    xax_count: 4,
+    target: '#modify_time_period',
+    x_accessor: 'date',
+    y_accessor: 'beta'
+}
+
+d3.json('data/split_by.json', function(data) {
+    data = MG.convert.date(data, 'date');
+    globals.data = data;
+
+    split_by_params.data = data;
+    MG.data_graphic(split_by_params);
+
+    modify_time_period_params.data = data;
+    MG.data_graphic(modify_time_period_params);
+});
+
+$('.split-by-controls button').click(function() {
+    var new_y_accessor = $(this).data('y_accessor');
+    split_by_params.y_accessor = new_y_accessor;
+
+    // change button state
+    $(this).addClass('active').siblings().removeClass('active');
+
+    // update data
+    delete split_by_params.xax_format;
+    MG.data_graphic(split_by_params);
+});
+
+$('.modify-time-period-controls button').click(function() {
+    var past_n_days = $(this).data('time_period');
+    var data = modify_time_period(globals.data, past_n_days);
+
+    // change button state
+    $(this).addClass('active').siblings().removeClass('active');
+
+    delete modify_time_period_params.xax_format;
+    modify_time_period_params.data = data;
+    MG.data_graphic(modify_time_period_params);
+});
+
+function modify_time_period(data, past_n_days) {
+    if (past_n_days !== '') {
+        return MG.clone(data).slice(past_n_days * -1);
+    }
+
+    return data;
+}
+ +
+
+ + \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/css/highlightjs-default.css b/priv/static/metrics-graphics-3.0-alpha3/examples/css/highlightjs-default.css new file mode 100644 index 0000000..a7db875 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/css/highlightjs-default.css @@ -0,0 +1,153 @@ +/* + +Original style from softwaremaniacs.org (c) Ivan Sagalaev + +*/ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + background: #f0f0f0; + -webkit-text-size-adjust: none; +} + +.hljs, +.hljs-subst, +.hljs-tag .hljs-title, +.nginx .hljs-title { + color: black; +} + +.hljs-string, +.hljs-title, +.hljs-constant, +.hljs-parent, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.haml .hljs-symbol, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-addition, +.hljs-flow, +.hljs-stream, +.bash .hljs-variable, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.tex .hljs-special, +.erlang_repl .hljs-function_or_atom, +.asciidoc .hljs-header, +.markdown .hljs-header, +.coffeescript .hljs-attribute { + color: #e6337c; +} + +.smartquote, +.hljs-comment, +.hljs-annotation, +.hljs-template_comment, +.diff .hljs-header, +.hljs-chunk, +.asciidoc .hljs-blockquote, +.markdown .hljs-blockquote { + color: #888; +} + +.hljs-number, +.hljs-date, +.hljs-regexp, +.hljs-literal, +.hljs-hexcolor, +.smalltalk .hljs-symbol, +.smalltalk .hljs-char, +.go .hljs-constant, +.hljs-change, +.lasso .hljs-variable, +.makefile .hljs-variable, +.asciidoc .hljs-bullet, +.markdown .hljs-bullet, +.asciidoc .hljs-link_url, +.markdown .hljs-link_url { + color: #366797; +} + +.hljs-label, +.hljs-javadoc, +.ruby .hljs-string, +.hljs-decorator, +.hljs-filter .hljs-argument, +.hljs-localvars, +.hljs-array, +.hljs-attr_selector, +.hljs-important, +.hljs-pseudo, +.hljs-pi, +.haml .hljs-bullet, +.hljs-doctype, +.hljs-deletion, +.hljs-envvar, +.hljs-shebang, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-formula, +.erlang_repl .hljs-reserved, +.hljs-prompt, +.asciidoc .hljs-link_label, +.markdown .hljs-link_label, +.vhdl .hljs-attribute, +.clojure .hljs-attribute, +.asciidoc .hljs-attribute, +.lasso .hljs-attribute, +.coffeescript .hljs-property, +.hljs-phony { + color: #88f; +} + +.hljs-keyword, +.hljs-id, +.hljs-title, +.hljs-built_in, +.css .hljs-tag, +.hljs-javadoctag, +.hljs-phpdoc, +.hljs-dartdoc, +.hljs-yardoctag, +.smalltalk .hljs-class, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.hljs-type, +.hljs-typename, +.tex .hljs-command, +.asciidoc .hljs-strong, +.markdown .hljs-strong, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.asciidoc .hljs-emphasis, +.markdown .hljs-emphasis { + font-style: italic; +} + +.nginx .hljs-built_in { + font-weight: normal; +} + +.coffeescript .javascript, +.javascript .xml, +.lasso .markup, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-accessible.css b/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-accessible.css new file mode 100644 index 0000000..5ebf9b7 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-accessible.css @@ -0,0 +1,26 @@ +html { + font-size: 16px; +} + +.mg-x-axis text, +.mg-y-axis text, +.mg-histogram .axis text { + opacity: 0.9; +} + +.mg-x-axis line, +.mg-y-axis line { + opacity: 1; +} + +.mg-markers text, +.mg-year-marker text, +.mg-baselines text { + opacity: 0.9; +} + +.mg-markers line, +.mg-year-marker line, +.mg-baselines line { + opacity: 1; +} \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-dark.css b/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-dark.css new file mode 100644 index 0000000..a8bfe5f --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo-dark.css @@ -0,0 +1,686 @@ +a, +a:active, +a:visited { + color: #71b4eb; +} + +a:hover { + color: #71b4eb; +} + +a.active { + color: #fff; +} + +.mg-active-datapoint { + fill: #fff; +} + +.mg-area1-color { + fill: #ffd300; +} + +.mg-area2-color { + fill: #18ff00; +} + +.mg-area3-color { + fill: #f57070; +} + +.mg-area4-color { + fill: #28c5f8; +} + +.mg-area5-color { + fill: #f7f7f7; +} + +.mg-barplot .mg-bar-prediction { + fill: #5b5b5b; +} + +.mg-barplot .mg-bar-baseline { + stroke: #5b5b5b; +} + +.mg-baselines line { + stroke: #676767; +} + +.mg-baselines text { + fill: #fff; +} + +body { + background-color: #272727; + color: #cfcfcf; +} + +.divider { + color: #f1f1f1; + opacity: 0.1; +} + +pre { + border-left: 2px solid #3b3b3b; +} + +h1 { + color: #f1f1f1; +} + +h2.chart_title span { + color: #f1f1f1; +} + +.mg-histogram .axis path, +.mg-histogram .axis line { + opacity: 0.5; + stroke: #ccc; +} + +.mg-histogram .mg-bar rect { + fill: #d8b307; +} + +tspan.hist-symbol { + fill: #d8b307; +} + +.mg-barplot rect.mg-bar.default-bar { + fill: #d8b307; +} + +.mg-histogram .mg-bar rect.active, +.mg-barplot rect.mg-bar.default-active { + fill: #b3960f; +} + +.mg-histogram .mg-bar text { + fill: #fff; +} + +.mg-histogram .axis .tick line { + opacity: 0.3; +} + +li { + color: #cfcfcf; +} + +.mg-least-squares-line { + stroke: #f57070; +} + +.mg-line1-color { + stroke: #ffd300; +} + +.mg-hover-line1-color { + fill: #ffd300; +} + +.mg-line2-color { + stroke: #18ff00; +} + +.mg-hover-line2-color { + fill: #18ff00; +} + +.mg-line3-color { + stroke: #f57070; +} + +.mg-hover-line3-color { + fill: #f57070; +} + +.mg-line4-color { + stroke: #28c5f8; +} + +.mg-hover-line4-color { + fill: #28c5f8; +} + +.mg-line5-color { + stroke: #f7f7f7; +} + +.mg-hover-line5-color { + fill: #f7f7f7; +} + +.mg-line1-legend-color { + color: #ffd300; + fill: #ffd300; +} + +.mg-line2-legend-color { + color: #18ff00; + fill: #18ff00; +} + +.mg-line3-legend-color { + color: #f57070; + fill: #f57070; +} + +.mg-line4-legend-color { + color: #28c5f8; + fill: #28c5f8; +} + +.mg-line5-legend-color { + color: #f7f7f7; + fill: #f7f7f7; +} + +#logo g path { + fill: #e8e8e8; +} + +.mg-chart-title { + fill: #cfcfcf; +} + +.mg-category-guides line { + stroke: #676767; +} + +.mg-main-area-solid svg .mg-main-area { + fill: #52491f; +} + +.mg-markers line { + stroke: #676767; +} + +.mg-markers text { + fill: #fff; +} + +circle.mg-points-mono { + fill-opacity: 0.6; + stroke: #a89641; + fill: #a89641; + stroke-opacity: 1; +} + +tspan.mg-points-mono { + fill: #a89641; + stroke: #a89641; +} + +circle.mg-points-mono.selected { + fill: #a89641; + fill-opacity: 1; + stroke-opacity: 1; +} + +.popover { + color: #737373; +} + +text { + fill: #fff; +} + +.mg-x-rug-mono, +.mg-y-rug-mono { + stroke: #a89641; +} + +.mg-x-axis line, +.mg-y-axis line { + stroke: #676767; +} + +.mg-x-axis text, +.mg-y-axis text, +.mg-histogram .axis text { + fill: #fff; +} + +.mg-year-marker text { + fill: #fff; +} + +.mg-year-marker line { + stroke: #676767; +} + +/* + CSS from http://bootswatch.com/slate + Made by Thomas Park. Contact him at thomas@bootswatch.com + Code released under the MIT License. +*/ +.btn:active, .btn.active { + outline: 0; + background-image: none; + -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); + box-shadow: inset 0 3px 5px rgba(0,0,0,0.125); +} + +.btn.disabled,.btn[disabled],fieldset[disabled] .btn { + cursor: not-allowed; + pointer-events: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-default { + color: #ffffff; + background-color: #3a3f44; + border-color: #3a3f44; +} + +.btn-default:hover, +.btn-default:focus, +.btn-default:active, +.btn-default.active, +.open .dropdown-toggle.btn-default { + color: #ffffff; + background-color: #272b2e; + border-color: #1e2023; +} + +.btn-default:active, +.btn-default.active, +.open .dropdown-toggle.btn-default { + background-image: none; +} + +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #3a3f44; + border-color: #3a3f44; +} + +.btn-default .badge { + color: #3a3f44; + background-color: #ffffff; +} + +.btn-primary { + color: #ffffff; + background-color: #7a8288; + border-color: #7a8288; +} + +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.active, +.open .dropdown-toggle.btn-primary { + color: #ffffff; + background-color: #676d73; + border-color: #5d6368; +} + +.btn-primary:active, +.btn-primary.active, +.open .dropdown-toggle.btn-primary { + background-image: none; +} + +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #7a8288; + border-color: #7a8288; +} + +.btn-primary .badge { + color: #7a8288; + background-color: #ffffff; +} + +.btn-success { + color: #ffffff; + background-color: #62c462; + border-color: #62c462; +} + +.btn-success:hover, +.btn-success:focus, +.btn-success:active, +.btn-success.active, +.open .dropdown-toggle.btn-success { + color: #ffffff; + background-color: #45b845; + border-color: #40a940; +} + +.btn-success:active, +.btn-success.active, +.open .dropdown-toggle.btn-success { + background-image: none; +} + +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #62c462; + border-color: #62c462; +} + +.btn-success .badge { + color: #62c462; + background-color: #ffffff; +} + +.btn-info { + color: #ffffff; + background-color: #5bc0de; + border-color: #5bc0de; +} + +.btn-info:hover, +.btn-info:focus, +.btn-info:active, +.btn-info.active, +.open .dropdown-toggle.btn-info { + color: #ffffff; + background-color: #39b3d7; + border-color: #2aabd2; +} + +.btn-info:active, +.btn-info.active, +.open .dropdown-toggle.btn-info { + background-image: none; +} + +.btn-info.disabled,.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #5bc0de; +} + +.btn-info .badge { + color: #5bc0de; + background-color: #ffffff; +} + +.btn-warning { + color: #ffffff; + background-color: #f89406; + border-color: #f89406; +} + +.btn-warning:hover,.btn-warning:focus, +.btn-warning:active,.btn-warning.active, +.open .dropdown-toggle.btn-warning { + color: #ffffff; + background-color: #d07c05; + border-color: #bc7005; +} + +.btn-warning:active, +.btn-warning.active, +.open .dropdown-toggle.btn-warning { + background-image: none; +} + +.btn-warning.disabled,.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f89406; + border-color: #f89406; +} + +.btn-warning .badge { + color: #f89406; + background-color: #ffffff; +} + +.btn-danger { + color: #ffffff; + background-color: #ee5f5b; + border-color: #ee5f5b; +} + +.btn-danger:hover, +.btn-danger:focus, +.btn-danger:active, +.btn-danger.active, +.open .dropdown-toggle.btn-danger { + color: #ffffff; + background-color: #ea3b36; + border-color: #e82924; +} + +.btn-danger:active,.btn-danger.active, +.open .dropdown-toggle.btn-danger { + background-image: none; +} + +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #ee5f5b; + border-color: #ee5f5b; +} + +.btn-danger .badge { + color: #ee5f5b; + background-color: #ffffff; +} + +.btn-link { + color: #ffffff; + font-weight: normal; + cursor: pointer; + border-radius: 0; +} + +.btn-link,.btn-link:active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} + +.btn-link,.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} + +.btn-link:hover,.btn-link:focus { + color: #ffffff; + text-decoration: underline; + background-color: transparent; +} + +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #7a8288; + text-decoration: none; +} + +.btn,.btn:hover { + border-color: rgba(0,0,0,0.6); + text-shadow: 1px 1px 1px rgba(0,0,0,0.3); +} + +.btn-default { + background-image: -webkit-linear-gradient(#484e55, #3a3f44 60%, #313539); + background-image: linear-gradient(#484e55, #3a3f44 60%, #313539); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff484e55', endColorstr='#ff313539', GradientType=0); + filter: none; +} + +.btn-default:hover { + background-image: -webkit-linear-gradient(#020202, #101112 40%, #191b1d); + background-image: linear-gradient(#020202, #101112 40%, #191b1d); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff020202', endColorstr='#ff191b1d', GradientType=0); + filter: none; +} + +.btn-primary { + background-image: -webkit-linear-gradient(#8a9196, #7a8288 60%, #70787d); + background-image: linear-gradient(#8a9196, #7a8288 60%, #70787d); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8a9196', endColorstr='#ff70787d', GradientType=0); + filter: none; +} + +.btn-primary:hover { + background-image: -webkit-linear-gradient(#404448, #4e5458 40%, #585e62); + background-image: linear-gradient(#404448, #4e5458 40%, #585e62); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff404448', endColorstr='#ff585e62', GradientType=0); + filter: none; +} + +.btn-success { + background-image: -webkit-linear-gradient(#78cc78, #62c462 60%, #53be53); + background-image: linear-gradient(#78cc78, #62c462 60%, #53be53); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff78cc78', endColorstr='#ff53be53', GradientType=0); + filter: none; +} + +.btn-success:hover { + background-image: -webkit-linear-gradient(#2f7d2f, #379337 40%, #3da23d); + background-image: linear-gradient(#2f7d2f, #379337 40%, #3da23d); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2f7d2f', endColorstr='#ff3da23d', GradientType=0); + filter: none; +} + +.btn-info { + background-image: -webkit-linear-gradient(#74cae3, #5bc0de 60%, #4ab9db); + background-image: linear-gradient(#74cae3, #5bc0de 60%, #4ab9db); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff74cae3', endColorstr='#ff4ab9db', GradientType=0); + filter: none; +} + +.btn-info:hover { + background-image: -webkit-linear-gradient(#20829f, #2596b8 40%, #28a4c9); + background-image: linear-gradient(#20829f, #2596b8 40%, #28a4c9); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff20829f', endColorstr='#ff28a4c9', GradientType=0); + filter: none; +} + +.btn-warning { + background-image: -webkit-linear-gradient(#faa123, #f89406 60%, #e48806); + background-image: linear-gradient(#faa123, #f89406 60%, #e48806); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffaa123', endColorstr='#ffe48806', GradientType=0); + filter: none; +} + +.btn-warning:hover { + background-image: -webkit-linear-gradient(#804d03, #9e5f04 40%, #b26a04); + background-image: linear-gradient(#804d03, #9e5f04 40%, #b26a04); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff804d03', endColorstr='#ffb26a04', GradientType=0); + filter: none; +} + +.btn-danger { + background-image: -webkit-linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49); + background-image: linear-gradient(#f17a77, #ee5f5b 60%, #ec4d49); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff17a77', endColorstr='#ffec4d49', GradientType=0); + filter: none; +} + +.btn-danger:hover { + background-image: -webkit-linear-gradient(#bb1813, #d71c16 40%, #e7201a); + background-image: linear-gradient(#bb1813, #d71c16 40%, #e7201a); + background-repeat: no-repeat; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbb1813', endColorstr='#ffe7201a', GradientType=0); + filter: none; +} + +.btn-link,.btn-link:hover { + border-color: transparent; +} + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo.css b/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo.css new file mode 100644 index 0000000..497b816 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/css/metricsgraphics-demo.css @@ -0,0 +1,220 @@ +a, +a:active, +a:visited { + color: steelblue; + text-decoration: none; +} + +a:hover { + color: steelblue; +} + +a.active { + background-color: steelblue; + border: 0; + border-radius: 24px; + color: #fff; + padding: 2px 8px 2px 8px; + text-decoration: none; +} + +a.examples-options.selected { + font-weight: bold; +} + +a:hover.examples-options { + text-decoration: none; +} + +body { + background-color: #fff; + color: #000; + font-family: 'Open Sans', sans-serif, Arial; +} + +.btn-group { + display: inline-block; + margin-left: 3px; + margin-right: 3px; +} + +.btn-group span.which-button { + font-weight: 300; + color: darkgray; +} + +.btn-group span.title { + margin-left: 8px; + margin-right: 8px; +} + +.data-column { + font-size: 0.9rem; + margin: 0; + position: absolute; + right: 0; +} + +#description { + margin: auto; + margin-bottom: 50px; + width: 100%; +} + +.divider { + color: #000000; + opacity: 0.2; +} + +.examples-options { + font-size: 0.8rem; +} + +.float-right { + float: right; +} + +.footer { + font-size: 0.9rem; + padding: 40px; + text-align: center; +} + +.head { + color: black; + margin: auto; + margin-bottom: 20px; + width: 100%; +} + +.head h1 { + font-size: 4.1rem; + font-weight: 300; + margin: 45px 0 0 0; +} + +ul { + clear: both; + font-size: 1.2rem; + padding: 10px 0 0 0; +} + +.head ul li, +ul.examples li { + display: inline; + list-style: none; + padding-right: 15px; +} + +ul li.no-padding { + padding: 0; +} + +ul.examples li { + line-height: 30px; +} + +html { + font-size: 12px; +} + +.legend { + font-size: 0.9rem; + padding: 25px 0 15px 0; +} + +#logo { + margin: 60px 0 30px 0; + height: 79px; + width: 400px; +} + +p { + font-family: 'PT Serif', serif; + font-size: 1.3rem; + line-height: 24px; +} + +.pill { + font-family: 'Open Sans', serif; + font-size: 1rem; + text-transform: uppercase; +} + +.pill:hover { + text-decoration: none; +} + +pre { + background-color: transparent; + border: 0; + border-left: 2px solid #ccc; + border-radius: 0; + font-size: 0.9rem; + margin: 40px 0 0 10px; + overflow-x: auto; + padding: 0; + width: 100%; + word-wrap: normal; +} + +pre code { + white-space: inherit; +} + +pre code.hljs { + background-color: transparent; +} + +pre, code, text-area { + font-family: "Menlo", monospace; +} + +svg { + margin-top: 30px; +} + +#table1 .chart_title { + margin-left: 0; +} + +#torso { + margin: 0 auto; + text-align: center; + width: 100%; +} + +#torso div { + display: inline-block; +} + +#trunk { + margin-top: 40px; +} + +#trunk h2 { + font-size: 1.2rem; +} + +#trunk h2.trunk-title { + font-size: 2.2rem; + font-weight: 300; + text-transform: uppercase; +} + + +.trunk-section { + border-top: 1px solid #ccc; + padding-bottom: 25px; + padding-top: 15px; +} + +.wip { + background-color: #f1f1f1; + font-size: 1.3rem; + margin-top: 60px; + padding: 10px; + border-top-left-radius: 6px; + border-top-right-radius: 6px; + opacity: 0.8; +} \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/css/railscasts.css b/priv/static/metrics-graphics-3.0-alpha3/examples/css/railscasts.css new file mode 100644 index 0000000..21efe39 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/css/railscasts.css @@ -0,0 +1,187 @@ +/* + +Railscasts-like style (c) Visoft, Inc. (Damien White) + +*/ + +.hljs { + display: block; + overflow-x: auto; + padding: 0.5em; + background: #232323; + color: #e6e1dc; + -webkit-text-size-adjust: none; +} + +.hljs-comment, +.hljs-javadoc, +.hljs-shebang { + color: #bc9458; + font-style: italic; +} + +.hljs-keyword, +.ruby .hljs-function .hljs-keyword, +.hljs-request, +.hljs-status, +.nginx .hljs-title, +.method, +.hljs-list .hljs-title { + color: #c26230; +} + +.hljs-string, +.hljs-number, +.hljs-regexp, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.tex .hljs-command, +.asciidoc .hljs-link_label, +.markdown .hljs-link_label { + color: #a5c261; +} + +.hljs-subst { + color: #519f50; +} + +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-tag .hljs-title, +.hljs-doctype, +.hljs-sub .hljs-identifier, +.hljs-pi, +.input_number { + color: #e8bf6a; +} + +.hljs-identifier { + color: #d0d0ff; +} + +.hljs-class .hljs-title, +.hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc, +.hljs-dartdoc { + text-decoration: none; +} + +.hljs-constant { + color: #da4939; +} + + +.hljs-symbol, +.hljs-built_in, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-symbol .hljs-identifier, +.asciidoc .hljs-link_url, +.markdown .hljs-link_url, +.hljs-attribute { + color: #6d9cbe; +} + +.asciidoc .hljs-link_url, +.markdown .hljs-link_url { + text-decoration: underline; +} + + + +.hljs-params, +.hljs-variable, +.clojure .hljs-attribute { + color: #d0d0ff; +} + +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.tex .hljs-special { + color: #cda869; +} + +.css .hljs-class { + color: #9b703f; +} + +.hljs-rules .hljs-keyword { + color: #c5af75; +} + +.hljs-rules .hljs-value { + color: #cf6a4c; +} + +.css .hljs-id { + color: #8b98ab; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9b859d; +} + +.hljs-preprocessor, +.hljs-preprocessor *, +.hljs-pragma { + color: #8996a8 !important; +} + +.hljs-hexcolor, +.css .hljs-value .hljs-number { + color: #a5c261; +} + +.hljs-title, +.hljs-decorator, +.css .hljs-function { + color: #ffc66d; +} + +.diff .hljs-header, +.hljs-chunk { + background-color: #2f33ab; + color: #e6e1dc; + display: inline-block; + width: 100%; +} + +.diff .hljs-change { + background-color: #4a410d; + color: #f8f8f8; + display: inline-block; + width: 100%; +} + +.hljs-addition { + background-color: #144212; + color: #e6e1dc; + display: inline-block; + width: 100%; +} + +.hljs-deletion { + background-color: #600; + color: #e6e1dc; + display: inline-block; + width: 100%; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.7; +} diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-1.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-1.json new file mode 100644 index 0000000..f84a3ff --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-1.json @@ -0,0 +1,402 @@ +[ + { + "date": "2014-02-01", + "value": 15000000 + }, + { + "date": "2014-02-02", + "value": 16487625 + }, + { + "date": "2014-02-03", + "value": 17097434 + }, + { + "date": "2014-02-04", + "value": 17694420 + }, + { + "date": "2014-02-05", + "value": 17014381 + }, + { + "date": "2014-02-06", + "value": 15578984 + }, + { + "date": "2014-02-07", + "value": 14718953 + }, + { + "date": "2014-02-08", + "value": 15020669 + }, + { + "date": "2014-02-09", + "value": 13889722 + }, + { + "date": "2014-02-10", + "value": 13979897 + }, + { + "date": "2014-02-11", + "value": 14595566 + }, + { + "date": "2014-02-12", + "value": 14123256 + }, + { + "date": "2014-02-13", + "value": 14083675 + }, + { + "date": "2014-02-14", + "value": 15068426 + }, + { + "date": "2014-02-15", + "value": 15368056 + }, + { + "date": "2014-02-16", + "value": 15277054 + }, + { + "date": "2014-02-17", + "value": 14376243 + }, + { + "date": "2014-02-18", + "value": 13058892 + }, + { + "date": "2014-02-19", + "value": 12367653 + }, + { + "date": "2014-02-20", + "value": 13184423 + }, + { + "date": "2014-02-21", + "value": 14367203 + }, + { + "date": "2014-02-22", + "value": 14656447 + }, + { + "date": "2014-02-23", + "value": 14724526 + }, + { + "date": "2014-02-24", + "value": 14938129 + }, + { + "date": "2014-02-25", + "value": 14205617 + }, + { + "date": "2014-02-26", + "value": 14596607 + }, + { + "date": "2014-02-27", + "value": 13982597 + }, + { + "date": "2014-02-28", + "value": 15107034 + }, + { + "date": "2014-03-01", + "value": 13646739 + }, + { + "date": "2014-03-02", + "value": 14214763 + }, + { + "date": "2014-03-03", + "value": 14952136 + }, + { + "date": "2014-03-04", + "value": 14643933 + }, + { + "date": "2014-03-05", + "value": 13611435 + }, + { + "date": "2014-03-06", + "value": 12569788 + }, + { + "date": "2014-03-07", + "value": 11344469 + }, + { + "date": "2014-03-08", + "value": 12687132 + }, + { + "date": "2014-03-09", + "value": 11831144 + }, + { + "date": "2014-03-10", + "value": 10480837 + }, + { + "date": "2014-03-11", + "value": 9051161 + }, + { + "date": "2014-03-12", + "value": 9964784 + }, + { + "date": "2014-03-13", + "value": 11035006 + }, + { + "date": "2014-03-14", + "value": 10081289 + }, + { + "date": "2014-03-15", + "value": 9793897 + }, + { + "date": "2014-03-16", + "value": 9177447 + }, + { + "date": "2014-03-17", + "value": 8035348 + }, + { + "date": "2014-03-18", + "value": 6770242 + }, + { + "date": "2014-03-19", + "value": 7272077 + }, + { + "date": "2014-03-20", + "value": 8216348 + }, + { + "date": "2014-03-21", + "value": 8576584 + }, + { + "date": "2014-03-22", + "value": 9421060 + }, + { + "date": "2014-03-23", + "value": 10872288 + }, + { + "date": "2014-03-24", + "value": 9537996 + }, + { + "date": "2014-03-25", + "value": 9560363 + }, + { + "date": "2014-03-26", + "value": 8182813 + }, + { + "date": "2014-03-27", + "value": 9068173 + }, + { + "date": "2014-03-28", + "value": 10390251 + }, + { + "date": "2014-03-29", + "value": 9714081 + }, + { + "date": "2014-03-30", + "value": 9994670 + }, + { + "date": "2014-03-31", + "value": 9317878 + }, + { + "date": "2014-04-01", + "value": 8209077 + }, + { + "date": "2014-04-02", + "value": 9230830 + }, + { + "date": "2014-04-03", + "value": 8978342 + }, + { + "date": "2014-04-04", + "value": 8361854 + }, + { + "date": "2014-04-05", + "value": 9345999 + }, + { + "date": "2014-04-06", + "value": 7965407 + }, + { + "date": "2014-04-07", + "value": 8909276 + }, + { + "date": "2014-04-08", + "value": 8935489 + }, + { + "date": "2014-04-09", + "value": 8634997 + }, + { + "date": "2014-04-10", + "value": 8795592 + }, + { + "date": "2014-04-11", + "value": 7513086 + }, + { + "date": "2014-04-12", + "value": 8408561 + }, + { + "date": "2014-04-13", + "value": 7780649 + }, + { + "date": "2014-04-14", + "value": 7524281 + }, + { + "date": "2014-04-15", + "value": 8498062 + }, + { + "date": "2014-04-16", + "value": 7922453 + }, + { + "date": "2014-04-17", + "value": 9304312 + }, + { + "date": "2014-04-18", + "value": 8199457 + }, + { + "date": "2014-04-19", + "value": 8926136 + }, + { + "date": "2014-04-20", + "value": 7558184 + }, + { + "date": "2014-04-21", + "value": 6417511 + }, + { + "date": "2014-04-22", + "value": 5748831 + }, + { + "date": "2014-04-23", + "value": 6503022 + }, + { + "date": "2014-04-24", + "value": 6429606 + }, + { + "date": "2014-04-25", + "value": 5057410 + }, + { + "date": "2014-04-26", + "value": 5924669 + }, + { + "date": "2014-04-27", + "value": 4728239 + }, + { + "date": "2014-04-28", + "value": 3918540 + }, + { + "date": "2014-04-29", + "value": 2821473 + }, + { + "date": "2014-04-30", + "value": 1995781 + }, + { + "date": "2014-05-01", + "value": 1123626 + }, + { + "date": "2014-05-02", + "value": 516067 + }, + { + "date": "2014-05-03", + "value": 816831 + }, + { + "date": "2014-05-04", + "value": 816831 + }, + { + "date": "2014-05-05", + "value": 816831 + }, + { + "date": "2014-05-06", + "value": 1103818 + }, + { + "date": "2014-05-07", + "value": 958188 + }, + { + "date": "2014-05-08", + "value": 592995 + }, + { + "date": "2014-05-09", + "value": 856066 + }, + { + "date": "2014-05-10", + "value": 1766761 + }, + { + "date": "2014-05-11", + "value": 1330557 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-2.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-2.json new file mode 100644 index 0000000..6bea2bc --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/brief-2.json @@ -0,0 +1,402 @@ +[ + { + "date": "2014-02-01", + "value": 15000000 + }, + { + "date": "2014-02-02", + "value": 14603908 + }, + { + "date": "2014-02-03", + "value": 16058813 + }, + { + "date": "2014-02-04", + "value": 16751442 + }, + { + "date": "2014-02-05", + "value": 18236063 + }, + { + "date": "2014-02-06", + "value": 19276343 + }, + { + "date": "2014-02-07", + "value": 17869996 + }, + { + "date": "2014-02-08", + "value": 18283550 + }, + { + "date": "2014-02-09", + "value": 18146798 + }, + { + "date": "2014-02-10", + "value": 19114034 + }, + { + "date": "2014-02-11", + "value": 18243994 + }, + { + "date": "2014-02-12", + "value": 18230379 + }, + { + "date": "2014-02-13", + "value": 17569438 + }, + { + "date": "2014-02-14", + "value": 18237141 + }, + { + "date": "2014-02-15", + "value": 18177790 + }, + { + "date": "2014-02-16", + "value": 19278138 + }, + { + "date": "2014-02-17", + "value": 19520468 + }, + { + "date": "2014-02-18", + "value": 18074007 + }, + { + "date": "2014-02-19", + "value": 17387983 + }, + { + "date": "2014-02-20", + "value": 16303246 + }, + { + "date": "2014-02-21", + "value": 16532377 + }, + { + "date": "2014-02-22", + "value": 15992596 + }, + { + "date": "2014-02-23", + "value": 14510598 + }, + { + "date": "2014-02-24", + "value": 15242619 + }, + { + "date": "2014-02-25", + "value": 15099566 + }, + { + "date": "2014-02-26", + "value": 15786161 + }, + { + "date": "2014-02-27", + "value": 17041993 + }, + { + "date": "2014-02-28", + "value": 17792064 + }, + { + "date": "2014-03-01", + "value": 17135803 + }, + { + "date": "2014-03-02", + "value": 17902796 + }, + { + "date": "2014-03-03", + "value": 18082480 + }, + { + "date": "2014-03-04", + "value": 16599484 + }, + { + "date": "2014-03-05", + "value": 15556006 + }, + { + "date": "2014-03-06", + "value": 16095932 + }, + { + "date": "2014-03-07", + "value": 15877165 + }, + { + "date": "2014-03-08", + "value": 16184507 + }, + { + "date": "2014-03-09", + "value": 17578551 + }, + { + "date": "2014-03-10", + "value": 17397416 + }, + { + "date": "2014-03-11", + "value": 18665547 + }, + { + "date": "2014-03-12", + "value": 17599363 + }, + { + "date": "2014-03-13", + "value": 16625060 + }, + { + "date": "2014-03-14", + "value": 15823403 + }, + { + "date": "2014-03-15", + "value": 17166280 + }, + { + "date": "2014-03-16", + "value": 17214931 + }, + { + "date": "2014-03-17", + "value": 18057950 + }, + { + "date": "2014-03-18", + "value": 18467657 + }, + { + "date": "2014-03-19", + "value": 18174411 + }, + { + "date": "2014-03-20", + "value": 17726332 + }, + { + "date": "2014-03-21", + "value": 18624889 + }, + { + "date": "2014-03-22", + "value": 18442598 + }, + { + "date": "2014-03-23", + "value": 17924421 + }, + { + "date": "2014-03-24", + "value": 17943620 + }, + { + "date": "2014-03-25", + "value": 17787115 + }, + { + "date": "2014-03-26", + "value": 16707201 + }, + { + "date": "2014-03-27", + "value": 17013779 + }, + { + "date": "2014-03-28", + "value": 17468840 + }, + { + "date": "2014-03-29", + "value": 16855965 + }, + { + "date": "2014-03-30", + "value": 16198783 + }, + { + "date": "2014-03-31", + "value": 17237410 + }, + { + "date": "2014-04-01", + "value": 16157939 + }, + { + "date": "2014-04-02", + "value": 15279153 + }, + { + "date": "2014-04-03", + "value": 16007123 + }, + { + "date": "2014-04-04", + "value": 15394272 + }, + { + "date": "2014-04-05", + "value": 15753468 + }, + { + "date": "2014-04-06", + "value": 14785435 + }, + { + "date": "2014-04-07", + "value": 14894846 + }, + { + "date": "2014-04-08", + "value": 16113018 + }, + { + "date": "2014-04-09", + "value": 17083579 + }, + { + "date": "2014-04-10", + "value": 17318911 + }, + { + "date": "2014-04-11", + "value": 17301918 + }, + { + "date": "2014-04-12", + "value": 16294357 + }, + { + "date": "2014-04-13", + "value": 17006382 + }, + { + "date": "2014-04-14", + "value": 16305037 + }, + { + "date": "2014-04-15", + "value": 17173934 + }, + { + "date": "2014-04-16", + "value": 16519521 + }, + { + "date": "2014-04-17", + "value": 15741197 + }, + { + "date": "2014-04-18", + "value": 15685527 + }, + { + "date": "2014-04-19", + "value": 16593307 + }, + { + "date": "2014-04-20", + "value": 15108037 + }, + { + "date": "2014-04-21", + "value": 14280930 + }, + { + "date": "2014-04-22", + "value": 15048575 + }, + { + "date": "2014-04-23", + "value": 13925294 + }, + { + "date": "2014-04-24", + "value": 13655381 + }, + { + "date": "2014-04-25", + "value": 14083620 + }, + { + "date": "2014-04-26", + "value": 14390459 + }, + { + "date": "2014-04-27", + "value": 14253026 + }, + { + "date": "2014-04-28", + "value": 15524371 + }, + { + "date": "2014-04-29", + "value": 14810508 + }, + { + "date": "2014-04-30", + "value": 14942971 + }, + { + "date": "2014-05-01", + "value": 13849556 + }, + { + "date": "2014-05-02", + "value": 14811628 + }, + { + "date": "2014-05-03", + "value": 13489786 + }, + { + "date": "2014-05-04", + "value": 13875740 + }, + { + "date": "2014-05-05", + "value": 14581874 + }, + { + "date": "2014-05-06", + "value": 15856637 + }, + { + "date": "2014-05-07", + "value": 15377926 + }, + { + "date": "2014-05-08", + "value": 14523507 + }, + { + "date": "2014-05-09", + "value": 14629800 + }, + { + "date": "2014-05-10", + "value": 14018497 + }, + { + "date": "2014-05-11", + "value": 12917428 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/confidence_band.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/confidence_band.json new file mode 100644 index 0000000..0fb6dea --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/confidence_band.json @@ -0,0 +1,548 @@ + [ + { + "value": -1.1618426259, + "date": "2012-08-28", + "l": -2.6017329022, + "u": 0.2949717757 + }, + { + "value": -0.5828247293, + "date": "2012-08-29", + "l": -1.3166963635, + "u": 0.1324086347 + }, + { + "value": -0.3790770636, + "date": "2012-08-30", + "l": -0.8712221305, + "u": 0.0956413566 + }, + { + "value": -0.2792926002, + "date": "2012-08-31", + "l": -0.6541832008, + "u": 0.0717120241 + }, + { + "value": -0.2461165469, + "date": "2012-09-01", + "l": -0.5222677907, + "u": 0.0594188803 + }, + { + "value": -0.2017354137, + "date": "2012-09-02", + "l": -0.4434280535, + "u": 0.0419213465 + }, + { + "value": -0.1457476871, + "date": "2012-09-03", + "l": -0.3543957712, + "u": 0.0623761171 + }, + { + "value": -0.002610973, + "date": "2012-09-04", + "l": -0.3339911495, + "u": 0.031286929 + }, + { + "value": -0.0080692734, + "date": "2012-09-05", + "l": -0.2951839941, + "u": 0.0301762553 + }, + { + "value": -0.0296490933, + "date": "2012-09-06", + "l": -0.2964395801, + "u": -0.0029821004 + }, + { + "value": 0.001317397, + "date": "2012-09-07", + "l": -0.2295443759, + "u": 0.037903312 + }, + { + "value": -0.0117649838, + "date": "2012-09-08", + "l": -0.2226376418, + "u": 0.0239720183 + }, + { + "value": 0.0059394263, + "date": "2012-09-09", + "l": -0.2020479849, + "u": 0.0259489347 + }, + { + "value": -0.0115565898, + "date": "2012-09-10", + "l": -0.2042048037, + "u": 0.0077863806 + }, + { + "value": 0.0041183019, + "date": "2012-09-11", + "l": -0.1837263172, + "u": 0.0137898406 + }, + { + "value": 0.0353559544, + "date": "2012-09-12", + "l": -0.136610008, + "u": 0.051403828 + }, + { + "value": 0.0070046011, + "date": "2012-09-13", + "l": -0.1569988647, + "u": 0.0202266411 + }, + { + "value": -0.0004251807, + "date": "2012-09-14", + "l": -0.1410340292, + "u": 0.0273410185 + }, + { + "value": -0.0035461023, + "date": "2012-09-15", + "l": -0.1438653689, + "u": 0.0165445684 + }, + { + "value": 0.007797889, + "date": "2012-09-16", + "l": -0.1291975355, + "u": 0.0232461153 + }, + { + "value": 0.0025402723, + "date": "2012-09-17", + "l": -0.133972479, + "u": 0.0116753921 + }, + { + "value": -0.005317381, + "date": "2012-09-18", + "l": -0.1269266586, + "u": 0.0129723291 + }, + { + "value": -0.0075841521, + "date": "2012-09-19", + "l": -0.1283478383, + "u": 0.0056371616 + }, + { + "value": -0.0391388721, + "date": "2012-09-20", + "l": -0.1571172198, + "u": -0.0311678828 + }, + { + "value": 0.0075430252, + "date": "2012-09-21", + "l": -0.1097354417, + "u": 0.0141132062 + }, + { + "value": 0.1850284663, + "date": "2012-09-22", + "l": 0.0333682152, + "u": 0.2140709422 + }, + { + "value": 0.076629596, + "date": "2012-09-23", + "l": -0.0068472967, + "u": 0.1101280569 + }, + { + "value": -0.0314292271, + "date": "2012-09-24", + "l": -0.1074281762, + "u": 0.0032669363 + }, + { + "value": -0.0232608674, + "date": "2012-09-25", + "l": -0.0905197842, + "u": 0.0164250295 + }, + { + "value": -0.01968615, + "date": "2012-09-26", + "l": -0.084319856, + "u": 0.0193319465 + }, + { + "value": -0.0310196816, + "date": "2012-09-27", + "l": -0.0914356781, + "u": 0.0094436256 + }, + { + "value": -0.0758746967, + "date": "2012-09-28", + "l": -0.1169814745, + "u": -0.019659551 + }, + { + "value": 0.0233974572, + "date": "2012-09-29", + "l": -0.0356839258, + "u": 0.0610712506 + }, + { + "value": 0.011073579, + "date": "2012-09-30", + "l": -0.0558712863, + "u": 0.0346160081 + }, + { + "value": -0.002094822, + "date": "2012-10-01", + "l": -0.0707143388, + "u": 0.0152899266 + }, + { + "value": -0.1083707096, + "date": "2012-10-02", + "l": -0.1718101335, + "u": -0.0886271057 + }, + { + "value": -0.1098258972, + "date": "2012-10-03", + "l": -0.1881274065, + "u": -0.1072157972 + }, + { + "value": -0.0872970297, + "date": "2012-10-04", + "l": -0.1731903321, + "u": -0.064381434 + }, + { + "value": -0.0761992047, + "date": "2012-10-05", + "l": -0.1770373817, + "u": 0.100085727 + }, + { + "value": -0.0416654249, + "date": "2012-10-06", + "l": -0.1502479611, + "u": 0.0751148102 + }, + { + "value": -0.0410128962, + "date": "2012-10-07", + "l": -0.1618694445, + "u": 0.0881453482 + }, + { + "value": -0.0214289042, + "date": "2012-10-08", + "l": -0.1590852977, + "u": 0.0871880288 + }, + { + "value": 0.2430880604, + "date": "2012-10-09", + "l": 0.063624221, + "u": 0.2455101587 + }, + { + "value": 0.3472823479, + "date": "2012-10-10", + "l": 0.1553854927, + "u": 0.3583991097 + }, + { + "value": 0.3360734074, + "date": "2012-10-11", + "l": 0.2055952772, + "u": 0.3812162823 + }, + { + "value": -0.0463648355, + "date": "2012-10-12", + "l": -0.0626466998, + "u": 0.0037342957 + }, + { + "value": -0.0867009379, + "date": "2012-10-13", + "l": -0.0867594055, + "u": -0.0223791074 + }, + { + "value": -0.1288672826, + "date": "2012-10-14", + "l": -0.1161709129, + "u": -0.0534789124 + }, + { + "value": -0.1474426821, + "date": "2012-10-15", + "l": -0.1559759048, + "u": -0.0646995092 + }, + { + "value": -0.1502405066, + "date": "2012-10-16", + "l": -0.1604364638, + "u": -0.0602562376 + }, + { + "value": -0.1203765529, + "date": "2012-10-17", + "l": -0.1569023195, + "u": -0.0578129637 + }, + { + "value": -0.0649122919, + "date": "2012-10-18", + "l": -0.0782987564, + "u": -0.0501999174 + }, + { + "value": -0.015525562, + "date": "2012-10-19", + "l": -0.1103873808, + "u": -0.0132131311 + }, + { + "value": -0.006051357, + "date": "2012-10-20", + "l": -0.1089644497, + "u": 0.0230384197 + }, + { + "value": 0.0003154213, + "date": "2012-10-21", + "l": -0.1073849227, + "u": 0.0017290437 + }, + { + "value": -0.0063018298, + "date": "2012-10-22", + "l": -0.1120298155, + "u": 0.0173284555 + }, + { + "value": -0.004294834, + "date": "2012-10-23", + "l": -0.1076841119, + "u": 0.0547933965 + }, + { + "value": -0.0053400832, + "date": "2012-10-24", + "l": -0.1096991408, + "u": 0.0560555803 + }, + { + "value": 0.0070057212, + "date": "2012-10-25", + "l": -0.0940613813, + "u": 0.0425517607 + }, + { + "value": 0.0082121656, + "date": "2012-10-26", + "l": -0.0906810455, + "u": 0.0396884383 + }, + { + "value": 0.0141422884, + "date": "2012-10-27", + "l": -0.0841305678, + "u": 0.0340050012 + }, + { + "value": 0.0041613553, + "date": "2012-10-28", + "l": -0.0886723749, + "u": 0.039426727 + }, + { + "value": -0.0013614287, + "date": "2012-10-29", + "l": -0.0923481608, + "u": 0.0438725574 + }, + { + "value": -0.0052144933, + "date": "2012-10-30", + "l": -0.0937763043, + "u": 0.0459998555 + }, + { + "value": 0.0078904741, + "date": "2012-10-31", + "l": -0.0807028001, + "u": 0.0334824169 + }, + { + "value": 0.0099598702, + "date": "2012-11-01", + "l": -0.0740001323, + "u": 0.0280264274 + }, + { + "value": 0.0001146029, + "date": "2012-11-02", + "l": -0.0820430294, + "u": 0.0326771125 + }, + { + "value": 0.0047572651, + "date": "2012-11-03", + "l": -0.0754113825, + "u": 0.0294912577 + }, + { + "value": 0.006204557, + "date": "2012-11-04", + "l": -0.0750627059, + "u": 0.029693607 + }, + { + "value": 0.0115231406, + "date": "2012-11-05", + "l": -0.0663484142, + "u": 0.0214084056 + }, + { + "value": -0.0032634994, + "date": "2012-11-06", + "l": -0.0793170451, + "u": 0.0355159827 + }, + { + "value": -0.0108985452, + "date": "2012-11-07", + "l": -0.0846123893, + "u": 0.0409797057 + }, + { + "value": -0.0092766813, + "date": "2012-11-08", + "l": -0.0802668328, + "u": 0.0373886301 + }, + { + "value": 0.0095972086, + "date": "2012-11-09", + "l": -0.0623739694, + "u": 0.0194918693 + }, + { + "value": -0.0111809358, + "date": "2012-11-10", + "l": -0.0819555908, + "u": 0.038335749 + }, + { + "value": -0.0023572296, + "date": "2012-11-11", + "l": -0.0745443377, + "u": 0.0306093592 + }, + { + "value": 0.0084213775, + "date": "2012-11-12", + "l": -0.0657707155, + "u": 0.0227270619 + }, + { + "value": 0.0107446453, + "date": "2012-11-13", + "l": -0.0617995017, + "u": 0.0196547867 + }, + { + "value": 0.009457792, + "date": "2012-11-14", + "l": -0.0597697849, + "u": 0.0191832343 + }, + { + "value": 0.0031194779, + "date": "2012-11-15", + "l": -0.0589126783, + "u": 0.0186409442 + }, + { + "value": -0.0115128213, + "date": "2012-11-16", + "l": -0.0767105447, + "u": 0.0370292452 + }, + { + "value": 0.0058347339, + "date": "2012-11-17", + "l": -0.0592236472, + "u": 0.0198181452 + }, + { + "value": -0.0235630436, + "date": "2012-11-18", + "l": -0.083529944, + "u": 0.046280909 + }, + { + "value": -0.0479795964, + "date": "2012-11-19", + "l": -0.1086422529, + "u": 0.0113044645 + }, + { + "value": -0.0218184359, + "date": "2012-11-21", + "l": -0.0881634878, + "u": 0.0448568265 + }, + { + "value": -0.0071361172, + "date": "2012-11-28", + "l": -0.0807350229, + "u": 0.0453599734 + }, + { + "value": -0.0151966912, + "date": "2012-12-05", + "l": -0.089995793, + "u": 0.0558329569 + }, + { + "value": -0.0097784855, + "date": "2012-12-12", + "l": -0.089466481, + "u": 0.0550191387 + }, + { + "value": -0.0095681495, + "date": "2012-12-19", + "l": -0.090513354, + "u": 0.057073314 + }, + { + "value": -0.0034165915, + "date": "2012-12-27", + "l": -0.0907151292, + "u": 0.0561479112 + }, + { + "value": 0.3297981389, + "date": "2012-12-31", + "l": 0.1537781522, + "u": 0.3499473316 + } + ] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users1.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users1.json new file mode 100644 index 0000000..4550c0f --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users1.json @@ -0,0 +1,483 @@ + + [ + { + "date": "2014-01-01", + "value": 190000000 + }, + { + "date": "2014-01-02", + "value": 190379978 + }, + { + "date": "2014-01-03", + "value": 90493749 + }, + { + "date": "2014-01-04", + "value": 190785250 + }, + { + "date": "2014-01-05", + "value": 197391904 + }, + { + "date": "2014-01-06", + "value": 191576838 + }, + { + "date": "2014-01-07", + "value": 191413854 + }, + { + "date": "2014-01-08", + "value": 142177211 + }, + { + "date": "2014-01-09", + "value": 103762210 + }, + { + "date": "2014-01-10", + "value": 144381072 + }, + { + "date": "2014-01-11", + "value": 154352310 + }, + { + "date": "2014-01-12", + "value": 165531790 + }, + { + "date": "2014-01-13", + "value": 175748881 + }, + { + "date": "2014-01-14", + "value": 187064037 + }, + { + "date": "2014-01-15", + "value": 197520685 + }, + { + "date": "2014-01-16", + "value": 210176418 + }, + { + "date": "2014-01-17", + "value": 196122924 + }, + { + "date": "2014-01-18", + "value": 157337480 + }, + { + "date": "2014-01-19", + "value": 200258882 + }, + { + "date": "2014-01-20", + "value": 186829538 + }, + { + "date": "2014-01-21", + "value": 112456897 + }, + { + "date": "2014-01-22", + "value": 114299711 + }, + { + "date": "2014-01-23", + "value": 122759017 + }, + { + "date": "2014-01-24", + "value": 203596183 + }, + { + "date": "2014-01-25", + "value": 208107346 + }, + { + "date": "2014-01-26", + "value": 196359852 + }, + { + "date": "2014-01-27", + "value": 192570783 + }, + { + "date": "2014-01-28", + "value": 177967768 + }, + { + "date": "2014-01-29", + "value": 190632803 + }, + { + "date": "2014-01-30", + "value": 203725316 + }, + { + "date": "2014-01-31", + "value": 118226177 + }, + { + "date": "2014-02-01", + "value": 210698669 + }, + { + "date": "2014-02-02", + "value": 217640656 + }, + { + "date": "2014-02-03", + "value": 216142362 + }, + { + "date": "2014-02-04", + "value": 201410971 + }, + { + "date": "2014-02-05", + "value": 196704289 + }, + { + "date": "2014-02-06", + "value": 190436945 + }, + { + "date": "2014-02-07", + "value": 178891686 + }, + { + "date": "2014-02-08", + "value": 171613962 + }, + { + "date": "2014-02-09", + "value": 107579773 + }, + { + "date": "2014-02-10", + "value": 158677098 + }, + { + "date": "2014-02-11", + "value": 147129977 + }, + { + "date": "2014-02-12", + "value": 151561876 + }, + { + "date": "2014-02-13", + "value": 151627421 + }, + { + "date": "2014-02-14", + "value": 143543872 + }, + { + "date": "2014-02-15", + "value": 136581057 + }, + { + "date": "2014-02-16", + "value": 135560715 + }, + { + "date": "2014-02-17", + "value": 122625263 + }, + { + "date": "2014-02-18", + "value": 112091484 + }, + { + "date": "2014-02-19", + "value": 98810329 + }, + { + "date": "2014-02-20", + "value": 99882912 + }, + { + "date": "2014-02-21", + "value": 94943095 + }, + { + "date": "2014-02-22", + "value": 104875743 + }, + { + "date": "2014-02-23", + "value": 116383678 + }, + { + "date": "2014-02-24", + "value": 105028841 + }, + { + "date": "2014-02-25", + "value": 123967310 + }, + { + "date": "2014-02-26", + "value": 133167029 + }, + { + "date": "2014-02-27", + "value": 128577263 + }, + { + "date": "2014-02-28", + "value": 115836969 + }, + { + "date": "2014-03-01", + "value": 119264529 + }, + { + "date": "2014-03-02", + "value": 109363374 + }, + { + "date": "2014-03-03", + "value": 113985628 + }, + { + "date": "2014-03-04", + "value": 114650999 + }, + { + "date": "2014-03-05", + "value": 110866108 + }, + { + "date": "2014-03-06", + "value": 96473454 + }, + { + "date": "2014-03-07", + "value": 84075886 + }, + { + "date": "2014-03-08", + "value": 103568384 + }, + { + "date": "2014-03-09", + "value": 101534883 + }, + { + "date": "2014-03-10", + "value": 115825447 + }, + { + "date": "2014-03-11", + "value": 126133916 + }, + { + "date": "2014-03-12", + "value": 116502109 + }, + { + "date": "2014-03-13", + "value": 80169411 + }, + { + "date": "2014-03-14", + "value": 84296886 + }, + { + "date": "2014-03-15", + "value": 86347399 + }, + { + "date": "2014-03-16", + "value": 31483669 + }, + { + "date": "2014-03-17", + "value": 142811333 + }, + { + "date": "2014-03-18", + "value": 89675396 + }, + { + "date": "2014-03-19", + "value": 115514483 + }, + { + "date": "2014-03-20", + "value": 117630630 + }, + { + "date": "2014-03-21", + "value": 122340239 + }, + { + "date": "2014-03-22", + "value": 132349091 + }, + { + "date": "2014-03-23", + "value": 125613305 + }, + { + "date": "2014-03-24", + "value": 135592466 + }, + { + "date": "2014-03-25", + "value": 123408762 + }, + { + "date": "2014-03-26", + "value": 111991454 + }, + { + "date": "2014-03-27", + "value": 116123955 + }, + { + "date": "2014-03-28", + "value": 112817214 + }, + { + "date": "2014-03-29", + "value": 113029590 + }, + { + "date": "2014-03-30", + "value": 108753398 + }, + { + "date": "2014-03-31", + "value": 99383763 + }, + { + "date": "2014-04-01", + "value": 100151737 + }, + { + "date": "2014-04-02", + "value": 94985209 + }, + { + "date": "2014-04-03", + "value": 82913669 + }, + { + "date": "2014-04-04", + "value": 78748268 + }, + { + "date": "2014-04-05", + "value": 63829135 + }, + { + "date": "2014-04-06", + "value": 78694727 + }, + { + "date": "2014-04-07", + "value": 80868994 + }, + { + "date": "2014-04-08", + "value": 93799013 + }, + { + "date": "2014-04-09", + "value": 9042416 + }, + { + "date": "2014-04-10", + "value": 97298692 + }, + { + "date": "2014-04-11", + "value": 53353499 + }, + { + "date": "2014-04-12", + "value": 71248129 + }, + { + "date": "2014-04-13", + "value": 75253744 + }, + { + "date": "2014-04-14", + "value": 68976648 + }, + { + "date": "2014-04-15", + "value": 71002284 + }, + { + "date": "2014-04-16", + "value": 75052401 + }, + { + "date": "2014-04-17", + "value": 83894030 + }, + { + "date": "2014-04-18", + "value": 50236528 + }, + { + "date": "2014-04-19", + "value": 59739114 + }, + { + "date": "2014-04-20", + "value": 56407136 + }, + { + "date": "2014-04-21", + "value": 108323177 + }, + { + "date": "2014-04-22", + "value": 101578914 + }, + { + "date": "2014-04-23", + "value": 115877608 + }, + { + "date": "2014-04-24", + "value": 132088857 + }, + { + "date": "2014-04-25", + "value": 112071353 + }, + { + "date": "2014-04-26", + "value": 81790062 + }, + { + "date": "2014-04-27", + "value": 105003761 + }, + { + "date": "2014-04-28", + "value": 100457727 + }, + { + "date": "2014-04-29", + "value": 118253926 + }, + { + "date": "2014-04-30", + "value": 67956992 + } + ] diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users2.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users2.json new file mode 100644 index 0000000..7fc5842 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users2.json @@ -0,0 +1,1448 @@ +[ + [ + { + "date": "2014-01-01", + "value": 10000000 + }, + { + "date": "2014-01-02", + "value": 10379978 + }, + { + "date": "2014-01-03", + "value": 10493749 + }, + { + "date": "2014-01-04", + "value": 10785250 + }, + { + "date": "2014-01-05", + "value": 13901904 + }, + { + "date": "2014-01-06", + "value": 11576838 + }, + { + "date": "2014-01-07", + "value": 14413854 + }, + { + "date": "2014-01-08", + "value": 15177211 + }, + { + "date": "2014-01-09", + "value": 16622100 + }, + { + "date": "2014-01-10", + "value": 17381072 + }, + { + "date": "2014-01-11", + "value": 18802310 + }, + { + "date": "2014-01-12", + "value": 15531790 + }, + { + "date": "2014-01-13", + "value": 15748881 + }, + { + "date": "2014-01-14", + "value": 18706437 + }, + { + "date": "2014-01-15", + "value": 19752685 + }, + { + "date": "2014-01-16", + "value": 21016418 + }, + { + "date": "2014-01-17", + "value": 25622924 + }, + { + "date": "2014-01-18", + "value": 25337480 + }, + { + "date": "2014-01-19", + "value": 22258882 + }, + { + "date": "2014-01-20", + "value": 23829538 + }, + { + "date": "2014-01-21", + "value": 24245689 + }, + { + "date": "2014-01-22", + "value": 26429711 + }, + { + "date": "2014-01-23", + "value": 26259017 + }, + { + "date": "2014-01-24", + "value": 25396183 + }, + { + "date": "2014-01-25", + "value": 23107346 + }, + { + "date": "2014-01-26", + "value": 28659852 + }, + { + "date": "2014-01-27", + "value": 25270783 + }, + { + "date": "2014-01-28", + "value": 26270783 + }, + { + "date": "2014-01-29", + "value": 27270783 + }, + { + "date": "2014-01-30", + "value": 28270783 + }, + { + "date": "2014-01-31", + "value": 29270783 + }, + { + "date": "2014-02-01", + "value": 30270783 + }, + { + "date": "2014-02-02", + "value": 31270783 + }, + { + "date": "2014-02-03", + "value": 32270783 + }, + { + "date": "2014-02-04", + "value": 33270783 + }, + { + "date": "2014-02-05", + "value": 28270783 + }, + { + "date": "2014-02-06", + "value": 27270783 + }, + { + "date": "2014-02-07", + "value": 35270783 + }, + { + "date": "2014-02-08", + "value": 34270783 + }, + { + "date": "2014-02-09", + "value": 28270783 + }, + { + "date": "2014-02-10", + "value": 35270783 + }, + { + "date": "2014-02-11", + "value": 36270783 + }, + { + "date": "2014-02-12", + "value": 34127078 + }, + { + "date": "2014-02-13", + "value": 33124078 + }, + { + "date": "2014-02-14", + "value": 36227078 + }, + { + "date": "2014-02-15", + "value": 37827078 + }, + { + "date": "2014-02-16", + "value": 36427073 + }, + { + "date": "2014-02-17", + "value": 37570783 + }, + { + "date": "2014-02-18", + "value": 38627073 + }, + { + "date": "2014-02-19", + "value": 37727078 + }, + { + "date": "2014-02-20", + "value": 38827073 + }, + { + "date": "2014-02-21", + "value": 40927078 + }, + { + "date": "2014-02-22", + "value": 41027078 + }, + { + "date": "2014-02-23", + "value": 42127073 + }, + { + "date": "2014-02-24", + "value": 43220783 + }, + { + "date": "2014-02-25", + "value": 44327078 + }, + { + "date": "2014-02-26", + "value": 40427078 + }, + { + "date": "2014-02-27", + "value": 41027078 + }, + { + "date": "2014-02-28", + "value": 45627078 + }, + { + "date": "2014-03-01", + "value": 44727078 + }, + { + "date": "2014-03-02", + "value": 44227078 + }, + { + "date": "2014-03-03", + "value": 45227078 + }, + { + "date": "2014-03-04", + "value": 46027078 + }, + { + "date": "2014-03-05", + "value": 46927078 + }, + { + "date": "2014-03-06", + "value": 47027078 + }, + { + "date": "2014-03-07", + "value": 46227078 + }, + { + "date": "2014-03-08", + "value": 47027078 + }, + { + "date": "2014-03-09", + "value": 48027078 + }, + { + "date": "2014-03-10", + "value": 47027078 + }, + { + "date": "2014-03-11", + "value": 47027078 + }, + { + "date": "2014-03-12", + "value": 48017078 + }, + { + "date": "2014-03-13", + "value": 48077078 + }, + { + "date": "2014-03-14", + "value": 48087078 + }, + { + "date": "2014-03-15", + "value": 48017078 + }, + { + "date": "2014-03-16", + "value": 48047078 + }, + { + "date": "2014-03-17", + "value": 48067078 + }, + { + "date": "2014-03-18", + "value": 48077078 + }, + { + "date": "2014-03-19", + "value": 48027074 + }, + { + "date": "2014-03-20", + "value": 48927079 + }, + { + "date": "2014-03-21", + "value": 48727071 + }, + { + "date": "2014-03-22", + "value": 48127072 + }, + { + "date": "2014-03-23", + "value": 48527072 + }, + { + "date": "2014-03-24", + "value": 48627027 + }, + { + "date": "2014-03-25", + "value": 48027040 + }, + { + "date": "2014-03-26", + "value": 48027043 + }, + { + "date": "2014-03-27", + "value": 48057022 + }, + { + "date": "2014-03-28", + "value": 49057022 + }, + { + "date": "2014-03-29", + "value": 50057022 + }, + { + "date": "2014-03-30", + "value": 51057022 + }, + { + "date": "2014-03-31", + "value": 52057022 + }, + { + "date": "2014-04-01", + "value": 53057022 + }, + { + "date": "2014-04-02", + "value": 54057022 + }, + { + "date": "2014-04-03", + "value": 52057022 + }, + { + "date": "2014-04-04", + "value": 55057022 + }, + { + "date": "2014-04-05", + "value": 58270783 + }, + { + "date": "2014-04-06", + "value": 56270783 + }, + { + "date": "2014-04-07", + "value": 55270783 + }, + { + "date": "2014-04-08", + "value": 58270783 + }, + { + "date": "2014-04-09", + "value": 59270783 + }, + { + "date": "2014-04-10", + "value": 60270783 + }, + { + "date": "2014-04-11", + "value": 61270783 + }, + { + "date": "2014-04-12", + "value": 62270783 + }, + { + "date": "2014-04-13", + "value": 63270783 + }, + { + "date": "2014-04-14", + "value": 64270783 + }, + { + "date": "2014-04-15", + "value": 65270783 + }, + { + "date": "2014-04-16", + "value": 66270783 + }, + { + "date": "2014-04-17", + "value": 67270783 + }, + { + "date": "2014-04-18", + "value": 68270783 + }, + { + "date": "2014-04-19", + "value": 69270783 + }, + { + "date": "2014-04-20", + "value": 70270783 + }, + { + "date": "2014-04-21", + "value": 71270783 + }, + { + "date": "2014-04-22", + "value": 72270783 + }, + { + "date": "2014-04-23", + "value": 73270783 + }, + { + "date": "2014-04-24", + "value": 74270783 + }, + { + "date": "2014-04-25", + "value": 75270783 + }, + { + "date": "2014-04-26", + "value": 76660783 + }, + { + "date": "2014-04-27", + "value": 77270783 + }, + { + "date": "2014-04-28", + "value": 78370783 + }, + { + "date": "2014-04-29", + "value": 79470783 + }, + { + "date": "2014-04-30", + "value": 80170783 + } + ], + [ + { + "date": "2014-01-01", + "value": 150000000 + }, + { + "date": "2014-01-02", + "value": 160379978 + }, + { + "date": "2014-01-03", + "value": 170493749 + }, + { + "date": "2014-01-04", + "value": 160785250 + }, + { + "date": "2014-01-05", + "value": 167391904 + }, + { + "date": "2014-01-06", + "value": 161576838 + }, + { + "date": "2014-01-07", + "value": 161413854 + }, + { + "date": "2014-01-08", + "value": 152177211 + }, + { + "date": "2014-01-09", + "value": 143762210 + }, + { + "date": "2014-01-10", + "value": 144381072 + }, + { + "date": "2014-01-11", + "value": 154352310 + }, + { + "date": "2014-01-12", + "value": 165531790 + }, + { + "date": "2014-01-13", + "value": 175748881 + }, + { + "date": "2014-01-14", + "value": 187064037 + }, + { + "date": "2014-01-15", + "value": 197520685 + }, + { + "date": "2014-01-16", + "value": 210176418 + }, + { + "date": "2014-01-17", + "value": 196122924 + }, + { + "date": "2014-01-18", + "value": 207337480 + }, + { + "date": "2014-01-19", + "value": 200258882 + }, + { + "date": "2014-01-20", + "value": 186829538 + }, + { + "date": "2014-01-21", + "value": 192456897 + }, + { + "date": "2014-01-22", + "value": 204299711 + }, + { + "date": "2014-01-23", + "value": 192759017 + }, + { + "date": "2014-01-24", + "value": 203596183 + }, + { + "date": "2014-01-25", + "value": 208107346 + }, + { + "date": "2014-01-26", + "value": 196359852 + }, + { + "date": "2014-01-27", + "value": 192570783 + }, + { + "date": "2014-01-28", + "value": 177967768 + }, + { + "date": "2014-01-29", + "value": 190632803 + }, + { + "date": "2014-01-30", + "value": 203725316 + }, + { + "date": "2014-01-31", + "value": 218226177 + }, + { + "date": "2014-02-01", + "value": 210698669 + }, + { + "date": "2014-02-02", + "value": 217640656 + }, + { + "date": "2014-02-03", + "value": 216142362 + }, + { + "date": "2014-02-04", + "value": 201410971 + }, + { + "date": "2014-02-05", + "value": 196704289 + }, + { + "date": "2014-02-06", + "value": 190436945 + }, + { + "date": "2014-02-07", + "value": 178891686 + }, + { + "date": "2014-02-08", + "value": 171613962 + }, + { + "date": "2014-02-09", + "value": 157579773 + }, + { + "date": "2014-02-10", + "value": 158677098 + }, + { + "date": "2014-02-11", + "value": 147129977 + }, + { + "date": "2014-02-12", + "value": 151561876 + }, + { + "date": "2014-02-13", + "value": 151627421 + }, + { + "date": "2014-02-14", + "value": 143543872 + }, + { + "date": "2014-02-15", + "value": 136581057 + }, + { + "date": "2014-02-16", + "value": 135560715 + }, + { + "date": "2014-02-17", + "value": 122625263 + }, + { + "date": "2014-02-18", + "value": 112091484 + }, + { + "date": "2014-02-19", + "value": 98810329 + }, + { + "date": "2014-02-20", + "value": 99882912 + }, + { + "date": "2014-02-21", + "value": 94943095 + }, + { + "date": "2014-02-22", + "value": 104875743 + }, + { + "date": "2014-02-23", + "value": 116383678 + }, + { + "date": "2014-02-24", + "value": 125028841 + }, + { + "date": "2014-02-25", + "value": 123967310 + }, + { + "date": "2014-02-26", + "value": 133167029 + }, + { + "date": "2014-02-27", + "value": 128577263 + }, + { + "date": "2014-02-28", + "value": 115836969 + }, + { + "date": "2014-03-01", + "value": 119264529 + }, + { + "date": "2014-03-02", + "value": 109363374 + }, + { + "date": "2014-03-03", + "value": 113985628 + }, + { + "date": "2014-03-04", + "value": 114650999 + }, + { + "date": "2014-03-05", + "value": 110866108 + }, + { + "date": "2014-03-06", + "value": 96473454 + }, + { + "date": "2014-03-07", + "value": 104075886 + }, + { + "date": "2014-03-08", + "value": 103568384 + }, + { + "date": "2014-03-09", + "value": 101534883 + }, + { + "date": "2014-03-10", + "value": 115825447 + }, + { + "date": "2014-03-11", + "value": 126133916 + }, + { + "date": "2014-03-12", + "value": 116502109 + }, + { + "date": "2014-03-13", + "value": 130169411 + }, + { + "date": "2014-03-14", + "value": 124296886 + }, + { + "date": "2014-03-15", + "value": 126347399 + }, + { + "date": "2014-03-16", + "value": 131483669 + }, + { + "date": "2014-03-17", + "value": 142811333 + }, + { + "date": "2014-03-18", + "value": 129675396 + }, + { + "date": "2014-03-19", + "value": 115514483 + }, + { + "date": "2014-03-20", + "value": 117630630 + }, + { + "date": "2014-03-21", + "value": 122340239 + }, + { + "date": "2014-03-22", + "value": 132349091 + }, + { + "date": "2014-03-23", + "value": 125613305 + }, + { + "date": "2014-03-24", + "value": 135592466 + }, + { + "date": "2014-03-25", + "value": 123408762 + }, + { + "date": "2014-03-26", + "value": 111991454 + }, + { + "date": "2014-03-27", + "value": 116123955 + }, + { + "date": "2014-03-28", + "value": 112817214 + }, + { + "date": "2014-03-29", + "value": 113029590 + }, + { + "date": "2014-03-30", + "value": 108753398 + }, + { + "date": "2014-03-31", + "value": 99383763 + }, + { + "date": "2014-04-01", + "value": 100151737 + }, + { + "date": "2014-04-02", + "value": 94985209 + }, + { + "date": "2014-04-03", + "value": 82913669 + }, + { + "date": "2014-04-04", + "value": 78748268 + }, + { + "date": "2014-04-05", + "value": 63829135 + }, + { + "date": "2014-04-06", + "value": 78694727 + }, + { + "date": "2014-04-07", + "value": 80868994 + }, + { + "date": "2014-04-08", + "value": 93799013 + }, + { + "date": "2014-04-09", + "value": 99042416 + }, + { + "date": "2014-04-10", + "value": 97298692 + }, + { + "date": "2014-04-11", + "value": 83353499 + }, + { + "date": "2014-04-12", + "value": 71248129 + }, + { + "date": "2014-04-13", + "value": 75253744 + }, + { + "date": "2014-04-14", + "value": 68976648 + }, + { + "date": "2014-04-15", + "value": 71002284 + }, + { + "date": "2014-04-16", + "value": 75052401 + }, + { + "date": "2014-04-17", + "value": 83894030 + }, + { + "date": "2014-04-18", + "value": 90236528 + }, + { + "date": "2014-04-19", + "value": 99739114 + }, + { + "date": "2014-04-20", + "value": 96407136 + }, + { + "date": "2014-04-21", + "value": 108323177 + }, + { + "date": "2014-04-22", + "value": 101578914 + }, + { + "date": "2014-04-23", + "value": 115877608 + }, + { + "date": "2014-04-24", + "value": 112088857 + }, + { + "date": "2014-04-25", + "value": 112071353 + }, + { + "date": "2014-04-26", + "value": 101790062 + }, + { + "date": "2014-04-27", + "value": 115003761 + }, + { + "date": "2014-04-28", + "value": 120457727 + }, + { + "date": "2014-04-29", + "value": 118253926 + }, + { + "date": "2014-04-30", + "value": 117956992 + } + ], + [ + { + "date": "2014-01-01", + "value": 60000000 + }, + { + "date": "2014-01-02", + "value": 60379978 + }, + { + "date": "2014-01-03", + "value": 40493749 + }, + { + "date": "2014-01-04", + "value": 60785250 + }, + { + "date": "2014-01-05", + "value": 67391904 + }, + { + "date": "2014-01-06", + "value": 61576838 + }, + { + "date": "2014-01-07", + "value": 61413854 + }, + { + "date": "2014-01-08", + "value": 82177211 + }, + { + "date": "2014-01-09", + "value": 103762210 + }, + { + "date": "2014-01-10", + "value": 84381072 + }, + { + "date": "2014-01-11", + "value": 54352310 + }, + { + "date": "2014-01-12", + "value": 65531790 + }, + { + "date": "2014-01-13", + "value": 75748881 + }, + { + "date": "2014-01-14", + "value": 47064037 + }, + { + "date": "2014-01-15", + "value": 67520685 + }, + { + "date": "2014-01-16", + "value": 60176418 + }, + { + "date": "2014-01-17", + "value": 66122924 + }, + { + "date": "2014-01-18", + "value": 57337480 + }, + { + "date": "2014-01-19", + "value": 100258882 + }, + { + "date": "2014-01-20", + "value": 46829538 + }, + { + "date": "2014-01-21", + "value": 92456897 + }, + { + "date": "2014-01-22", + "value": 94299711 + }, + { + "date": "2014-01-23", + "value": 62759017 + }, + { + "date": "2014-01-24", + "value": 103596183 + }, + { + "date": "2014-01-25", + "value": 108107346 + }, + { + "date": "2014-01-26", + "value": 66359852 + }, + { + "date": "2014-01-27", + "value": 62570783 + }, + { + "date": "2014-01-28", + "value": 77967768 + }, + { + "date": "2014-01-29", + "value": 60632803 + }, + { + "date": "2014-01-30", + "value": 103725316 + }, + { + "date": "2014-01-31", + "value": 98226177 + }, + { + "date": "2014-02-01", + "value": 60698669 + }, + { + "date": "2014-02-02", + "value": 67640656 + }, + { + "date": "2014-02-03", + "value": 66142362 + }, + { + "date": "2014-02-04", + "value": 101410971 + }, + { + "date": "2014-02-05", + "value": 66704289 + }, + { + "date": "2014-02-06", + "value": 60436945 + }, + { + "date": "2014-02-07", + "value": 78891686 + }, + { + "date": "2014-02-08", + "value": 71613962 + }, + { + "date": "2014-02-09", + "value": 107579773 + }, + { + "date": "2014-02-10", + "value": 58677098 + }, + { + "date": "2014-02-11", + "value": 87129977 + }, + { + "date": "2014-02-12", + "value": 51561876 + }, + { + "date": "2014-02-13", + "value": 51627421 + }, + { + "date": "2014-02-14", + "value": 83543872 + }, + { + "date": "2014-02-15", + "value": 66581057 + }, + { + "date": "2014-02-16", + "value": 65560715 + }, + { + "date": "2014-02-17", + "value": 62625263 + }, + { + "date": "2014-02-18", + "value": 92091484 + }, + { + "date": "2014-02-19", + "value": 48810329 + }, + { + "date": "2014-02-20", + "value": 49882912 + }, + { + "date": "2014-02-21", + "value": 44943095 + }, + { + "date": "2014-02-22", + "value": 104875743 + }, + { + "date": "2014-02-23", + "value": 96383678 + }, + { + "date": "2014-02-24", + "value": 105028841 + }, + { + "date": "2014-02-25", + "value": 63967310 + }, + { + "date": "2014-02-26", + "value": 63167029 + }, + { + "date": "2014-02-27", + "value": 68577263 + }, + { + "date": "2014-02-28", + "value": 95836969 + }, + { + "date": "2014-03-01", + "value": 99264529 + }, + { + "date": "2014-03-02", + "value": 109363374 + }, + { + "date": "2014-03-03", + "value": 93985628 + }, + { + "date": "2014-03-04", + "value": 94650999 + }, + { + "date": "2014-03-05", + "value": 90866108 + }, + { + "date": "2014-03-06", + "value": 46473454 + }, + { + "date": "2014-03-07", + "value": 84075886 + }, + { + "date": "2014-03-08", + "value": 103568384 + }, + { + "date": "2014-03-09", + "value": 101534883 + }, + { + "date": "2014-03-10", + "value": 95825447 + }, + { + "date": "2014-03-11", + "value": 66133916 + }, + { + "date": "2014-03-12", + "value": 96502109 + }, + { + "date": "2014-03-13", + "value": 80169411 + }, + { + "date": "2014-03-14", + "value": 84296886 + }, + { + "date": "2014-03-15", + "value": 86347399 + }, + { + "date": "2014-03-16", + "value": 31483669 + }, + { + "date": "2014-03-17", + "value": 82811333 + }, + { + "date": "2014-03-18", + "value": 89675396 + }, + { + "date": "2014-03-19", + "value": 95514483 + }, + { + "date": "2014-03-20", + "value": 97630630 + }, + { + "date": "2014-03-21", + "value": 62340239 + }, + { + "date": "2014-03-22", + "value": 62349091 + }, + { + "date": "2014-03-23", + "value": 65613305 + }, + { + "date": "2014-03-24", + "value": 65592466 + }, + { + "date": "2014-03-25", + "value": 63408762 + }, + { + "date": "2014-03-26", + "value": 91991454 + }, + { + "date": "2014-03-27", + "value": 96123955 + }, + { + "date": "2014-03-28", + "value": 92817214 + }, + { + "date": "2014-03-29", + "value": 93029590 + }, + { + "date": "2014-03-30", + "value": 108753398 + }, + { + "date": "2014-03-31", + "value": 49383763 + }, + { + "date": "2014-04-01", + "value": 100151737 + }, + { + "date": "2014-04-02", + "value": 44985209 + }, + { + "date": "2014-04-03", + "value": 52913669 + }, + { + "date": "2014-04-04", + "value": 48748268 + }, + { + "date": "2014-04-05", + "value": 23829135 + }, + { + "date": "2014-04-06", + "value": 58694727 + }, + { + "date": "2014-04-07", + "value": 50868994 + }, + { + "date": "2014-04-08", + "value": 43799013 + }, + { + "date": "2014-04-09", + "value": 4042416 + }, + { + "date": "2014-04-10", + "value": 47298692 + }, + { + "date": "2014-04-11", + "value": 53353499 + }, + { + "date": "2014-04-12", + "value": 71248129 + }, + { + "date": "2014-04-13", + "value": 75253744 + }, + { + "date": "2014-04-14", + "value": 68976648 + }, + { + "date": "2014-04-15", + "value": 71002284 + }, + { + "date": "2014-04-16", + "value": 75052401 + }, + { + "date": "2014-04-17", + "value": 83894030 + }, + { + "date": "2014-04-18", + "value": 50236528 + }, + { + "date": "2014-04-19", + "value": 59739114 + }, + { + "date": "2014-04-20", + "value": 56407136 + }, + { + "date": "2014-04-21", + "value": 108323177 + }, + { + "date": "2014-04-22", + "value": 101578914 + }, + { + "date": "2014-04-23", + "value": 95877608 + }, + { + "date": "2014-04-24", + "value": 62088857 + }, + { + "date": "2014-04-25", + "value": 92071353 + }, + { + "date": "2014-04-26", + "value": 81790062 + }, + { + "date": "2014-04-27", + "value": 105003761 + }, + { + "date": "2014-04-28", + "value": 100457727 + }, + { + "date": "2014-04-29", + "value": 98253926 + }, + { + "date": "2014-04-30", + "value": 67956992 + } + ] +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users3.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users3.json new file mode 100644 index 0000000..d0b8f16 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/fake_users3.json @@ -0,0 +1,1448 @@ +[ + [ + { + "date": "2014-01-01", + "value": 150000000 + }, + { + "date": "2014-01-02", + "value": 168799730 + }, + { + "date": "2014-01-03", + "value": 179473940 + }, + { + "date": "2014-01-04", + "value": 160525870 + }, + { + "date": "2014-01-05", + "value": 164091937 + }, + { + "date": "2014-01-06", + "value": 168386751 + }, + { + "date": "2014-01-07", + "value": 164583141 + }, + { + "date": "2014-01-08", + "value": 151127712 + }, + { + "date": "2014-01-09", + "value": 140122673 + }, + { + "date": "2014-01-10", + "value": 142701834 + }, + { + "date": "2014-01-11", + "value": 150132534 + }, + { + "date": "2014-01-12", + "value": 160971355 + }, + { + "date": "2014-01-13", + "value": 171888475 + }, + { + "date": "2014-01-14", + "value": 187304607 + }, + { + "date": "2014-01-15", + "value": 195860257 + }, + { + "date": "2014-01-16", + "value": 218146710 + }, + { + "date": "2014-01-17", + "value": 194292216 + }, + { + "date": "2014-01-18", + "value": 200847337 + }, + { + "date": "2014-01-19", + "value": 202888520 + }, + { + "date": "2014-01-20", + "value": 188359286 + }, + { + "date": "2014-01-21", + "value": 197986542 + }, + { + "date": "2014-01-22", + "value": 201179924 + }, + { + "date": "2014-01-23", + "value": 197109572 + }, + { + "date": "2014-01-24", + "value": 203816953 + }, + { + "date": "2014-01-25", + "value": 206437018 + }, + { + "date": "2014-01-26", + "value": 192589536 + }, + { + "date": "2014-01-27", + "value": 193870752 + }, + { + "date": "2014-01-28", + "value": 178677697 + }, + { + "date": "2014-01-29", + "value": 193082360 + }, + { + "date": "2014-01-30", + "value": 206135273 + }, + { + "date": "2014-01-31", + "value": 217716228 + }, + { + "date": "2014-02-01", + "value": 219668960 + }, + { + "date": "2014-02-02", + "value": 216560467 + }, + { + "date": "2014-02-03", + "value": 212632416 + }, + { + "date": "2014-02-04", + "value": 201790141 + }, + { + "date": "2014-02-05", + "value": 199824076 + }, + { + "date": "2014-02-06", + "value": 195496340 + }, + { + "date": "2014-02-07", + "value": 176861988 + }, + { + "date": "2014-02-08", + "value": 172693161 + }, + { + "date": "2014-02-09", + "value": 153779757 + }, + { + "date": "2014-02-10", + "value": 158907768 + }, + { + "date": "2014-02-11", + "value": 147799217 + }, + { + "date": "2014-02-12", + "value": 156781651 + }, + { + "date": "2014-02-13", + "value": 151247261 + }, + { + "date": "2014-02-14", + "value": 142783453 + }, + { + "date": "2014-02-15", + "value": 137501856 + }, + { + "date": "2014-02-16", + "value": 135170655 + }, + { + "date": "2014-02-17", + "value": 123625262 + }, + { + "date": "2014-02-18", + "value": 114841902 + }, + { + "date": "2014-02-19", + "value": 99230188 + }, + { + "date": "2014-02-20", + "value": 92192889 + }, + { + "date": "2014-02-21", + "value": 95903494 + }, + { + "date": "2014-02-22", + "value": 103475784 + }, + { + "date": "2014-02-23", + "value": 118763836 + }, + { + "date": "2014-02-24", + "value": 121488205 + }, + { + "date": "2014-02-25", + "value": 120137693 + }, + { + "date": "2014-02-26", + "value": 139207613 + }, + { + "date": "2014-02-27", + "value": 123627758 + }, + { + "date": "2014-02-28", + "value": 119696385 + }, + { + "date": "2014-03-01", + "value": 119254629 + }, + { + "date": "2014-03-02", + "value": 104733639 + }, + { + "date": "2014-03-03", + "value": 118265893 + }, + { + "date": "2014-03-04", + "value": 119990564 + }, + { + "date": "2014-03-05", + "value": 118016680 + }, + { + "date": "2014-03-06", + "value": 94543746 + }, + { + "date": "2014-03-07", + "value": 106885704 + }, + { + "date": "2014-03-08", + "value": 104838653 + }, + { + "date": "2014-03-09", + "value": 103884351 + }, + { + "date": "2014-03-10", + "value": 117445285 + }, + { + "date": "2014-03-11", + "value": 126193316 + }, + { + "date": "2014-03-12", + "value": 119012056 + }, + { + "date": "2014-03-13", + "value": 131149610 + }, + { + "date": "2014-03-14", + "value": 126886924 + }, + { + "date": "2014-03-15", + "value": 129937436 + }, + { + "date": "2014-03-16", + "value": 139663841 + }, + { + "date": "2014-03-17", + "value": 143331182 + }, + { + "date": "2014-03-18", + "value": 126935769 + }, + { + "date": "2014-03-19", + "value": 113844155 + }, + { + "date": "2014-03-20", + "value": 110360367 + }, + { + "date": "2014-03-21", + "value": 129320432 + }, + { + "date": "2014-03-22", + "value": 131909432 + }, + { + "date": "2014-03-23", + "value": 125033165 + }, + { + "date": "2014-03-24", + "value": 136642955 + }, + { + "date": "2014-03-25", + "value": 122678043 + }, + { + "date": "2014-03-26", + "value": 114541991 + }, + { + "date": "2014-03-27", + "value": 115593216 + }, + { + "date": "2014-03-28", + "value": 114127182 + }, + { + "date": "2014-03-29", + "value": 110959203 + }, + { + "date": "2014-03-30", + "value": 108933578 + }, + { + "date": "2014-03-31", + "value": 93673839 + }, + { + "date": "2014-04-01", + "value": 107371510 + }, + { + "date": "2014-04-02", + "value": 99025894 + }, + { + "date": "2014-04-03", + "value": 89663192 + }, + { + "date": "2014-04-04", + "value": 78628478 + }, + { + "date": "2014-04-05", + "value": 65319283 + }, + { + "date": "2014-04-06", + "value": 77274968 + }, + { + "date": "2014-04-07", + "value": 84998680 + }, + { + "date": "2014-04-08", + "value": 93109973 + }, + { + "date": "2014-04-09", + "value": 96142409 + }, + { + "date": "2014-04-10", + "value": 92968927 + }, + { + "date": "2014-04-11", + "value": 89943533 + }, + { + "date": "2014-04-12", + "value": 79218421 + }, + { + "date": "2014-04-13", + "value": 74473525 + }, + { + "date": "2014-04-14", + "value": 68466798 + }, + { + "date": "2014-04-15", + "value": 74822001 + }, + { + "date": "2014-04-16", + "value": 71042505 + }, + { + "date": "2014-04-17", + "value": 80304983 + }, + { + "date": "2014-04-18", + "value": 98256320 + }, + { + "date": "2014-04-19", + "value": 94119379 + }, + { + "date": "2014-04-20", + "value": 96317046 + }, + { + "date": "2014-04-21", + "value": 107713238 + }, + { + "date": "2014-04-22", + "value": 104198751 + }, + { + "date": "2014-04-23", + "value": 118067785 + }, + { + "date": "2014-04-24", + "value": 117588802 + }, + { + "date": "2014-04-25", + "value": 113531702 + }, + { + "date": "2014-04-26", + "value": 102600971 + }, + { + "date": "2014-04-27", + "value": 111673005 + }, + { + "date": "2014-04-28", + "value": 127277540 + }, + { + "date": "2014-04-29", + "value": 116293528 + }, + { + "date": "2014-04-30", + "value": 112996597 + } + ], + [ + { + "date": "2014-01-01", + "value": 10000000 + }, + { + "date": "2014-01-02", + "value": 18799730 + }, + { + "date": "2014-01-03", + "value": 19473940 + }, + { + "date": "2014-01-04", + "value": 10525870 + }, + { + "date": "2014-01-05", + "value": 14091093 + }, + { + "date": "2014-01-06", + "value": 18386751 + }, + { + "date": "2014-01-07", + "value": 14583144 + }, + { + "date": "2014-01-08", + "value": 11127715 + }, + { + "date": "2014-01-09", + "value": 10012266 + }, + { + "date": "2014-01-10", + "value": 12701837 + }, + { + "date": "2014-01-11", + "value": 10132088 + }, + { + "date": "2014-01-12", + "value": 10971355 + }, + { + "date": "2014-01-13", + "value": 11888475 + }, + { + "date": "2014-01-14", + "value": 17346078 + }, + { + "date": "2014-01-15", + "value": 15862579 + }, + { + "date": "2014-01-16", + "value": 28146101 + }, + { + "date": "2014-01-17", + "value": 24292265 + }, + { + "date": "2014-01-18", + "value": 20847335 + }, + { + "date": "2014-01-19", + "value": 22888522 + }, + { + "date": "2014-01-20", + "value": 28359283 + }, + { + "date": "2014-01-21", + "value": 29865424 + }, + { + "date": "2014-01-22", + "value": 21179246 + }, + { + "date": "2014-01-23", + "value": 27109526 + }, + { + "date": "2014-01-24", + "value": 23816935 + }, + { + "date": "2014-01-25", + "value": 26437013 + }, + { + "date": "2014-01-26", + "value": 22589568 + }, + { + "date": "2014-01-27", + "value": 23870725 + }, + { + "date": "2014-01-28", + "value": 23870726 + }, + { + "date": "2014-01-29", + "value": 23870727 + }, + { + "date": "2014-01-30", + "value": 23870728 + }, + { + "date": "2014-01-31", + "value": 23870729 + }, + { + "date": "2014-02-01", + "value": 33870720 + }, + { + "date": "2014-02-02", + "value": 33870721 + }, + { + "date": "2014-02-03", + "value": 33870722 + }, + { + "date": "2014-02-04", + "value": 33870723 + }, + { + "date": "2014-02-05", + "value": 23870728 + }, + { + "date": "2014-02-06", + "value": 23870727 + }, + { + "date": "2014-02-07", + "value": 33870725 + }, + { + "date": "2014-02-08", + "value": 33870724 + }, + { + "date": "2014-02-09", + "value": 23870728 + }, + { + "date": "2014-02-10", + "value": 33870725 + }, + { + "date": "2014-02-11", + "value": 33870726 + }, + { + "date": "2014-02-12", + "value": 38707214 + }, + { + "date": "2014-02-13", + "value": 38704213 + }, + { + "date": "2014-02-14", + "value": 38707226 + }, + { + "date": "2014-02-15", + "value": 38707287 + }, + { + "date": "2014-02-16", + "value": 33707246 + }, + { + "date": "2014-02-17", + "value": 33870757 + }, + { + "date": "2014-02-18", + "value": 33707268 + }, + { + "date": "2014-02-19", + "value": 38707277 + }, + { + "date": "2014-02-20", + "value": 33707288 + }, + { + "date": "2014-02-21", + "value": 48707290 + }, + { + "date": "2014-02-22", + "value": 48707201 + }, + { + "date": "2014-02-23", + "value": 43707212 + }, + { + "date": "2014-02-24", + "value": 43870223 + }, + { + "date": "2014-02-25", + "value": 48707234 + }, + { + "date": "2014-02-26", + "value": 48707240 + }, + { + "date": "2014-02-27", + "value": 48707201 + }, + { + "date": "2014-02-28", + "value": 48707265 + }, + { + "date": "2014-03-01", + "value": 48707274 + }, + { + "date": "2014-03-02", + "value": 48707224 + }, + { + "date": "2014-03-03", + "value": 48707225 + }, + { + "date": "2014-03-04", + "value": 48707206 + }, + { + "date": "2014-03-05", + "value": 48707296 + }, + { + "date": "2014-03-06", + "value": 48707207 + }, + { + "date": "2014-03-07", + "value": 48707226 + }, + { + "date": "2014-03-08", + "value": 48707207 + }, + { + "date": "2014-03-09", + "value": 48707208 + }, + { + "date": "2014-03-10", + "value": 48707207 + }, + { + "date": "2014-03-11", + "value": 48707207 + }, + { + "date": "2014-03-12", + "value": 48707108 + }, + { + "date": "2014-03-13", + "value": 48707708 + }, + { + "date": "2014-03-14", + "value": 48707808 + }, + { + "date": "2014-03-15", + "value": 48707108 + }, + { + "date": "2014-03-16", + "value": 48707408 + }, + { + "date": "2014-03-17", + "value": 48707608 + }, + { + "date": "2014-03-18", + "value": 48707708 + }, + { + "date": "2014-03-19", + "value": 44707208 + }, + { + "date": "2014-03-20", + "value": 49707298 + }, + { + "date": "2014-03-21", + "value": 41707278 + }, + { + "date": "2014-03-22", + "value": 42707218 + }, + { + "date": "2014-03-23", + "value": 42707258 + }, + { + "date": "2014-03-24", + "value": 47207268 + }, + { + "date": "2014-03-25", + "value": 40407208 + }, + { + "date": "2014-03-26", + "value": 43407208 + }, + { + "date": "2014-03-27", + "value": 42207508 + }, + { + "date": "2014-03-28", + "value": 42207509 + }, + { + "date": "2014-03-29", + "value": 52207500 + }, + { + "date": "2014-03-30", + "value": 52207501 + }, + { + "date": "2014-03-31", + "value": 52207502 + }, + { + "date": "2014-04-01", + "value": 52207503 + }, + { + "date": "2014-04-02", + "value": 52207504 + }, + { + "date": "2014-04-03", + "value": 52207502 + }, + { + "date": "2014-04-04", + "value": 52207505 + }, + { + "date": "2014-04-05", + "value": 53870728 + }, + { + "date": "2014-04-06", + "value": 53870726 + }, + { + "date": "2014-04-07", + "value": 53870725 + }, + { + "date": "2014-04-08", + "value": 53870728 + }, + { + "date": "2014-04-09", + "value": 53870729 + }, + { + "date": "2014-04-10", + "value": 63870720 + }, + { + "date": "2014-04-11", + "value": 63870721 + }, + { + "date": "2014-04-12", + "value": 63870722 + }, + { + "date": "2014-04-13", + "value": 63870723 + }, + { + "date": "2014-04-14", + "value": 63870724 + }, + { + "date": "2014-04-15", + "value": 63870725 + }, + { + "date": "2014-04-16", + "value": 63870726 + }, + { + "date": "2014-04-17", + "value": 63870727 + }, + { + "date": "2014-04-18", + "value": 63870728 + }, + { + "date": "2014-04-19", + "value": 63870729 + }, + { + "date": "2014-04-20", + "value": 73870720 + }, + { + "date": "2014-04-21", + "value": 73870721 + }, + { + "date": "2014-04-22", + "value": 73870722 + }, + { + "date": "2014-04-23", + "value": 73870723 + }, + { + "date": "2014-04-24", + "value": 73870724 + }, + { + "date": "2014-04-25", + "value": 73870725 + }, + { + "date": "2014-04-26", + "value": 73870666 + }, + { + "date": "2014-04-27", + "value": 73870727 + }, + { + "date": "2014-04-28", + "value": 73870738 + }, + { + "date": "2014-04-29", + "value": 73870749 + }, + { + "date": "2014-04-30", + "value": 83870710 + } + ], + [ + { + "date": "2014-01-01", + "value": 60000000 + }, + { + "date": "2014-01-02", + "value": 68799730 + }, + { + "date": "2014-01-03", + "value": 49473940 + }, + { + "date": "2014-01-04", + "value": 60525870 + }, + { + "date": "2014-01-05", + "value": 64091937 + }, + { + "date": "2014-01-06", + "value": 68386751 + }, + { + "date": "2014-01-07", + "value": 64583141 + }, + { + "date": "2014-01-08", + "value": 81127712 + }, + { + "date": "2014-01-09", + "value": 100122673 + }, + { + "date": "2014-01-10", + "value": 82701834 + }, + { + "date": "2014-01-11", + "value": 50132534 + }, + { + "date": "2014-01-12", + "value": 60971355 + }, + { + "date": "2014-01-13", + "value": 71888475 + }, + { + "date": "2014-01-14", + "value": 47304607 + }, + { + "date": "2014-01-15", + "value": 65860257 + }, + { + "date": "2014-01-16", + "value": 68146710 + }, + { + "date": "2014-01-17", + "value": 64292216 + }, + { + "date": "2014-01-18", + "value": 50847337 + }, + { + "date": "2014-01-19", + "value": 102888520 + }, + { + "date": "2014-01-20", + "value": 48359286 + }, + { + "date": "2014-01-21", + "value": 97986542 + }, + { + "date": "2014-01-22", + "value": 91179924 + }, + { + "date": "2014-01-23", + "value": 67109572 + }, + { + "date": "2014-01-24", + "value": 103816953 + }, + { + "date": "2014-01-25", + "value": 106437018 + }, + { + "date": "2014-01-26", + "value": 62589536 + }, + { + "date": "2014-01-27", + "value": 63870752 + }, + { + "date": "2014-01-28", + "value": 78677697 + }, + { + "date": "2014-01-29", + "value": 63082360 + }, + { + "date": "2014-01-30", + "value": 106135273 + }, + { + "date": "2014-01-31", + "value": 97716228 + }, + { + "date": "2014-02-01", + "value": 69668960 + }, + { + "date": "2014-02-02", + "value": 66560467 + }, + { + "date": "2014-02-03", + "value": 62632416 + }, + { + "date": "2014-02-04", + "value": 101790141 + }, + { + "date": "2014-02-05", + "value": 69824076 + }, + { + "date": "2014-02-06", + "value": 65496340 + }, + { + "date": "2014-02-07", + "value": 76861988 + }, + { + "date": "2014-02-08", + "value": 72693161 + }, + { + "date": "2014-02-09", + "value": 103779757 + }, + { + "date": "2014-02-10", + "value": 58907768 + }, + { + "date": "2014-02-11", + "value": 87799217 + }, + { + "date": "2014-02-12", + "value": 56781651 + }, + { + "date": "2014-02-13", + "value": 51247261 + }, + { + "date": "2014-02-14", + "value": 82783453 + }, + { + "date": "2014-02-15", + "value": 67501856 + }, + { + "date": "2014-02-16", + "value": 65170655 + }, + { + "date": "2014-02-17", + "value": 63625262 + }, + { + "date": "2014-02-18", + "value": 94841902 + }, + { + "date": "2014-02-19", + "value": 49230188 + }, + { + "date": "2014-02-20", + "value": 42192889 + }, + { + "date": "2014-02-21", + "value": 45903494 + }, + { + "date": "2014-02-22", + "value": 103475784 + }, + { + "date": "2014-02-23", + "value": 98763836 + }, + { + "date": "2014-02-24", + "value": 101488205 + }, + { + "date": "2014-02-25", + "value": 60137693 + }, + { + "date": "2014-02-26", + "value": 69207613 + }, + { + "date": "2014-02-27", + "value": 63627758 + }, + { + "date": "2014-02-28", + "value": 99696385 + }, + { + "date": "2014-03-01", + "value": 99254629 + }, + { + "date": "2014-03-02", + "value": 104733639 + }, + { + "date": "2014-03-03", + "value": 98265893 + }, + { + "date": "2014-03-04", + "value": 99990564 + }, + { + "date": "2014-03-05", + "value": 98016680 + }, + { + "date": "2014-03-06", + "value": 44543746 + }, + { + "date": "2014-03-07", + "value": 86885704 + }, + { + "date": "2014-03-08", + "value": 104838653 + }, + { + "date": "2014-03-09", + "value": 103884351 + }, + { + "date": "2014-03-10", + "value": 97445285 + }, + { + "date": "2014-03-11", + "value": 66193316 + }, + { + "date": "2014-03-12", + "value": 99012056 + }, + { + "date": "2014-03-13", + "value": 81149610 + }, + { + "date": "2014-03-14", + "value": 86886924 + }, + { + "date": "2014-03-15", + "value": 89937436 + }, + { + "date": "2014-03-16", + "value": 39663841 + }, + { + "date": "2014-03-17", + "value": 83331182 + }, + { + "date": "2014-03-18", + "value": 86935769 + }, + { + "date": "2014-03-19", + "value": 93844155 + }, + { + "date": "2014-03-20", + "value": 90360367 + }, + { + "date": "2014-03-21", + "value": 69320432 + }, + { + "date": "2014-03-22", + "value": 61909432 + }, + { + "date": "2014-03-23", + "value": 65033165 + }, + { + "date": "2014-03-24", + "value": 66642955 + }, + { + "date": "2014-03-25", + "value": 62678043 + }, + { + "date": "2014-03-26", + "value": 94541991 + }, + { + "date": "2014-03-27", + "value": 95593216 + }, + { + "date": "2014-03-28", + "value": 94127182 + }, + { + "date": "2014-03-29", + "value": 90959203 + }, + { + "date": "2014-03-30", + "value": 108933578 + }, + { + "date": "2014-03-31", + "value": 43673839 + }, + { + "date": "2014-04-01", + "value": 107371510 + }, + { + "date": "2014-04-02", + "value": 49025894 + }, + { + "date": "2014-04-03", + "value": 59663192 + }, + { + "date": "2014-04-04", + "value": 48628478 + }, + { + "date": "2014-04-05", + "value": 25319283 + }, + { + "date": "2014-04-06", + "value": 57274968 + }, + { + "date": "2014-04-07", + "value": 54998680 + }, + { + "date": "2014-04-08", + "value": 43109973 + }, + { + "date": "2014-04-09", + "value": 6142404 + }, + { + "date": "2014-04-10", + "value": 42968927 + }, + { + "date": "2014-04-11", + "value": 59943533 + }, + { + "date": "2014-04-12", + "value": 79218421 + }, + { + "date": "2014-04-13", + "value": 74473525 + }, + { + "date": "2014-04-14", + "value": 68466798 + }, + { + "date": "2014-04-15", + "value": 74822001 + }, + { + "date": "2014-04-16", + "value": 71042505 + }, + { + "date": "2014-04-17", + "value": 80304983 + }, + { + "date": "2014-04-18", + "value": 58256320 + }, + { + "date": "2014-04-19", + "value": 54119379 + }, + { + "date": "2014-04-20", + "value": 56317046 + }, + { + "date": "2014-04-21", + "value": 107713238 + }, + { + "date": "2014-04-22", + "value": 104198751 + }, + { + "date": "2014-04-23", + "value": 98067785 + }, + { + "date": "2014-04-24", + "value": 67588802 + }, + { + "date": "2014-04-25", + "value": 93531702 + }, + { + "date": "2014-04-26", + "value": 82600971 + }, + { + "date": "2014-04-27", + "value": 101673005 + }, + { + "date": "2014-04-28", + "value": 107277540 + }, + { + "date": "2014-04-29", + "value": 96293528 + }, + { + "date": "2014-04-30", + "value": 62996597 + } + ] +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/firefox_releases.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/firefox_releases.json new file mode 100644 index 0000000..0c40fbe --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/firefox_releases.json @@ -0,0 +1,168 @@ +{ + "releases": [ + { + "version": "30.0", + "date": "2014-06-01", + "end": "2014-08-01" + }, + { + "version": "29.0", + "date": "2014-04-29", + "end": "2014-06-01" + + }, + { + "version": "28.0", + "date": "2014-03-18", + "end": "2014-04-29" + }, + { + "version": "27.0", + "date": "2014-01-21", + "end": "2014-03-18" + }, + { + "version": "26.0", + "date": "2013-12-10", + "end": "2014-01-21" + }, + { + "version": "25.0", + "date": "2013-10-29", + "end": "2013-12-10" + + }, + { + "version": "24.0", + "date": "2013-09-17", + "end": "2013-10-29" + + }, + { + "version": "23.0", + "date": "2013-08-06", + "end": "2013-09-17" + + }, + { + "version": "22.0", + "date": "2013-06-25" + }, + { + "version": "21.0", + "date": "2013-05-14" + }, + { + "version": "20.0", + "date": "2013-04-02" + }, + { + "version": "19.0", + "date": "2013-02-19" + }, + { + "version": "18.0", + "date": "2013-01-08" + }, + { + "version": "17.0.1", + "date": "2012-11-30" + }, + { + "version": "17.0", + "date": "2012-11-20" + }, + { + "version": "16.0.2", + "date": "2012-10-26" + }, + { + "version": "16.0.1", + "date": "2012-10-11" + }, + { + "version": "16.0", + "date": "2012-10-09" + }, + { + "version": "15.0.1", + "date": "2012-09-06" + }, + { + "version": "15.0", + "date": "2012-08-28" + }, + { + "version": "14.0", + "date": "2012-07-17" + }, + { + "version": "13.0.1", + "date": "2012-06-15" + }, + { + "version": "13.0", + "date": "2012-06-05" + }, + { + "version": "12.0", + "date": "2012-04-24" + }, + { + "version": "11.0", + "date": "2012-03-13" + }, + { + "version": "10.0", + "date": "2012-01-31" + }, + { + "version": "9.0", + "date": "2011-12-20" + }, + { + "version": "8.0", + "date": "2011-11-08" + }, + { + "version": "7.0", + "date": "2011-09-27" + }, + { + "version": "6.0", + "date": "2011-08-16" + }, + { + "version": "5.0", + "date": "2011-06-21" + }, + { + "version": "4.0", + "date": "2011-03-22" + }, + { + "version": "3.6", + "date": "2010-01-21" + }, + { + "version": "3.5", + "date": "2009-06-30" + }, + { + "version": "3.0", + "date": "2008-06-17" + }, + { + "version": "2.0", + "date": "2006-10-24" + }, + { + "version": "1.5", + "date": "2005-11-29" + }, + { + "version": "1.0", + "date": "2004-11-09" + } + ] +} diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/float.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/float.json new file mode 100644 index 0000000..a799832 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/float.json @@ -0,0 +1,802 @@ +[ + { + "date": "2013-10-01", + "value": 150.0 + }, + { + "date": "2013-10-02", + "value": 152.38052769378947 + }, + { + "date": "2013-10-03", + "value": 154.26923077120756 + }, + { + "date": "2013-10-04", + "value": 155.37842413996768 + }, + { + "date": "2013-10-05", + "value": 154.91598408222126 + }, + { + "date": "2013-10-06", + "value": 155.6051503275322 + }, + { + "date": "2013-10-07", + "value": 156.020995422744 + }, + { + "date": "2013-10-08", + "value": 153.1518021247084 + }, + { + "date": "2013-10-09", + "value": 151.21729814562673 + }, + { + "date": "2013-10-10", + "value": 151.38433609966495 + }, + { + "date": "2013-10-11", + "value": 150.78872781927018 + }, + { + "date": "2013-10-12", + "value": 153.9134389141148 + }, + { + "date": "2013-10-13", + "value": 156.94601290283427 + }, + { + "date": "2013-10-14", + "value": 158.86305615638318 + }, + { + "date": "2013-10-15", + "value": 159.25111032644563 + }, + { + "date": "2013-10-16", + "value": 157.70892050744425 + }, + { + "date": "2013-10-17", + "value": 156.5166885320253 + }, + { + "date": "2013-10-18", + "value": 159.2391477211863 + }, + { + "date": "2013-10-19", + "value": 156.15457859306844 + }, + { + "date": "2013-10-20", + "value": 157.32962414620647 + }, + { + "date": "2013-10-21", + "value": 153.83264840368938 + }, + { + "date": "2013-10-22", + "value": 152.8551947020626 + }, + { + "date": "2013-10-23", + "value": 153.38853405036897 + }, + { + "date": "2013-10-24", + "value": 152.93427670642123 + }, + { + "date": "2013-10-25", + "value": 153.1469976790017 + }, + { + "date": "2013-10-26", + "value": 156.32209665860327 + }, + { + "date": "2013-10-27", + "value": 155.3284262677578 + }, + { + "date": "2013-10-28", + "value": 154.90051183690736 + }, + { + "date": "2013-10-29", + "value": 152.21341963762546 + }, + { + "date": "2013-10-30", + "value": 154.8384882355127 + }, + { + "date": "2013-10-31", + "value": 153.49778206006178 + }, + { + "date": "2013-11-01", + "value": 150.69077772414497 + }, + { + "date": "2013-11-02", + "value": 148.3688534222137 + }, + { + "date": "2013-11-03", + "value": 147.1517262760622 + }, + { + "date": "2013-11-04", + "value": 146.64232264462947 + }, + { + "date": "2013-11-05", + "value": 143.7977476766292 + }, + { + "date": "2013-11-06", + "value": 142.82657667368557 + }, + { + "date": "2013-11-07", + "value": 144.37296514065383 + }, + { + "date": "2013-11-08", + "value": 145.59894477345333 + }, + { + "date": "2013-11-09", + "value": 145.88560250329667 + }, + { + "date": "2013-11-10", + "value": 148.28518729606375 + }, + { + "date": "2013-11-11", + "value": 147.02769155090894 + }, + { + "date": "2013-11-12", + "value": 146.69585270653417 + }, + { + "date": "2013-11-13", + "value": 145.45574401363186 + }, + { + "date": "2013-11-14", + "value": 148.18505057473558 + }, + { + "date": "2013-11-15", + "value": 148.36757870086083 + }, + { + "date": "2013-11-16", + "value": 145.1284637176675 + }, + { + "date": "2013-11-17", + "value": 143.38783013080223 + }, + { + "date": "2013-11-18", + "value": 145.58507244067314 + }, + { + "date": "2013-11-19", + "value": 148.16482741338075 + }, + { + "date": "2013-11-20", + "value": 151.30824629651008 + }, + { + "date": "2013-11-21", + "value": 148.94149732547913 + }, + { + "date": "2013-11-22", + "value": 149.08060427013632 + }, + { + "date": "2013-11-23", + "value": 151.10349313471838 + }, + { + "date": "2013-11-24", + "value": 151.38042365227193 + }, + { + "date": "2013-11-25", + "value": 153.61246750490707 + }, + { + "date": "2013-11-26", + "value": 152.3819387058022 + }, + { + "date": "2013-11-27", + "value": 154.7666777810689 + }, + { + "date": "2013-11-28", + "value": 156.20049982296294 + }, + { + "date": "2013-11-29", + "value": 157.60570664431154 + }, + { + "date": "2013-11-30", + "value": 158.83110208147457 + }, + { + "date": "2013-12-01", + "value": 157.05145284891836 + }, + { + "date": "2013-12-02", + "value": 160.5636817325332 + }, + { + "date": "2013-12-03", + "value": 158.52309803850414 + }, + { + "date": "2013-12-04", + "value": 159.5481262069485 + }, + { + "date": "2013-12-05", + "value": 162.66665660028468 + }, + { + "date": "2013-12-06", + "value": 164.14412262081478 + }, + { + "date": "2013-12-07", + "value": 167.24305427243902 + }, + { + "date": "2013-12-08", + "value": 167.26032062671646 + }, + { + "date": "2013-12-09", + "value": 168.74492234114962 + }, + { + "date": "2013-12-10", + "value": 165.37752588946347 + }, + { + "date": "2013-12-11", + "value": 166.97673724876898 + }, + { + "date": "2013-12-12", + "value": 165.24083072211786 + }, + { + "date": "2013-12-13", + "value": 163.91840295642777 + }, + { + "date": "2013-12-14", + "value": 161.21392266343142 + }, + { + "date": "2013-12-15", + "value": 161.09086330318053 + }, + { + "date": "2013-12-16", + "value": 159.72436012634117 + }, + { + "date": "2013-12-17", + "value": 162.92718203581796 + }, + { + "date": "2013-12-18", + "value": 166.05289239617858 + }, + { + "date": "2013-12-19", + "value": 167.8303488173302 + }, + { + "date": "2013-12-20", + "value": 169.1076706115558 + }, + { + "date": "2013-12-21", + "value": 172.18214540311942 + }, + { + "date": "2013-12-22", + "value": 173.60361186108835 + }, + { + "date": "2013-12-23", + "value": 170.3333738357524 + }, + { + "date": "2013-12-24", + "value": 171.44904351284399 + }, + { + "date": "2013-12-25", + "value": 171.4237348889382 + }, + { + "date": "2013-12-26", + "value": 170.63558145007596 + }, + { + "date": "2013-12-27", + "value": 168.67744459688063 + }, + { + "date": "2013-12-28", + "value": 170.87359507435463 + }, + { + "date": "2013-12-29", + "value": 170.91071470721673 + }, + { + "date": "2013-12-30", + "value": 173.52457327401646 + }, + { + "date": "2013-12-31", + "value": 175.89856657641783 + }, + { + "date": "2014-01-01", + "value": 175.9115683446306 + }, + { + "date": "2014-01-02", + "value": 178.12945782320122 + }, + { + "date": "2014-01-03", + "value": 179.9335431435273 + }, + { + "date": "2014-01-04", + "value": 180.4112576197819 + }, + { + "date": "2014-01-05", + "value": 179.7701613992972 + }, + { + "date": "2014-01-06", + "value": 177.4686229951754 + }, + { + "date": "2014-01-07", + "value": 175.172988264621 + }, + { + "date": "2014-01-08", + "value": 172.89816035941323 + }, + { + "date": "2014-01-09", + "value": 169.32566831004084 + }, + { + "date": "2014-01-10", + "value": 166.200899808268 + }, + { + "date": "2014-01-11", + "value": 163.47733139260433 + }, + { + "date": "2014-01-12", + "value": 166.14564943514935 + }, + { + "date": "2014-01-13", + "value": 162.6972855825834 + }, + { + "date": "2014-01-14", + "value": 163.8285391707244 + }, + { + "date": "2014-01-15", + "value": 162.83765973354699 + }, + { + "date": "2014-01-16", + "value": 159.48461419107502 + }, + { + "date": "2014-01-17", + "value": 158.38069135440546 + }, + { + "date": "2014-01-18", + "value": 159.36210753864273 + }, + { + "date": "2014-01-19", + "value": 155.9389059732206 + }, + { + "date": "2014-01-20", + "value": 159.44340217055645 + }, + { + "date": "2014-01-21", + "value": 157.1252301818101 + }, + { + "date": "2014-01-22", + "value": 155.0515461360151 + }, + { + "date": "2014-01-23", + "value": 154.31662985182166 + }, + { + "date": "2014-01-24", + "value": 156.2405729119896 + }, + { + "date": "2014-01-25", + "value": 154.4303911259191 + }, + { + "date": "2014-01-26", + "value": 156.96007254763632 + }, + { + "date": "2014-01-27", + "value": 156.88984607757212 + }, + { + "date": "2014-01-28", + "value": 158.46953270592533 + }, + { + "date": "2014-01-29", + "value": 159.9760971292252 + }, + { + "date": "2014-01-30", + "value": 158.6064520244421 + }, + { + "date": "2014-01-31", + "value": 159.30396031924434 + }, + { + "date": "2014-02-01", + "value": 158.27130616930083 + }, + { + "date": "2014-02-02", + "value": 156.76310105114038 + }, + { + "date": "2014-02-03", + "value": 158.01962557788505 + }, + { + "date": "2014-02-04", + "value": 155.5601666102677 + }, + { + "date": "2014-02-05", + "value": 152.5655582330515 + }, + { + "date": "2014-02-06", + "value": 153.83308497210635 + }, + { + "date": "2014-02-07", + "value": 155.0906250736871 + }, + { + "date": "2014-02-08", + "value": 156.6661412607239 + }, + { + "date": "2014-02-09", + "value": 154.487982130377 + }, + { + "date": "2014-02-10", + "value": 151.80870052397174 + }, + { + "date": "2014-02-11", + "value": 152.6566948046261 + }, + { + "date": "2014-02-12", + "value": 153.3776096334368 + }, + { + "date": "2014-02-13", + "value": 151.52116899747688 + }, + { + "date": "2014-02-14", + "value": 154.99799005974643 + }, + { + "date": "2014-02-15", + "value": 153.78962974183693 + }, + { + "date": "2014-02-16", + "value": 155.5614787876006 + }, + { + "date": "2014-02-17", + "value": 155.50672366114722 + }, + { + "date": "2014-02-18", + "value": 155.2247468326664 + }, + { + "date": "2014-02-19", + "value": 157.04530694488096 + }, + { + "date": "2014-02-20", + "value": 159.7683676258508 + }, + { + "date": "2014-02-21", + "value": 156.19049862244253 + }, + { + "date": "2014-02-22", + "value": 157.77626968451625 + }, + { + "date": "2014-02-23", + "value": 157.85540343546958 + }, + { + "date": "2014-02-24", + "value": 157.606624912295 + }, + { + "date": "2014-02-25", + "value": 154.29310962212645 + }, + { + "date": "2014-02-26", + "value": 151.47520450013815 + }, + { + "date": "2014-02-27", + "value": 153.29471917494737 + }, + { + "date": "2014-02-28", + "value": 156.704724984211 + }, + { + "date": "2014-03-01", + "value": 155.04358060019956 + }, + { + "date": "2014-03-02", + "value": 153.2334356350558 + }, + { + "date": "2014-03-03", + "value": 152.03821354498334 + }, + { + "date": "2014-03-04", + "value": 154.19199847895723 + }, + { + "date": "2014-03-05", + "value": 152.06664190112994 + }, + { + "date": "2014-03-06", + "value": 153.2986037364113 + }, + { + "date": "2014-03-07", + "value": 156.4046061310383 + }, + { + "date": "2014-03-08", + "value": 154.42925835672014 + }, + { + "date": "2014-03-09", + "value": 155.18025911896245 + }, + { + "date": "2014-03-10", + "value": 153.37647431770608 + }, + { + "date": "2014-03-11", + "value": 150.61799083023823 + }, + { + "date": "2014-03-12", + "value": 153.66746188173215 + }, + { + "date": "2014-03-13", + "value": 156.3151844520418 + }, + { + "date": "2014-03-14", + "value": 153.95015669138036 + }, + { + "date": "2014-03-15", + "value": 155.29282634003127 + }, + { + "date": "2014-03-16", + "value": 158.5090157803603 + }, + { + "date": "2014-03-17", + "value": 155.14902966934457 + }, + { + "date": "2014-03-18", + "value": 156.85877093764927 + }, + { + "date": "2014-03-19", + "value": 159.97825057884495 + }, + { + "date": "2014-03-20", + "value": 160.0756240788441 + }, + { + "date": "2014-03-21", + "value": 163.71251312564075 + }, + { + "date": "2014-03-22", + "value": 160.35896864910785 + }, + { + "date": "2014-03-23", + "value": 159.6979743839615 + }, + { + "date": "2014-03-24", + "value": 160.64504978193472 + }, + { + "date": "2014-03-25", + "value": 161.35500716559707 + }, + { + "date": "2014-03-26", + "value": 160.2606961200085 + }, + { + "date": "2014-03-27", + "value": 158.57932628000506 + }, + { + "date": "2014-03-28", + "value": 161.07173063651766 + }, + { + "date": "2014-03-29", + "value": 164.7598991714389 + }, + { + "date": "2014-03-30", + "value": 165.51463489538983 + }, + { + "date": "2014-03-31", + "value": 168.03477347136803 + }, + { + "date": "2014-04-01", + "value": 164.8919155855522 + }, + { + "date": "2014-04-02", + "value": 162.43871270413882 + }, + { + "date": "2014-04-03", + "value": 160.56491168480784 + }, + { + "date": "2014-04-04", + "value": 160.6231106692656 + }, + { + "date": "2014-04-05", + "value": 158.51347739227052 + }, + { + "date": "2014-04-06", + "value": 157.05813234785617 + }, + { + "date": "2014-04-07", + "value": 159.7471186342081 + }, + { + "date": "2014-04-08", + "value": 161.25579641704525 + }, + { + "date": "2014-04-09", + "value": 161.35157834105863 + }, + { + "date": "2014-04-10", + "value": 164.93059854718956 + }, + { + "date": "2014-04-11", + "value": 162.2509201417386 + }, + { + "date": "2014-04-12", + "value": 162.73580527992038 + }, + { + "date": "2014-04-13", + "value": 166.48398412407607 + }, + { + "date": "2014-04-14", + "value": 163.15310481696565 + }, + { + "date": "2014-04-15", + "value": 164.5079907470571 + }, + { + "date": "2014-04-16", + "value": 164.2005466198294 + }, + { + "date": "2014-04-17", + "value": 165.77632203055697 + }, + { + "date": "2014-04-18", + "value": 168.99155761340631 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/log.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/log.json new file mode 100644 index 0000000..1f57231 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/log.json @@ -0,0 +1,802 @@ +[ + { + "date": "2014-01-01", + "value": 2062.025150690567 + }, + { + "date": "2014-01-02", + "value": 9490.615524570567 + }, + { + "date": "2014-01-03", + "value": 49143.35242208582 + }, + { + "date": "2014-01-04", + "value": 83781.24929181556 + }, + { + "date": "2014-01-05", + "value": 109648.70666620035 + }, + { + "date": "2014-01-06", + "value": 46173.741222724544 + }, + { + "date": "2014-01-07", + "value": 165309.1825970328 + }, + { + "date": "2014-01-08", + "value": 134390.76197886752 + }, + { + "date": "2014-01-09", + "value": 382245.0764417244 + }, + { + "date": "2014-01-10", + "value": 261951.04021767154 + }, + { + "date": "2014-01-11", + "value": 365476.76967184874 + }, + { + "date": "2014-01-12", + "value": 307933.33112867293 + }, + { + "date": "2014-01-13", + "value": 122142.84412918231 + }, + { + "date": "2014-01-14", + "value": 439273.6427485952 + }, + { + "date": "2014-01-15", + "value": 283379.5623780852 + }, + { + "date": "2014-01-16", + "value": 238943.45026934962 + }, + { + "date": "2014-01-17", + "value": 363906.78317270277 + }, + { + "date": "2014-01-18", + "value": 1018001.8313018363 + }, + { + "date": "2014-01-19", + "value": 1138159.039774829 + }, + { + "date": "2014-01-20", + "value": 316399.43565288646 + }, + { + "date": "2014-01-21", + "value": 94835.07271610542 + }, + { + "date": "2014-01-22", + "value": 18781.513209857534 + }, + { + "date": "2014-01-23", + "value": 18249.48928239598 + }, + { + "date": "2014-01-24", + "value": 3999.643726105876 + }, + { + "date": "2014-01-25", + "value": 14221.763703455596 + }, + { + "date": "2014-01-26", + "value": 3444.9725583557893 + }, + { + "date": "2014-01-27", + "value": 7147.116251563855 + }, + { + "date": "2014-01-28", + "value": 14502.314013448287 + }, + { + "date": "2014-01-29", + "value": 44911.76232177228 + }, + { + "date": "2014-01-30", + "value": 122174.22764316449 + }, + { + "date": "2014-01-31", + "value": 54225.475099677475 + }, + { + "date": "2014-02-01", + "value": 29195.867918886433 + }, + { + "date": "2014-02-02", + "value": 30485.050577153477 + }, + { + "date": "2014-02-03", + "value": 4960.742108121759 + }, + { + "date": "2014-02-04", + "value": 5814.4040147487185 + }, + { + "date": "2014-02-05", + "value": 2075.4863124795897 + }, + { + "date": "2014-02-06", + "value": 11365.620177539273 + }, + { + "date": "2014-02-07", + "value": 6818.763378635227 + }, + { + "date": "2014-02-08", + "value": 7265.042372143863 + }, + { + "date": "2014-02-09", + "value": 1288.1919040639705 + }, + { + "date": "2014-02-10", + "value": 2903.318504081354 + }, + { + "date": "2014-02-11", + "value": 3476.3564765091846 + }, + { + "date": "2014-02-12", + "value": 428.6416126782084 + }, + { + "date": "2014-02-13", + "value": 4566.4372898258425 + }, + { + "date": "2014-02-14", + "value": 711.2536837438607 + }, + { + "date": "2014-02-15", + "value": 384.520808469771 + }, + { + "date": "2014-02-16", + "value": 126.37136078741982 + }, + { + "date": "2014-02-17", + "value": 1709.721519931354 + }, + { + "date": "2014-02-18", + "value": 10148.81839728999 + }, + { + "date": "2014-02-19", + "value": 3819.8318150089253 + }, + { + "date": "2014-02-20", + "value": 1911.5698109115874 + }, + { + "date": "2014-02-21", + "value": 1237.0465606485475 + }, + { + "date": "2014-02-22", + "value": 82.83456054447824 + }, + { + "date": "2014-02-23", + "value": 247.0567207206995 + }, + { + "date": "2014-02-24", + "value": 2203.4022567407605 + }, + { + "date": "2014-02-25", + "value": 200.68097764702628 + }, + { + "date": "2014-02-26", + "value": 1121.5673568474388 + }, + { + "date": "2014-02-27", + "value": 627.5130197784911 + }, + { + "date": "2014-02-28", + "value": 1962.9915978862207 + }, + { + "date": "2014-03-01", + "value": 4167.075152352931 + }, + { + "date": "2014-03-02", + "value": 3849.2422430353718 + }, + { + "date": "2014-03-03", + "value": 26024.15104428929 + }, + { + "date": "2014-03-04", + "value": 45516.77289686834 + }, + { + "date": "2014-03-05", + "value": 7027.573697798366 + }, + { + "date": "2014-03-06", + "value": 17669.906070121062 + }, + { + "date": "2014-03-07", + "value": 31044.119274296314 + }, + { + "date": "2014-03-08", + "value": 16408.707887136083 + }, + { + "date": "2014-03-09", + "value": 3892.134863935774 + }, + { + "date": "2014-03-10", + "value": 11938.967226184868 + }, + { + "date": "2014-03-11", + "value": 1553.5233934189364 + }, + { + "date": "2014-03-12", + "value": 11862.515702018087 + }, + { + "date": "2014-03-13", + "value": 11158.305407269254 + }, + { + "date": "2014-03-14", + "value": 1334.4016354870455 + }, + { + "date": "2014-03-15", + "value": 2187.7480927633233 + }, + { + "date": "2014-03-16", + "value": 4024.375328815201 + }, + { + "date": "2014-03-17", + "value": 2395.3870463434037 + }, + { + "date": "2014-03-18", + "value": 1087.1435238277254 + }, + { + "date": "2014-03-19", + "value": 677.9406955253385 + }, + { + "date": "2014-03-20", + "value": 1684.7330261245882 + }, + { + "date": "2014-03-21", + "value": 3009.7657573084657 + }, + { + "date": "2014-03-22", + "value": 13969.174225175822 + }, + { + "date": "2014-03-23", + "value": 68108.10656837105 + }, + { + "date": "2014-03-24", + "value": 188573.87239187933 + }, + { + "date": "2014-03-25", + "value": 559783.3612696081 + }, + { + "date": "2014-03-26", + "value": 209480.2451268065 + }, + { + "date": "2014-03-27", + "value": 139144.43213947577 + }, + { + "date": "2014-03-28", + "value": 365608.9134261734 + }, + { + "date": "2014-03-29", + "value": 320844.7892292448 + }, + { + "date": "2014-03-30", + "value": 211943.9255856596 + }, + { + "date": "2014-03-31", + "value": 762121.6146144189 + }, + { + "date": "2014-04-01", + "value": 1553918.287468606 + }, + { + "date": "2014-04-02", + "value": 2776190.8340374744 + }, + { + "date": "2014-04-03", + "value": 2132982.883619252 + }, + { + "date": "2014-04-04", + "value": 3034471.5222186935 + }, + { + "date": "2014-04-05", + "value": 8334267.184667878 + }, + { + "date": "2014-04-06", + "value": 19096849.199135397 + }, + { + "date": "2014-04-07", + "value": 35173655.63395549 + }, + { + "date": "2014-04-08", + "value": 35284088.03655991 + }, + { + "date": "2014-04-09", + "value": 15386352.945048828 + }, + { + "date": "2014-04-10", + "value": 16092176.925682666 + }, + { + "date": "2014-04-11", + "value": 17800747.264360324 + }, + { + "date": "2014-04-12", + "value": 9022272.93207202 + }, + { + "date": "2014-04-13", + "value": 19539255.318293292 + }, + { + "date": "2014-04-14", + "value": 18632765.170638006 + }, + { + "date": "2014-04-15", + "value": 22207773.697823893 + }, + { + "date": "2014-04-16", + "value": 20513350.14760112 + }, + { + "date": "2014-04-17", + "value": 8644588.740459614 + }, + { + "date": "2014-04-18", + "value": 3866972.7646409343 + }, + { + "date": "2014-04-19", + "value": 8627791.327706825 + }, + { + "date": "2014-04-20", + "value": 21876288.3070209 + }, + { + "date": "2014-04-21", + "value": 13065156.692366121 + }, + { + "date": "2014-04-22", + "value": 7006977.18803938 + }, + { + "date": "2014-04-23", + "value": 7322004.070875965 + }, + { + "date": "2014-04-24", + "value": 9144087.906869492 + }, + { + "date": "2014-04-25", + "value": 15712634.308609735 + }, + { + "date": "2014-04-26", + "value": 11675332.990584275 + }, + { + "date": "2014-04-27", + "value": 5276441.428244869 + }, + { + "date": "2014-04-28", + "value": 2098065.0498573617 + }, + { + "date": "2014-04-29", + "value": 4274196.893315845 + }, + { + "date": "2014-04-30", + "value": 6837182.692798125 + }, + { + "date": "2014-05-01", + "value": 5762561.20563913 + }, + { + "date": "2014-05-02", + "value": 8597818.493391953 + }, + { + "date": "2014-05-03", + "value": 15162543.40157677 + }, + { + "date": "2014-05-04", + "value": 10330812.046296848 + }, + { + "date": "2014-05-05", + "value": 8535447.031729257 + }, + { + "date": "2014-05-06", + "value": 3486240.413358828 + }, + { + "date": "2014-05-07", + "value": 2402788.773306244 + }, + { + "date": "2014-05-08", + "value": 2289950.291292259 + }, + { + "date": "2014-05-09", + "value": 3518464.1366947945 + }, + { + "date": "2014-05-10", + "value": 2218638.123249026 + }, + { + "date": "2014-05-11", + "value": 3024707.6308568935 + }, + { + "date": "2014-05-12", + "value": 1481284.8173510565 + }, + { + "date": "2014-05-13", + "value": 3804459.7482742644 + }, + { + "date": "2014-05-14", + "value": 3166547.5499812495 + }, + { + "date": "2014-05-15", + "value": 1244140.8712990445 + }, + { + "date": "2014-05-16", + "value": 1176461.8065991711 + }, + { + "date": "2014-05-17", + "value": 348538.1604919795 + }, + { + "date": "2014-05-18", + "value": 630138.4502415754 + }, + { + "date": "2014-05-19", + "value": 263415.04074479925 + }, + { + "date": "2014-05-20", + "value": 316526.39152859966 + }, + { + "date": "2014-05-21", + "value": 429475.93857651815 + }, + { + "date": "2014-05-22", + "value": 1384523.2440813945 + }, + { + "date": "2014-05-23", + "value": 1422251.2082510514 + }, + { + "date": "2014-05-24", + "value": 2982780.2273946116 + }, + { + "date": "2014-05-25", + "value": 1592004.698676512 + }, + { + "date": "2014-05-26", + "value": 705823.7238808231 + }, + { + "date": "2014-05-27", + "value": 382341.76239653886 + }, + { + "date": "2014-05-28", + "value": 117304.37608341743 + }, + { + "date": "2014-05-29", + "value": 103270.103426627 + }, + { + "date": "2014-05-30", + "value": 189088.38503418514 + }, + { + "date": "2014-05-31", + "value": 67547.73907513174 + }, + { + "date": "2014-06-01", + "value": 152445.22088057562 + }, + { + "date": "2014-06-02", + "value": 616622.4572364822 + }, + { + "date": "2014-06-03", + "value": 1330103.0525501214 + }, + { + "date": "2014-06-04", + "value": 4077706.361059827 + }, + { + "date": "2014-06-05", + "value": 4338332.117707394 + }, + { + "date": "2014-06-06", + "value": 9626054.268217776 + }, + { + "date": "2014-06-07", + "value": 6269805.105786423 + }, + { + "date": "2014-06-08", + "value": 2834343.2338959207 + }, + { + "date": "2014-06-09", + "value": 2175015.158688689 + }, + { + "date": "2014-06-10", + "value": 812456.163680258 + }, + { + "date": "2014-06-11", + "value": 2175163.4473366365 + }, + { + "date": "2014-06-12", + "value": 3808510.5886766836 + }, + { + "date": "2014-06-13", + "value": 5640689.343213645 + }, + { + "date": "2014-06-14", + "value": 4790537.231192042 + }, + { + "date": "2014-06-15", + "value": 4120824.1460910775 + }, + { + "date": "2014-06-16", + "value": 5302994.492796655 + }, + { + "date": "2014-06-17", + "value": 5186664.730492513 + }, + { + "date": "2014-06-18", + "value": 4044030.4941446534 + }, + { + "date": "2014-06-19", + "value": 8581214.856586913 + }, + { + "date": "2014-06-20", + "value": 15013739.74932458 + }, + { + "date": "2014-06-21", + "value": 5719554.417262289 + }, + { + "date": "2014-06-22", + "value": 2453002.234262133 + }, + { + "date": "2014-06-23", + "value": 7264081.292628654 + }, + { + "date": "2014-06-24", + "value": 3809522.1941388543 + }, + { + "date": "2014-06-25", + "value": 2357350.1101749516 + }, + { + "date": "2014-06-26", + "value": 1451776.5422490966 + }, + { + "date": "2014-06-27", + "value": 1951158.0790648684 + }, + { + "date": "2014-06-28", + "value": 942477.7660032308 + }, + { + "date": "2014-06-29", + "value": 284438.3044602669 + }, + { + "date": "2014-06-30", + "value": 395774.63111623266 + }, + { + "date": "2014-07-01", + "value": 181209.66166852613 + }, + { + "date": "2014-07-02", + "value": 99093.59454012293 + }, + { + "date": "2014-07-03", + "value": 112785.84621170859 + }, + { + "date": "2014-07-04", + "value": 268022.501587529 + }, + { + "date": "2014-07-05", + "value": 624290.8018990511 + }, + { + "date": "2014-07-06", + "value": 836181.367972055 + }, + { + "date": "2014-07-07", + "value": 565108.5866839852 + }, + { + "date": "2014-07-08", + "value": 293702.2823721791 + }, + { + "date": "2014-07-09", + "value": 128190.39198775633 + }, + { + "date": "2014-07-10", + "value": 57180.40753508925 + }, + { + "date": "2014-07-11", + "value": 62878.27977730392 + }, + { + "date": "2014-07-12", + "value": 204999.77253837787 + }, + { + "date": "2014-07-13", + "value": 95022.40040256473 + }, + { + "date": "2014-07-14", + "value": 41401.200972437386 + }, + { + "date": "2014-07-15", + "value": 183846.47705915576 + }, + { + "date": "2014-07-16", + "value": 114247.21116015536 + }, + { + "date": "2014-07-17", + "value": 34743.36459470002 + }, + { + "date": "2014-07-18", + "value": 11872.77812834004 + }, + { + "date": "2014-07-19", + "value": 28822.077421492377 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/make_fake_data.py b/priv/static/metrics-graphics-3.0-alpha3/examples/data/make_fake_data.py new file mode 100644 index 0000000..f350eab --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/make_fake_data.py @@ -0,0 +1,56 @@ +import sys +from datetime import datetime, date, timedelta +import json +from random import random +import argparse + +parser = argparse.ArgumentParser(description="Fake data maker.") +parser.add_argument('-s', '--start', help="start date", nargs=1) +parser.add_argument('-d', '--small', help="allow decimal values", action="store_true") +parser.add_argument('-r', '--range', help="how many days from start date", nargs=1) +parser.add_argument('-m', '--magnitude', help="size of change", nargs=1) +parser.add_argument('-p', '--percentage', help="whether or not this is a percentage", action="store_true") +parser.add_argument('-n', '--let_negative', help="let the data values go negative", action="store_true") +parser.add_argument('-v', '--start_value', help='start value', nargs=1) +args = parser.parse_args() + +doy = { + 0: 1, + 1:.9, + 2:1, + 3:1.1, + 4:1.05, + 5:.7, + 6:.75 +} +if args.percentage: convert = lambda x: float(x) +elif args.small: convert = lambda x: float(x) +else: convert = lambda x: int(x) + +current_date = datetime.strptime(args.start[0], '%Y-%m-%d').date() +length = int(args.range[0]) + +baseline = convert(args.start_value[0]) + +if args.magnitude: magnitude = convert(args.magnitude[0]) +elif args.percentage: magnitude = baseline/50. +elif args.small: magnitude = baseline/20. +else: magnitude = baseline/5 +out = [] + +# Needed to automatically convert dates to strings in json. +dthandler = lambda obj: obj.isoformat() if isinstance(obj, date) else None + +for i in xrange(length): + out.append({'date': current_date, 'value': baseline}) + nb = convert(magnitude * (random()-.5)) + if args.percentage: + if (baseline+nb < 0 or baseline+nb > 1) and (not args.let_negative): pass + else: baseline += nb + else: + if baseline+nb < 0 and not args.let_negative: pass + else: baseline += nb + + current_date += timedelta(days=1) + +sys.stdout.write(json.dumps(out,default=dthandler, indent=4)) \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-accessor.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-accessor.json new file mode 100644 index 0000000..088ec47 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-accessor.json @@ -0,0 +1,57 @@ + + [ + { + "date": "2014-01-08", + "value": 500 + }, + { + "date": "2014-01-09", + "value": 500 + }, + { + "date": "2014-01-10", + "value": 400 + }, + { + "date": "2014-01-11", + "value": 500, + "dead": true + }, + { + "date": "2014-01-12", + "value": 400 + }, + { + "date": "2014-01-13", + "value": 430 + }, + { + "date": "2014-01-14", + "value": 410 + }, + { + "date": "2014-01-15", + "value": 200, + "dead": true + }, + { + "date": "2014-01-16", + "value": 500 + }, + { + "date": "2014-01-17", + "value": 100 + }, + { + "date": "2014-01-18", + "value": 30 + }, + { + "date": "2014-01-19", + "value": 300 + }, + { + "date": "2014-01-20", + "value": 200 + } + ] diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-multi.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-multi.json new file mode 100644 index 0000000..e64a30b --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden-multi.json @@ -0,0 +1,1436 @@ +[ + [ + { + "date": "2014-01-01", + "value": 10000000 + }, + { + "date": "2014-01-02", + "value": 10379978 + }, + { + "date": "2014-01-03", + "value": 10493749 + }, + { + "date": "2014-01-04", + "value": 10785250 + }, + { + "date": "2014-01-08", + "value": 15177211 + }, + { + "date": "2014-01-09", + "value": 16622100 + }, + { + "date": "2014-01-10", + "value": 17381072 + }, + { + "date": "2014-01-11", + "value": 18802310 + }, + { + "date": "2014-01-12", + "value": 15531790 + }, + { + "date": "2014-01-13", + "value": 15748881 + }, + { + "date": "2014-01-14", + "value": 18706437 + }, + { + "date": "2014-01-15", + "value": 19752685 + }, + { + "date": "2014-01-16", + "value": 21016418 + }, + { + "date": "2014-01-17", + "value": 25622924 + }, + { + "date": "2014-01-18", + "value": 25337480 + }, + { + "date": "2014-01-19", + "value": 22258882 + }, + { + "date": "2014-01-20", + "value": 23829538 + }, + { + "date": "2014-01-21", + "value": 24245689 + }, + { + "date": "2014-01-22", + "value": 26429711 + }, + { + "date": "2014-01-23", + "value": 26259017 + }, + { + "date": "2014-01-24", + "value": 25396183 + }, + { + "date": "2014-01-25", + "value": 23107346 + }, + { + "date": "2014-01-26", + "value": 28659852 + }, + { + "date": "2014-01-27", + "value": 25270783 + }, + { + "date": "2014-01-28", + "value": 26270783 + }, + { + "date": "2014-01-29", + "value": 27270783 + }, + { + "date": "2014-01-30", + "value": 28270783 + }, + { + "date": "2014-01-31", + "value": 29270783 + }, + { + "date": "2014-02-01", + "value": 30270783 + }, + { + "date": "2014-02-02", + "value": 31270783 + }, + { + "date": "2014-02-03", + "value": 32270783 + }, + { + "date": "2014-02-04", + "value": 33270783 + }, + { + "date": "2014-02-05", + "value": 28270783 + }, + { + "date": "2014-02-06", + "value": 27270783 + }, + { + "date": "2014-02-07", + "value": 35270783 + }, + { + "date": "2014-02-08", + "value": 34270783 + }, + { + "date": "2014-02-09", + "value": 28270783 + }, + { + "date": "2014-02-10", + "value": 35270783 + }, + { + "date": "2014-02-11", + "value": 36270783 + }, + { + "date": "2014-02-12", + "value": 34127078 + }, + { + "date": "2014-02-13", + "value": 33124078 + }, + { + "date": "2014-02-14", + "value": 36227078 + }, + { + "date": "2014-02-15", + "value": 37827078 + }, + { + "date": "2014-02-16", + "value": 36427073 + }, + { + "date": "2014-02-17", + "value": 37570783 + }, + { + "date": "2014-02-18", + "value": 38627073 + }, + { + "date": "2014-02-19", + "value": 37727078 + }, + { + "date": "2014-02-20", + "value": 38827073 + }, + { + "date": "2014-02-21", + "value": 40927078 + }, + { + "date": "2014-02-22", + "value": 41027078 + }, + { + "date": "2014-02-23", + "value": 42127073 + }, + { + "date": "2014-02-24", + "value": 43220783 + }, + { + "date": "2014-02-25", + "value": 44327078 + }, + { + "date": "2014-02-26", + "value": 40427078 + }, + { + "date": "2014-02-27", + "value": 41027078 + }, + { + "date": "2014-02-28", + "value": 45627078 + }, + { + "date": "2014-03-01", + "value": 44727078 + }, + { + "date": "2014-03-02", + "value": 44227078 + }, + { + "date": "2014-03-03", + "value": 45227078 + }, + { + "date": "2014-03-04", + "value": 46027078 + }, + { + "date": "2014-03-05", + "value": 46927078 + }, + { + "date": "2014-03-06", + "value": 47027078 + }, + { + "date": "2014-03-07", + "value": 46227078 + }, + { + "date": "2014-03-08", + "value": 47027078 + }, + { + "date": "2014-03-09", + "value": 48027078 + }, + { + "date": "2014-03-10", + "value": 47027078 + }, + { + "date": "2014-03-11", + "value": 47027078 + }, + { + "date": "2014-03-12", + "value": 48017078 + }, + { + "date": "2014-03-13", + "value": 48077078 + }, + { + "date": "2014-03-14", + "value": 48087078 + }, + { + "date": "2014-03-15", + "value": 48017078 + }, + { + "date": "2014-03-16", + "value": 48047078 + }, + { + "date": "2014-03-17", + "value": 48067078 + }, + { + "date": "2014-03-18", + "value": 48077078 + }, + { + "date": "2014-03-19", + "value": 48027074 + }, + { + "date": "2014-03-20", + "value": 48927079 + }, + { + "date": "2014-03-21", + "value": 48727071 + }, + { + "date": "2014-03-22", + "value": 48127072 + }, + { + "date": "2014-03-23", + "value": 48527072 + }, + { + "date": "2014-03-24", + "value": 48627027 + }, + { + "date": "2014-03-25", + "value": 48027040 + }, + { + "date": "2014-03-26", + "value": 48027043 + }, + { + "date": "2014-03-27", + "value": 48057022 + }, + { + "date": "2014-03-28", + "value": 49057022 + }, + { + "date": "2014-03-29", + "value": 50057022 + }, + { + "date": "2014-03-30", + "value": 51057022 + }, + { + "date": "2014-03-31", + "value": 52057022 + }, + { + "date": "2014-04-01", + "value": 53057022 + }, + { + "date": "2014-04-02", + "value": 54057022 + }, + { + "date": "2014-04-03", + "value": 52057022 + }, + { + "date": "2014-04-04", + "value": 55057022 + }, + { + "date": "2014-04-05", + "value": 58270783 + }, + { + "date": "2014-04-06", + "value": 56270783 + }, + { + "date": "2014-04-07", + "value": 55270783 + }, + { + "date": "2014-04-08", + "value": 58270783 + }, + { + "date": "2014-04-09", + "value": 59270783 + }, + { + "date": "2014-04-10", + "value": 60270783 + }, + { + "date": "2014-04-11", + "value": 61270783 + }, + { + "date": "2014-04-12", + "value": 62270783 + }, + { + "date": "2014-04-13", + "value": 63270783 + }, + { + "date": "2014-04-14", + "value": 64270783 + }, + { + "date": "2014-04-15", + "value": 65270783 + }, + { + "date": "2014-04-16", + "value": 66270783 + }, + { + "date": "2014-04-17", + "value": 67270783 + }, + { + "date": "2014-04-18", + "value": 68270783 + }, + { + "date": "2014-04-19", + "value": 69270783 + }, + { + "date": "2014-04-20", + "value": 70270783 + }, + { + "date": "2014-04-21", + "value": 71270783 + }, + { + "date": "2014-04-22", + "value": 72270783 + }, + { + "date": "2014-04-23", + "value": 73270783 + }, + { + "date": "2014-04-24", + "value": 74270783 + }, + { + "date": "2014-04-25", + "value": 75270783 + }, + { + "date": "2014-04-26", + "value": 76660783 + }, + { + "date": "2014-04-27", + "value": 77270783 + }, + { + "date": "2014-04-28", + "value": 78370783 + }, + { + "date": "2014-04-29", + "value": 79470783 + }, + { + "date": "2014-04-30", + "value": 80170783 + } + ], + [ + { + "date": "2014-01-01", + "value": 150000000 + }, + { + "date": "2014-01-02", + "value": 160379978 + }, + { + "date": "2014-01-03", + "value": 170493749 + }, + { + "date": "2014-01-04", + "value": 160785250 + }, + { + "date": "2014-01-05", + "value": 167391904 + }, + { + "date": "2014-01-06", + "value": 161576838 + }, + { + "date": "2014-01-07", + "value": 161413854 + }, + { + "date": "2014-01-08", + "value": 152177211 + }, + { + "date": "2014-01-09", + "value": 143762210 + }, + { + "date": "2014-01-10", + "value": 144381072 + }, + { + "date": "2014-01-11", + "value": 154352310 + }, + { + "date": "2014-01-12", + "value": 165531790 + }, + { + "date": "2014-01-13", + "value": 175748881 + }, + { + "date": "2014-01-14", + "value": 187064037 + }, + { + "date": "2014-01-15", + "value": 197520685 + }, + { + "date": "2014-01-16", + "value": 210176418 + }, + { + "date": "2014-01-17", + "value": 196122924 + }, + { + "date": "2014-01-18", + "value": 207337480 + }, + { + "date": "2014-01-19", + "value": 200258882 + }, + { + "date": "2014-01-20", + "value": 186829538 + }, + { + "date": "2014-01-21", + "value": 192456897 + }, + { + "date": "2014-01-22", + "value": 204299711 + }, + { + "date": "2014-01-23", + "value": 192759017 + }, + { + "date": "2014-01-24", + "value": 203596183 + }, + { + "date": "2014-01-25", + "value": 208107346 + }, + { + "date": "2014-01-26", + "value": 196359852 + }, + { + "date": "2014-01-27", + "value": 192570783 + }, + { + "date": "2014-01-28", + "value": 177967768 + }, + { + "date": "2014-01-29", + "value": 190632803 + }, + { + "date": "2014-01-30", + "value": 203725316 + }, + { + "date": "2014-01-31", + "value": 218226177 + }, + { + "date": "2014-02-01", + "value": 210698669 + }, + { + "date": "2014-02-02", + "value": 217640656 + }, + { + "date": "2014-02-03", + "value": 216142362 + }, + { + "date": "2014-02-04", + "value": 201410971 + }, + { + "date": "2014-02-05", + "value": 196704289 + }, + { + "date": "2014-02-06", + "value": 190436945 + }, + { + "date": "2014-02-07", + "value": 178891686 + }, + { + "date": "2014-02-08", + "value": 171613962 + }, + { + "date": "2014-02-09", + "value": 157579773 + }, + { + "date": "2014-02-10", + "value": 158677098 + }, + { + "date": "2014-02-11", + "value": 147129977 + }, + { + "date": "2014-02-12", + "value": 151561876 + }, + { + "date": "2014-02-13", + "value": 151627421 + }, + { + "date": "2014-02-14", + "value": 143543872 + }, + { + "date": "2014-02-15", + "value": 136581057 + }, + { + "date": "2014-02-16", + "value": 135560715 + }, + { + "date": "2014-02-17", + "value": 122625263 + }, + { + "date": "2014-02-18", + "value": 112091484 + }, + { + "date": "2014-02-19", + "value": 98810329 + }, + { + "date": "2014-02-20", + "value": 99882912 + }, + { + "date": "2014-02-21", + "value": 94943095 + }, + { + "date": "2014-02-22", + "value": 104875743 + }, + { + "date": "2014-02-23", + "value": 116383678 + }, + { + "date": "2014-02-24", + "value": 125028841 + }, + { + "date": "2014-02-25", + "value": 123967310 + }, + { + "date": "2014-02-26", + "value": 133167029 + }, + { + "date": "2014-02-27", + "value": 128577263 + }, + { + "date": "2014-02-28", + "value": 115836969 + }, + { + "date": "2014-03-01", + "value": 119264529 + }, + { + "date": "2014-03-02", + "value": 109363374 + }, + { + "date": "2014-03-03", + "value": 113985628 + }, + { + "date": "2014-03-04", + "value": 114650999 + }, + { + "date": "2014-03-05", + "value": 110866108 + }, + { + "date": "2014-03-06", + "value": 96473454 + }, + { + "date": "2014-03-07", + "value": 104075886 + }, + { + "date": "2014-03-08", + "value": 103568384 + }, + { + "date": "2014-03-09", + "value": 101534883 + }, + { + "date": "2014-03-10", + "value": 115825447 + }, + { + "date": "2014-03-11", + "value": 126133916 + }, + { + "date": "2014-03-12", + "value": 116502109 + }, + { + "date": "2014-03-13", + "value": 130169411 + }, + { + "date": "2014-03-14", + "value": 124296886 + }, + { + "date": "2014-03-15", + "value": 126347399 + }, + { + "date": "2014-03-16", + "value": 131483669 + }, + { + "date": "2014-03-17", + "value": 142811333 + }, + { + "date": "2014-03-18", + "value": 129675396 + }, + { + "date": "2014-03-19", + "value": 115514483 + }, + { + "date": "2014-03-20", + "value": 117630630 + }, + { + "date": "2014-03-21", + "value": 122340239 + }, + { + "date": "2014-03-22", + "value": 132349091 + }, + { + "date": "2014-03-23", + "value": 125613305 + }, + { + "date": "2014-03-24", + "value": 135592466 + }, + { + "date": "2014-03-25", + "value": 123408762 + }, + { + "date": "2014-03-26", + "value": 111991454 + }, + { + "date": "2014-03-27", + "value": 116123955 + }, + { + "date": "2014-03-28", + "value": 112817214 + }, + { + "date": "2014-03-29", + "value": 113029590 + }, + { + "date": "2014-03-30", + "value": 108753398 + }, + { + "date": "2014-03-31", + "value": 99383763 + }, + { + "date": "2014-04-01", + "value": 100151737 + }, + { + "date": "2014-04-02", + "value": 94985209 + }, + { + "date": "2014-04-03", + "value": 82913669 + }, + { + "date": "2014-04-04", + "value": 78748268 + }, + { + "date": "2014-04-05", + "value": 63829135 + }, + { + "date": "2014-04-06", + "value": 78694727 + }, + { + "date": "2014-04-07", + "value": 80868994 + }, + { + "date": "2014-04-08", + "value": 93799013 + }, + { + "date": "2014-04-09", + "value": 99042416 + }, + { + "date": "2014-04-10", + "value": 97298692 + }, + { + "date": "2014-04-11", + "value": 83353499 + }, + { + "date": "2014-04-12", + "value": 71248129 + }, + { + "date": "2014-04-13", + "value": 75253744 + }, + { + "date": "2014-04-14", + "value": 68976648 + }, + { + "date": "2014-04-15", + "value": 71002284 + }, + { + "date": "2014-04-16", + "value": 75052401 + }, + { + "date": "2014-04-17", + "value": 83894030 + }, + { + "date": "2014-04-18", + "value": 90236528 + }, + { + "date": "2014-04-19", + "value": 99739114 + }, + { + "date": "2014-04-20", + "value": 96407136 + }, + { + "date": "2014-04-21", + "value": 108323177 + }, + { + "date": "2014-04-22", + "value": 101578914 + }, + { + "date": "2014-04-23", + "value": 115877608 + }, + { + "date": "2014-04-24", + "value": 112088857 + }, + { + "date": "2014-04-25", + "value": 112071353 + }, + { + "date": "2014-04-26", + "value": 101790062 + }, + { + "date": "2014-04-27", + "value": 115003761 + }, + { + "date": "2014-04-28", + "value": 120457727 + }, + { + "date": "2014-04-29", + "value": 118253926 + }, + { + "date": "2014-04-30", + "value": 117956992 + } + ], + [ + { + "date": "2014-01-01", + "value": 60000000 + }, + { + "date": "2014-01-02", + "value": 60379978 + }, + { + "date": "2014-01-03", + "value": 40493749 + }, + { + "date": "2014-01-04", + "value": 60785250 + }, + { + "date": "2014-01-05", + "value": 67391904 + }, + { + "date": "2014-01-06", + "value": 61576838 + }, + { + "date": "2014-01-07", + "value": 61413854 + }, + { + "date": "2014-01-08", + "value": 82177211 + }, + { + "date": "2014-01-09", + "value": 103762210 + }, + { + "date": "2014-01-10", + "value": 84381072 + }, + { + "date": "2014-01-11", + "value": 54352310 + }, + { + "date": "2014-01-12", + "value": 65531790 + }, + { + "date": "2014-01-13", + "value": 75748881 + }, + { + "date": "2014-01-14", + "value": 47064037 + }, + { + "date": "2014-01-15", + "value": 67520685 + }, + { + "date": "2014-01-16", + "value": 60176418 + }, + { + "date": "2014-01-17", + "value": 66122924 + }, + { + "date": "2014-01-18", + "value": 57337480 + }, + { + "date": "2014-01-19", + "value": 100258882 + }, + { + "date": "2014-01-20", + "value": 46829538 + }, + { + "date": "2014-01-21", + "value": 92456897 + }, + { + "date": "2014-01-22", + "value": 94299711 + }, + { + "date": "2014-01-23", + "value": 62759017 + }, + { + "date": "2014-01-24", + "value": 103596183 + }, + { + "date": "2014-01-25", + "value": 108107346 + }, + { + "date": "2014-01-26", + "value": 66359852 + }, + { + "date": "2014-01-27", + "value": 62570783 + }, + { + "date": "2014-01-28", + "value": 77967768 + }, + { + "date": "2014-01-29", + "value": 60632803 + }, + { + "date": "2014-01-30", + "value": 103725316 + }, + { + "date": "2014-01-31", + "value": 98226177 + }, + { + "date": "2014-02-01", + "value": 60698669 + }, + { + "date": "2014-02-02", + "value": 67640656 + }, + { + "date": "2014-02-03", + "value": 66142362 + }, + { + "date": "2014-02-04", + "value": 101410971 + }, + { + "date": "2014-02-05", + "value": 66704289 + }, + { + "date": "2014-02-06", + "value": 60436945 + }, + { + "date": "2014-02-07", + "value": 78891686 + }, + { + "date": "2014-02-08", + "value": 71613962 + }, + { + "date": "2014-02-09", + "value": 107579773 + }, + { + "date": "2014-02-10", + "value": 58677098 + }, + { + "date": "2014-02-11", + "value": 87129977 + }, + { + "date": "2014-02-12", + "value": 51561876 + }, + { + "date": "2014-02-13", + "value": 51627421 + }, + { + "date": "2014-02-14", + "value": 83543872 + }, + { + "date": "2014-02-15", + "value": 66581057 + }, + { + "date": "2014-02-16", + "value": 65560715 + }, + { + "date": "2014-02-17", + "value": 62625263 + }, + { + "date": "2014-02-18", + "value": 92091484 + }, + { + "date": "2014-02-19", + "value": 48810329 + }, + { + "date": "2014-02-20", + "value": 49882912 + }, + { + "date": "2014-02-21", + "value": 44943095 + }, + { + "date": "2014-02-22", + "value": 104875743 + }, + { + "date": "2014-02-23", + "value": 96383678 + }, + { + "date": "2014-02-24", + "value": 105028841 + }, + { + "date": "2014-02-25", + "value": 63967310 + }, + { + "date": "2014-02-26", + "value": 63167029 + }, + { + "date": "2014-02-27", + "value": 68577263 + }, + { + "date": "2014-02-28", + "value": 95836969 + }, + { + "date": "2014-03-01", + "value": 99264529 + }, + { + "date": "2014-03-02", + "value": 109363374 + }, + { + "date": "2014-03-03", + "value": 93985628 + }, + { + "date": "2014-03-04", + "value": 94650999 + }, + { + "date": "2014-03-05", + "value": 90866108 + }, + { + "date": "2014-03-06", + "value": 46473454 + }, + { + "date": "2014-03-07", + "value": 84075886 + }, + { + "date": "2014-03-08", + "value": 103568384 + }, + { + "date": "2014-03-09", + "value": 101534883 + }, + { + "date": "2014-03-10", + "value": 95825447 + }, + { + "date": "2014-03-11", + "value": 66133916 + }, + { + "date": "2014-03-12", + "value": 96502109 + }, + { + "date": "2014-03-13", + "value": 80169411 + }, + { + "date": "2014-03-14", + "value": 84296886 + }, + { + "date": "2014-03-15", + "value": 86347399 + }, + { + "date": "2014-03-16", + "value": 31483669 + }, + { + "date": "2014-03-17", + "value": 82811333 + }, + { + "date": "2014-03-18", + "value": 89675396 + }, + { + "date": "2014-03-19", + "value": 95514483 + }, + { + "date": "2014-03-20", + "value": 97630630 + }, + { + "date": "2014-03-21", + "value": 62340239 + }, + { + "date": "2014-03-22", + "value": 62349091 + }, + { + "date": "2014-03-23", + "value": 65613305 + }, + { + "date": "2014-03-24", + "value": 65592466 + }, + { + "date": "2014-03-25", + "value": 63408762 + }, + { + "date": "2014-03-26", + "value": 91991454 + }, + { + "date": "2014-03-27", + "value": 96123955 + }, + { + "date": "2014-03-28", + "value": 92817214 + }, + { + "date": "2014-03-29", + "value": 93029590 + }, + { + "date": "2014-03-30", + "value": 108753398 + }, + { + "date": "2014-03-31", + "value": 49383763 + }, + { + "date": "2014-04-01", + "value": 100151737 + }, + { + "date": "2014-04-02", + "value": 44985209 + }, + { + "date": "2014-04-03", + "value": 52913669 + }, + { + "date": "2014-04-04", + "value": 48748268 + }, + { + "date": "2014-04-05", + "value": 23829135 + }, + { + "date": "2014-04-06", + "value": 58694727 + }, + { + "date": "2014-04-07", + "value": 50868994 + }, + { + "date": "2014-04-08", + "value": 43799013 + }, + { + "date": "2014-04-09", + "value": 4042416 + }, + { + "date": "2014-04-10", + "value": 47298692 + }, + { + "date": "2014-04-11", + "value": 53353499 + }, + { + "date": "2014-04-12", + "value": 71248129 + }, + { + "date": "2014-04-13", + "value": 75253744 + }, + { + "date": "2014-04-14", + "value": 68976648 + }, + { + "date": "2014-04-15", + "value": 71002284 + }, + { + "date": "2014-04-16", + "value": 75052401 + }, + { + "date": "2014-04-17", + "value": 83894030 + }, + { + "date": "2014-04-18", + "value": 50236528 + }, + { + "date": "2014-04-19", + "value": 59739114 + }, + { + "date": "2014-04-20", + "value": 56407136 + }, + { + "date": "2014-04-21", + "value": 108323177 + }, + { + "date": "2014-04-22", + "value": 101578914 + }, + { + "date": "2014-04-23", + "value": 95877608 + }, + { + "date": "2014-04-24", + "value": 62088857 + }, + { + "date": "2014-04-25", + "value": 92071353 + }, + { + "date": "2014-04-26", + "value": 81790062 + }, + { + "date": "2014-04-27", + "value": 105003761 + }, + { + "date": "2014-04-28", + "value": 100457727 + }, + { + "date": "2014-04-29", + "value": 98253926 + }, + { + "date": "2014-04-30", + "value": 67956992 + } + ] +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden.json new file mode 100644 index 0000000..582d08a --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-is-hidden.json @@ -0,0 +1,39 @@ + + [ + { + "date": "2014-01-08", + "value": 500 + }, + { + "date": "2014-01-09", + "value": 500 + }, + { + "date": "2014-01-10", + "value": 400 + }, + { + "date": "2014-02-12", + "value": 500 + }, + { + "date": "2014-02-13", + "value": 100 + }, + { + "date": "2014-02-14", + "value": null + }, + { + "date": "2014-02-15", + "value": 30 + }, + { + "date": "2014-02-16", + "value": 300 + }, + { + "date": "2014-02-17", + "value": 200 + } + ] diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-y.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-y.json new file mode 100644 index 0000000..9ec8f18 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/missing-y.json @@ -0,0 +1,35 @@ + + [ + { + "date": "2014-01-08", + "value": 500 + }, + { + "date": "2014-01-12", + "value": 500 + }, + { + "date": "2014-01-19", + "value": 2000 + }, + { + "date": "2014-01-20", + "value": 2200 + }, + { + "date": "2014-01-21", + "value": 2300 + }, + { + "date": "2014-04-23", + "value": 500 + }, + { + "date": "2014-04-24", + "value": 1500 + }, + { + "date": "2014-04-25", + "value": 3000 + } + ] diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/multiline.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/multiline.json new file mode 100644 index 0000000..90102ba --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/multiline.json @@ -0,0 +1,902 @@ +[ + { + "date": "2013-11-30", + "value3": 40770, + "value2": 38327, + "value1": 43564 + }, + { + "date": "2013-12-01", + "value3": 39705, + "value2": 39998, + "value1": 43104 + }, + { + "date": "2013-12-02", + "value3": 39209, + "value2": 40158, + "value1": 40300 + }, + { + "date": "2013-12-03", + "value3": 35539, + "value2": 37155, + "value1": 37078 + }, + { + "date": "2013-12-04", + "value3": 33231, + "value2": 37554, + "value1": 38526 + }, + { + "date": "2013-12-05", + "value3": 29792, + "value2": 40383, + "value1": 36456 + }, + { + "date": "2013-12-06", + "value3": 33533, + "value2": 42351, + "value1": 39354 + }, + { + "date": "2013-12-07", + "value3": 31903, + "value2": 45058, + "value1": 42378 + }, + { + "date": "2013-12-08", + "value3": 30748, + "value2": 47100, + "value1": 38812 + }, + { + "date": "2013-12-09", + "value3": 30380, + "value2": 44866, + "value1": 37220 + }, + { + "date": "2013-12-10", + "value3": 29189, + "value2": 41967, + "value1": 39755 + }, + { + "date": "2013-12-11", + "value3": 31210, + "value2": 39328, + "value1": 40757 + }, + { + "date": "2013-12-12", + "value3": 35036, + "value2": 35949, + "value1": 39377 + }, + { + "date": "2013-12-13", + "value3": 35619, + "value2": 33159, + "value1": 38073 + }, + { + "date": "2013-12-14", + "value3": 36377, + "value2": 33589, + "value1": 35086 + }, + { + "date": "2013-12-15", + "value3": 38730, + "value2": 33746, + "value1": 34582 + }, + { + "date": "2013-12-16", + "value3": 34850, + "value2": 36825, + "value1": 36423 + }, + { + "date": "2013-12-17", + "value3": 33172, + "value2": 38092, + "value1": 37563 + }, + { + "date": "2013-12-18", + "value3": 29390, + "value2": 36368, + "value1": 38391 + }, + { + "date": "2013-12-19", + "value3": 27097, + "value2": 32403, + "value1": 38486 + }, + { + "date": "2013-12-20", + "value3": 25922, + "value2": 35803, + "value1": 35076 + }, + { + "date": "2013-12-21", + "value3": 29734, + "value2": 37922, + "value1": 32287 + }, + { + "date": "2013-12-22", + "value3": 31860, + "value2": 35274, + "value1": 28294 + }, + { + "date": "2013-12-23", + "value3": 29052, + "value2": 35216, + "value1": 31195 + }, + { + "date": "2013-12-24", + "value3": 27400, + "value2": 35466, + "value1": 28475 + }, + { + "date": "2013-12-25", + "value3": 29042, + "value2": 33327, + "value1": 26174 + }, + { + "date": "2013-12-26", + "value3": 28410, + "value2": 35632, + "value1": 28177 + }, + { + "date": "2013-12-27", + "value3": 27045, + "value2": 35348, + "value1": 28660 + }, + { + "date": "2013-12-28", + "value3": 26506, + "value2": 37153, + "value1": 27007 + }, + { + "date": "2013-12-29", + "value3": 26331, + "value2": 35442, + "value1": 29527 + }, + { + "date": "2013-12-30", + "value3": 23209, + "value2": 37541, + "value1": 30305 + }, + { + "date": "2013-12-31", + "value3": 24124, + "value2": 34335, + "value1": 32349 + }, + { + "date": "2014-01-01", + "value3": 21329, + "value2": 32894, + "value1": 32782 + }, + { + "date": "2014-01-02", + "value3": 21989, + "value2": 30909, + "value1": 29583 + }, + { + "date": "2014-01-03", + "value3": 23481, + "value2": 33794, + "value1": 25680 + }, + { + "date": "2014-01-04", + "value3": 20253, + "value2": 37516, + "value1": 24292 + }, + { + "date": "2014-01-05", + "value3": 21150, + "value2": 36692, + "value1": 24372 + }, + { + "date": "2014-01-06", + "value3": 23170, + "value2": 35783, + "value1": 20990 + }, + { + "date": "2014-01-07", + "value3": 19767, + "value2": 38478, + "value1": 24691 + }, + { + "date": "2014-01-08", + "value3": 17130, + "value2": 40333, + "value1": 22481 + }, + { + "date": "2014-01-09", + "value3": 16280, + "value2": 39265, + "value1": 25239 + }, + { + "date": "2014-01-10", + "value3": 12306, + "value2": 40702, + "value1": 24248 + }, + { + "date": "2014-01-11", + "value3": 14425, + "value2": 39793, + "value1": 24395 + }, + { + "date": "2014-01-12", + "value3": 14555, + "value2": 36282, + "value1": 25580 + }, + { + "date": "2014-01-13", + "value3": 14582, + "value2": 32495, + "value1": 24165 + }, + { + "date": "2014-01-14", + "value3": 15216, + "value2": 36217, + "value1": 26088 + }, + { + "date": "2014-01-15", + "value3": 18650, + "value2": 39448, + "value1": 29528 + }, + { + "date": "2014-01-16", + "value3": 16567, + "value2": 36157, + "value1": 27990 + }, + { + "date": "2014-01-17", + "value3": 16512, + "value2": 33246, + "value1": 24218 + }, + { + "date": "2014-01-18", + "value3": 19777, + "value2": 35543, + "value1": 20837 + }, + { + "date": "2014-01-19", + "value3": 20399, + "value2": 34715, + "value1": 22407 + }, + { + "date": "2014-01-20", + "value3": 18816, + "value2": 32680, + "value1": 19989 + }, + { + "date": "2014-01-21", + "value3": 19986, + "value2": 29250, + "value1": 23828 + }, + { + "date": "2014-01-22", + "value3": 22251, + "value2": 30438, + "value1": 26714 + }, + { + "date": "2014-01-23", + "value3": 25922, + "value2": 28387, + "value1": 30514 + }, + { + "date": "2014-01-24", + "value3": 26428, + "value2": 29612, + "value1": 33155 + }, + { + "date": "2014-01-25", + "value3": 25424, + "value2": 25831, + "value1": 34462 + }, + { + "date": "2014-01-26", + "value3": 27621, + "value2": 22203, + "value1": 32276 + }, + { + "date": "2014-01-27", + "value3": 23961, + "value2": 22855, + "value1": 31899 + }, + { + "date": "2014-01-28", + "value3": 25591, + "value2": 22024, + "value1": 29327 + }, + { + "date": "2014-01-29", + "value3": 26847, + "value2": 22686, + "value1": 32158 + }, + { + "date": "2014-01-30", + "value3": 27853, + "value2": 24676, + "value1": 29473 + }, + { + "date": "2014-01-31", + "value3": 24178, + "value2": 27591, + "value1": 32247 + }, + { + "date": "2014-02-01", + "value3": 20626, + "value2": 24225, + "value1": 30117 + }, + { + "date": "2014-02-02", + "value3": 17938, + "value2": 27842, + "value1": 29435 + }, + { + "date": "2014-02-03", + "value3": 21312, + "value2": 24541, + "value1": 27320 + }, + { + "date": "2014-02-04", + "value3": 17385, + "value2": 27164, + "value1": 30515 + }, + { + "date": "2014-02-05", + "value3": 17638, + "value2": 23288, + "value1": 28635 + }, + { + "date": "2014-02-06", + "value3": 18946, + "value2": 21521, + "value1": 27292 + }, + { + "date": "2014-02-07", + "value3": 21089, + "value2": 22467, + "value1": 24966 + }, + { + "date": "2014-02-08", + "value3": 22956, + "value2": 20604, + "value1": 24670 + }, + { + "date": "2014-02-09", + "value3": 23081, + "value2": 20732, + "value1": 27518 + }, + { + "date": "2014-02-10", + "value3": 25334, + "value2": 21436, + "value1": 24862 + }, + { + "date": "2014-02-11", + "value3": 21989, + "value2": 23315, + "value1": 27263 + }, + { + "date": "2014-02-12", + "value3": 20933, + "value2": 23816, + "value1": 25352 + }, + { + "date": "2014-02-13", + "value3": 21185, + "value2": 22416, + "value1": 22396 + }, + { + "date": "2014-02-14", + "value3": 22801, + "value2": 19348, + "value1": 18497 + }, + { + "date": "2014-02-15", + "value3": 20072, + "value2": 20167, + "value1": 21890 + }, + { + "date": "2014-02-16", + "value3": 23120, + "value2": 23505, + "value1": 22635 + }, + { + "date": "2014-02-17", + "value3": 26351, + "value2": 27294, + "value1": 23970 + }, + { + "date": "2014-02-18", + "value3": 27078, + "value2": 30219, + "value1": 20245 + }, + { + "date": "2014-02-19", + "value3": 26042, + "value2": 28226, + "value1": 17369 + }, + { + "date": "2014-02-20", + "value3": 28763, + "value2": 26489, + "value1": 19326 + }, + { + "date": "2014-02-21", + "value3": 31668, + "value2": 23210, + "value1": 17781 + }, + { + "date": "2014-02-22", + "value3": 31141, + "value2": 22636, + "value1": 15731 + }, + { + "date": "2014-02-23", + "value3": 34681, + "value2": 24430, + "value1": 11917 + }, + { + "date": "2014-02-24", + "value3": 32836, + "value2": 22607, + "value1": 8723 + }, + { + "date": "2014-02-25", + "value3": 29452, + "value2": 22561, + "value1": 7930 + }, + { + "date": "2014-02-26", + "value3": 31958, + "value2": 21692, + "value1": 7898 + }, + { + "date": "2014-02-27", + "value3": 30526, + "value2": 24281, + "value1": 4909 + }, + { + "date": "2014-02-28", + "value3": 30271, + "value2": 23369, + "value1": 1564 + }, + { + "date": "2014-03-01", + "value3": 30977, + "value2": 21954, + "value1": 1564 + }, + { + "date": "2014-03-02", + "value3": 27892, + "value2": 24495, + "value1": 3179 + }, + { + "date": "2014-03-03", + "value3": 26752, + "value2": 20644, + "value1": 4147 + }, + { + "date": "2014-03-04", + "value3": 28318, + "value2": 20201, + "value1": 7271 + }, + { + "date": "2014-03-05", + "value3": 30646, + "value2": 19919, + "value1": 8747 + }, + { + "date": "2014-03-06", + "value3": 32219, + "value2": 20166, + "value1": 10704 + }, + { + "date": "2014-03-07", + "value3": 36175, + "value2": 24020, + "value1": 13698 + }, + { + "date": "2014-03-08", + "value3": 33312, + "value2": 23848, + "value1": 10890 + }, + { + "date": "2014-03-09", + "value3": 30792, + "value2": 23966, + "value1": 7044 + }, + { + "date": "2014-03-10", + "value3": 31162, + "value2": 24539, + "value1": 6461 + }, + { + "date": "2014-03-11", + "value3": 33510, + "value2": 26713, + "value1": 5604 + }, + { + "date": "2014-03-12", + "value3": 37339, + "value2": 23373, + "value1": 4937 + }, + { + "date": "2014-03-13", + "value3": 36413, + "value2": 20127, + "value1": 4007 + }, + { + "date": "2014-03-14", + "value3": 34026, + "value2": 18112, + "value1": 7673 + }, + { + "date": "2014-03-15", + "value3": 33383, + "value2": 20099, + "value1": 7768 + }, + { + "date": "2014-03-16", + "value3": 33358, + "value2": 17391, + "value1": 11123 + }, + { + "date": "2014-03-17", + "value3": 33433, + "value2": 16720, + "value1": 13294 + }, + { + "date": "2014-03-18", + "value3": 33898, + "value2": 17686, + "value1": 15860 + }, + { + "date": "2014-03-19", + "value3": 32549, + "value2": 19989, + "value1": 12153 + }, + { + "date": "2014-03-20", + "value3": 32990, + "value2": 17285, + "value1": 15822 + }, + { + "date": "2014-03-21", + "value3": 31703, + "value2": 15461, + "value1": 13681 + }, + { + "date": "2014-03-22", + "value3": 28348, + "value2": 18088, + "value1": 11944 + }, + { + "date": "2014-03-23", + "value3": 32284, + "value2": 19755, + "value1": 12479 + }, + { + "date": "2014-03-24", + "value3": 34991, + "value2": 19796, + "value1": 12171 + }, + { + "date": "2014-03-25", + "value3": 34395, + "value2": 20606, + "value1": 12889 + }, + { + "date": "2014-03-26", + "value3": 35467, + "value2": 23220, + "value1": 13169 + }, + { + "date": "2014-03-27", + "value3": 36434, + "value2": 26524, + "value1": 12952 + }, + { + "date": "2014-03-28", + "value3": 34007, + "value2": 27261, + "value1": 12141 + }, + { + "date": "2014-03-29", + "value3": 36605, + "value2": 28143, + "value1": 8420 + }, + { + "date": "2014-03-30", + "value3": 35324, + "value2": 29999, + "value1": 9551 + }, + { + "date": "2014-03-31", + "value3": 35077, + "value2": 33650, + "value1": 5917 + }, + { + "date": "2014-04-01", + "value3": 32331, + "value2": 37641, + "value1": 4555 + }, + { + "date": "2014-04-02", + "value3": 32161, + "value2": 40591, + "value1": 8205 + }, + { + "date": "2014-04-03", + "value3": 28921, + "value2": 39738, + "value1": 7119 + }, + { + "date": "2014-04-04", + "value3": 32534, + "value2": 39608, + "value1": 8866 + }, + { + "date": "2014-04-05", + "value3": 31463, + "value2": 40618, + "value1": 10712 + }, + { + "date": "2014-04-06", + "value3": 27973, + "value2": 36821, + "value1": 12396 + }, + { + "date": "2014-04-07", + "value3": 29953, + "value2": 34470, + "value1": 9679 + }, + { + "date": "2014-04-08", + "value3": 26788, + "value2": 31653, + "value1": 12035 + }, + { + "date": "2014-04-09", + "value3": 28319, + "value2": 30246, + "value1": 15903 + }, + { + "date": "2014-04-10", + "value3": 25536, + "value2": 32591, + "value1": 12835 + }, + { + "date": "2014-04-11", + "value3": 26710, + "value2": 34847, + "value1": 10734 + }, + { + "date": "2014-04-12", + "value3": 28521, + "value2": 36313, + "value1": 8157 + }, + { + "date": "2014-04-13", + "value3": 29304, + "value2": 37283, + "value1": 7307 + }, + { + "date": "2014-04-14", + "value3": 26847, + "value2": 35552, + "value1": 3414 + }, + { + "date": "2014-04-15", + "value3": 23252, + "value2": 33905, + "value1": 622 + }, + { + "date": "2014-04-16", + "value3": 21251, + "value2": 37098, + "value1": 3710 + }, + { + "date": "2014-04-17", + "value3": 21938, + "value2": 35414, + "value1": 2900 + }, + { + "date": "2014-04-18", + "value3": 19210, + "value2": 35479, + "value1": 4723 + }, + { + "date": "2014-04-19", + "value3": 17765, + "value2": 35822, + "value1": 7656 + }, + { + "date": "2014-04-20", + "value3": 15064, + "value2": 32006, + "value1": 5948 + }, + { + "date": "2014-04-21", + "value3": 16166, + "value2": 35829, + "value1": 4471 + }, + { + "date": "2014-04-22", + "value3": 14336, + "value2": 38851, + "value1": 6870 + }, + { + "date": "2014-04-23", + "value3": 18145, + "value2": 42598, + "value1": 4625 + }, + { + "date": "2014-04-24", + "value3": 20986, + "value2": 41071, + "value1": 4396 + }, + { + "date": "2014-04-25", + "value3": 21492, + "value2": 43611, + "value1": 5542 + }, + { + "date": "2014-04-26", + "value3": 20712, + "value2": 41320, + "value1": 7280 + }, + { + "date": "2014-04-27", + "value3": 18048, + "value2": 39232, + "value1": 3426 + }, + { + "date": "2014-04-28", + "value3": 17747, + "value2": 42156, + "value1": 4539 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/neg1.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/neg1.json new file mode 100644 index 0000000..f12a4ca --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/neg1.json @@ -0,0 +1,602 @@ +[ + { + "date": "2013-10-01", + "value": 0.0 + }, + { + "date": "2013-10-02", + "value": -20.27860065952477 + }, + { + "date": "2013-10-03", + "value": -12.426109787612926 + }, + { + "date": "2013-10-04", + "value": -17.699256257379318 + }, + { + "date": "2013-10-05", + "value": -22.019134369994354 + }, + { + "date": "2013-10-06", + "value": -41.59885296861614 + }, + { + "date": "2013-10-07", + "value": -31.867314787877127 + }, + { + "date": "2013-10-08", + "value": -16.68549399939984 + }, + { + "date": "2013-10-09", + "value": -14.214554612147637 + }, + { + "date": "2013-10-10", + "value": -37.100703439565635 + }, + { + "date": "2013-10-11", + "value": -41.716391973782905 + }, + { + "date": "2013-10-12", + "value": -60.65986986496344 + }, + { + "date": "2013-10-13", + "value": -65.88269292682585 + }, + { + "date": "2013-10-14", + "value": -85.89811733657307 + }, + { + "date": "2013-10-15", + "value": -87.57011580082312 + }, + { + "date": "2013-10-16", + "value": -69.1076591319889 + }, + { + "date": "2013-10-17", + "value": -69.71829820893743 + }, + { + "date": "2013-10-18", + "value": -48.07710064468784 + }, + { + "date": "2013-10-19", + "value": -42.02312145221815 + }, + { + "date": "2013-10-20", + "value": -36.94872786920486 + }, + { + "date": "2013-10-21", + "value": -26.283993993694217 + }, + { + "date": "2013-10-22", + "value": -41.683357633072106 + }, + { + "date": "2013-10-23", + "value": -48.410135784779435 + }, + { + "date": "2013-10-24", + "value": -24.647894376874603 + }, + { + "date": "2013-10-25", + "value": -24.48313857183973 + }, + { + "date": "2013-10-26", + "value": -30.775646331124953 + }, + { + "date": "2013-10-27", + "value": -42.353653361246884 + }, + { + "date": "2013-10-28", + "value": -56.408927207093086 + }, + { + "date": "2013-10-29", + "value": -40.78984664417509 + }, + { + "date": "2013-10-30", + "value": -41.42605076469138 + }, + { + "date": "2013-10-31", + "value": -18.09604151517472 + }, + { + "date": "2013-11-01", + "value": 2.0546535501343186 + }, + { + "date": "2013-11-02", + "value": 16.427200269275257 + }, + { + "date": "2013-11-03", + "value": 36.26021813729312 + }, + { + "date": "2013-11-04", + "value": 17.943623384419123 + }, + { + "date": "2013-11-05", + "value": 17.640349147379087 + }, + { + "date": "2013-11-06", + "value": 28.733924995418647 + }, + { + "date": "2013-11-07", + "value": 43.17866048300303 + }, + { + "date": "2013-11-08", + "value": 42.352421757240364 + }, + { + "date": "2013-11-09", + "value": 20.96374796987576 + }, + { + "date": "2013-11-10", + "value": 0.4817825186157414 + }, + { + "date": "2013-11-11", + "value": 4.454052949905262 + }, + { + "date": "2013-11-12", + "value": 9.903521845328488 + }, + { + "date": "2013-11-13", + "value": -9.659938196685449 + }, + { + "date": "2013-11-14", + "value": -1.6572458262441714 + }, + { + "date": "2013-11-15", + "value": -19.421347615158197 + }, + { + "date": "2013-11-16", + "value": -5.133047713617817 + }, + { + "date": "2013-11-17", + "value": 7.142073986101426 + }, + { + "date": "2013-11-18", + "value": 19.965752044244944 + }, + { + "date": "2013-11-19", + "value": 34.06855156342502 + }, + { + "date": "2013-11-20", + "value": 32.035712731383306 + }, + { + "date": "2013-11-21", + "value": 26.800280474507574 + }, + { + "date": "2013-11-22", + "value": 36.74472173965269 + }, + { + "date": "2013-11-23", + "value": 17.635258758794258 + }, + { + "date": "2013-11-24", + "value": 21.70157569545806 + }, + { + "date": "2013-11-25", + "value": 12.880215322765117 + }, + { + "date": "2013-11-26", + "value": -1.6952234072651535 + }, + { + "date": "2013-11-27", + "value": -25.709873487640706 + }, + { + "date": "2013-11-28", + "value": -24.333141952222054 + }, + { + "date": "2013-11-29", + "value": -23.101049395363514 + }, + { + "date": "2013-11-30", + "value": -30.77467592550588 + }, + { + "date": "2013-12-01", + "value": -52.484803998469324 + }, + { + "date": "2013-12-02", + "value": -59.967129097767554 + }, + { + "date": "2013-12-03", + "value": -58.54448864190029 + }, + { + "date": "2013-12-04", + "value": -35.733861688599625 + }, + { + "date": "2013-12-05", + "value": -49.95861223226006 + }, + { + "date": "2013-12-06", + "value": -68.88793877584408 + }, + { + "date": "2013-12-07", + "value": -50.428275259634844 + }, + { + "date": "2013-12-08", + "value": -40.26117556623101 + }, + { + "date": "2013-12-09", + "value": -38.891176869589806 + }, + { + "date": "2013-12-10", + "value": -59.758690871453695 + }, + { + "date": "2013-12-11", + "value": -71.1695554284355 + }, + { + "date": "2013-12-12", + "value": -90.63524940599096 + }, + { + "date": "2013-12-13", + "value": -79.23423804726241 + }, + { + "date": "2013-12-14", + "value": -71.25861388735568 + }, + { + "date": "2013-12-15", + "value": -60.61596323199725 + }, + { + "date": "2013-12-16", + "value": -62.93902244769705 + }, + { + "date": "2013-12-17", + "value": -41.22170848850722 + }, + { + "date": "2013-12-18", + "value": -27.226208027424434 + }, + { + "date": "2013-12-19", + "value": -7.309085309368637 + }, + { + "date": "2013-12-20", + "value": 3.670426015191861 + }, + { + "date": "2013-12-21", + "value": 19.473948613489632 + }, + { + "date": "2013-12-22", + "value": 40.415945876438144 + }, + { + "date": "2013-12-23", + "value": 31.289641086998923 + }, + { + "date": "2013-12-24", + "value": 17.434969637396232 + }, + { + "date": "2013-12-25", + "value": 30.21158378387427 + }, + { + "date": "2013-12-26", + "value": 30.727072719951824 + }, + { + "date": "2013-12-27", + "value": 20.184828808977333 + }, + { + "date": "2013-12-28", + "value": 27.76791048820225 + }, + { + "date": "2013-12-29", + "value": 34.40666779673991 + }, + { + "date": "2013-12-30", + "value": 28.662553475743806 + }, + { + "date": "2013-12-31", + "value": 20.816765875588956 + }, + { + "date": "2014-01-01", + "value": 30.498234516361673 + }, + { + "date": "2014-01-02", + "value": 6.549837407292948 + }, + { + "date": "2014-01-03", + "value": -17.03978957481648 + }, + { + "date": "2014-01-04", + "value": -6.201247455250156 + }, + { + "date": "2014-01-05", + "value": -9.481910347672848 + }, + { + "date": "2014-01-06", + "value": -1.4927745588584092 + }, + { + "date": "2014-01-07", + "value": 7.015746206056052 + }, + { + "date": "2014-01-08", + "value": 16.24056736124951 + }, + { + "date": "2014-01-09", + "value": 40.86145060910893 + }, + { + "date": "2014-01-10", + "value": 30.561347738520645 + }, + { + "date": "2014-01-11", + "value": 7.104703671937518 + }, + { + "date": "2014-01-12", + "value": 30.52693531793409 + }, + { + "date": "2014-01-13", + "value": 43.612806638528454 + }, + { + "date": "2014-01-14", + "value": 20.25247412642843 + }, + { + "date": "2014-01-15", + "value": 7.141936114658641 + }, + { + "date": "2014-01-16", + "value": -10.81374417310036 + }, + { + "date": "2014-01-17", + "value": 13.268210809685325 + }, + { + "date": "2014-01-18", + "value": 9.593303343135403 + }, + { + "date": "2014-01-19", + "value": 9.190238080819555 + }, + { + "date": "2014-01-20", + "value": -7.087595978474408 + }, + { + "date": "2014-01-21", + "value": 16.112869601906773 + }, + { + "date": "2014-01-22", + "value": 19.92397510159386 + }, + { + "date": "2014-01-23", + "value": 33.4964486295363 + }, + { + "date": "2014-01-24", + "value": 46.4831931105589 + }, + { + "date": "2014-01-25", + "value": 22.484343494394732 + }, + { + "date": "2014-01-26", + "value": 9.574360390216658 + }, + { + "date": "2014-01-27", + "value": 12.56929545850477 + }, + { + "date": "2014-01-28", + "value": -0.14595957202229037 + }, + { + "date": "2014-01-29", + "value": -14.696983674286617 + }, + { + "date": "2014-01-30", + "value": -15.237944850705059 + }, + { + "date": "2014-01-31", + "value": -1.7882058112963062 + }, + { + "date": "2014-02-01", + "value": -7.860538889362351 + }, + { + "date": "2014-02-02", + "value": 8.444727352087527 + }, + { + "date": "2014-02-03", + "value": 32.30058738777103 + }, + { + "date": "2014-02-04", + "value": 16.055786840333848 + }, + { + "date": "2014-02-05", + "value": -0.36610893414817625 + }, + { + "date": "2014-02-06", + "value": -1.1025132187248678 + }, + { + "date": "2014-02-07", + "value": 16.48048170957292 + }, + { + "date": "2014-02-08", + "value": 30.920083106250665 + }, + { + "date": "2014-02-09", + "value": 9.793945311635703 + }, + { + "date": "2014-02-10", + "value": -14.741798239121763 + }, + { + "date": "2014-02-11", + "value": 9.788165531444847 + }, + { + "date": "2014-02-12", + "value": -8.119237390130131 + }, + { + "date": "2014-02-13", + "value": -1.1782643021314554 + }, + { + "date": "2014-02-14", + "value": 7.310002841362066 + }, + { + "date": "2014-02-15", + "value": -6.0549226820141255 + }, + { + "date": "2014-02-16", + "value": 8.311998864819806 + }, + { + "date": "2014-02-17", + "value": 2.2233224632177393 + }, + { + "date": "2014-02-18", + "value": -18.946268533746085 + }, + { + "date": "2014-02-19", + "value": -5.889102580833665 + }, + { + "date": "2014-02-20", + "value": -0.19481412319894353 + }, + { + "date": "2014-02-21", + "value": -1.9196952442973252 + }, + { + "date": "2014-02-22", + "value": -25.056284352606756 + }, + { + "date": "2014-02-23", + "value": -32.09293779807747 + }, + { + "date": "2014-02-24", + "value": -55.77733578681833 + }, + { + "date": "2014-02-25", + "value": -73.55650805303047 + }, + { + "date": "2014-02-26", + "value": -78.44939933625979 + }, + { + "date": "2014-02-27", + "value": -61.75086522568682 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/neg2.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/neg2.json new file mode 100644 index 0000000..00bdbcc --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/neg2.json @@ -0,0 +1,30 @@ +[ + { + "measure": 43.34, + "subject": 32.0 + }, + { + "measure": 53.3423, + "subject": 20.27 + }, + { + "measure": -10.343, + "subject": 12.42 + }, + { + "measure": -1, + "subject": -1.69 + }, + { + "measure": 10, + "subject": -10.01 + }, + { + "measure": 25, + "subject": -21.59 + }, + { + "measure": -20.343, + "subject": -31.86 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/nh-gop.tsv b/priv/static/metrics-graphics-3.0-alpha3/examples/data/nh-gop.tsv new file mode 100644 index 0000000..e0dc414 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/nh-gop.tsv @@ -0,0 +1,6 @@ +Poll Date Trump Rubio Cruz Christie Kasich Bush Carson Fiorina Paul Huckabee Santorum Pataki Graham Spread +RCP Average 12/13 - 1/6 27.0 13.8 11.5 11.3 10.0 8.3 5.0 4.8 3.8 0.3 0.3 0.0 0.0 Trump +13.2 +PPP (D) 1/4 - 1/6 29 15 10 11 11 10 4 4 3 1 1 -- -- Trump +14 +ARG 12/20 - 12/20 21 15 10 12 13 7 6 5 4 0 0 0 -- Trump +6 +CBS News/YouGov 12/14 - 12/17 32 13 14 11 8 6 5 4 5 0 0 0 0 Trump +18 +Boston Herald 12/13 - 12/17 26 12 12 11 8 10 5 6 3 0 0 0 0 Trump +14 \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/points1.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/points1.json new file mode 100644 index 0000000..c3b17f7 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/points1.json @@ -0,0 +1,802 @@ +[ + { + "u": "cat_10", + "w": 1.243871075541485, + "v": "other", + "y": 211.80029085913867, + "x": 156.56698521169255, + "z": 1.2592730408041488 + }, + { + "u": "cat_9", + "w": 0.18317089873596637, + "v": "other", + "y": 196.93116746887526, + "x": 182.9226627644747, + "z": 1.5420852412869692 + }, + { + "u": "cat_11", + "w": 1.6440310398846552, + "v": "other", + "y": 198.15275935129918, + "x": 180.46587284398524, + "z": 1.0607952297441374 + }, + { + "u": "cat_7", + "w": -0.7500939816017782, + "v": "other", + "y": 146.31202991730444, + "x": 102.35636312891461, + "z": 0.30940991631448456 + }, + { + "u": "cat_10", + "w": 0.46988959503208527, + "v": "other", + "y": 118.66304545624911, + "x": 175.8035980586206, + "z": 1.589820005614669 + }, + { + "u": "cat_3", + "w": 2.4359184943127667, + "v": "other", + "y": 214.0123663650676, + "x": 146.24883586964125, + "z": -0.8716888194991463 + }, + { + "u": "cat_8", + "w": -1.2794477449179462, + "v": "other", + "y": 165.45000531931404, + "x": 138.83167553877533, + "z": 0.365531221729956 + }, + { + "u": "other", + "w": 0.6533051004485967, + "v": "cat_0", + "y": 133.99465910929834, + "x": 119.39730303633817, + "z": 1.270978774871001 + }, + { + "u": "cat_13", + "w": -0.4527608603464446, + "v": "other", + "y": 262.89541671133776, + "x": 209.42459012646566, + "z": 0.15317285949553272 + }, + { + "u": "cat_12", + "w": 0.06915365942882012, + "v": "cat_0", + "y": 139.0123425273913, + "x": 140.27809963809628, + "z": 1.0850789531923752 + }, + { + "u": "cat_5", + "w": 0.18422289588498686, + "v": "other", + "y": 123.5696526089444, + "x": 178.47540577185424, + "z": 0.40291991519951875 + }, + { + "u": "cat_4", + "w": -0.4338210953783319, + "v": "cat_1", + "y": 161.93728020049016, + "x": 166.16502625602917, + "z": 0.5093424182003234 + }, + { + "u": "cat_7", + "w": 1.40583885575462, + "v": "other", + "y": 155.63962440916566, + "x": 99.85204107456539, + "z": 1.2530442449107233 + }, + { + "u": "cat_10", + "w": -0.4275099099676807, + "v": "other", + "y": 176.85285727542032, + "x": 161.42701652535786, + "z": 0.8230669881454445 + }, + { + "u": "cat_4", + "w": 1.463656501437303, + "v": "cat_1", + "y": 246.6642430026098, + "x": 73.48368170456627, + "z": 1.0052929735375302 + }, + { + "u": "cat_11", + "w": 0.013089161287933138, + "v": "other", + "y": 156.36354536529558, + "x": 243.2026715373837, + "z": 0.39667694750274274 + }, + { + "u": "cat_12", + "w": 0.36730326802039404, + "v": "other", + "y": 156.71697413402487, + "x": 148.27450037397765, + "z": -1.4105618351561287 + }, + { + "u": "cat_14", + "w": -0.06953747774947772, + "v": "other", + "y": 141.22433267951084, + "x": 69.06616491304716, + "z": 0.475924622911404 + }, + { + "u": "other", + "w": 0.517415189557197, + "v": "other", + "y": 115.95680666029197, + "x": 153.0898637311175, + "z": 0.9443947812526814 + }, + { + "u": "cat_3", + "w": 0.5670223685982718, + "v": "other", + "y": 227.27960266143467, + "x": 153.22490080491232, + "z": 1.32067405076989 + }, + { + "u": "cat_7", + "w": 0.5376290623874869, + "v": "other", + "y": 260.9119300068415, + "x": 158.76997596111525, + "z": 0.26196386810779426 + }, + { + "u": "cat_8", + "w": 2.168516664994767, + "v": "other", + "y": 170.77570545745968, + "x": 135.65940169018805, + "z": 0.9162849263421061 + }, + { + "u": "cat_5", + "w": 2.311955371948698, + "v": "other", + "y": 243.37468134084048, + "x": 20.66820288532847, + "z": -0.322645627898664 + }, + { + "u": "cat_4", + "w": 1.8314759939943595, + "v": "other", + "y": 214.1727802647768, + "x": 216.61746891013505, + "z": 2.4147498286441165 + }, + { + "u": "other", + "w": 0.8365279958031904, + "v": "other", + "y": 100.90575192733515, + "x": 151.6306779403549, + "z": 0.8606212265228668 + }, + { + "u": "cat_13", + "w": -0.26452281419648993, + "v": "cat_0", + "y": 194.59598730955793, + "x": 129.361227705571, + "z": 1.0322894496099724 + }, + { + "u": "cat_13", + "w": 2.6043512596594365, + "v": "other", + "y": 213.8128177957785, + "x": 194.6414121394208, + "z": 3.280204884184917 + }, + { + "u": "cat_6", + "w": 1.6310983407120137, + "v": "other", + "y": 163.2658097189387, + "x": 187.70506769054072, + "z": 1.3488889788600984 + }, + { + "u": "cat_8", + "w": 0.6487974580274094, + "v": "other", + "y": 194.3209257079902, + "x": 192.10028088047798, + "z": -0.07036372606337338 + }, + { + "u": "cat_10", + "w": 1.3927144738318111, + "v": "other", + "y": 161.3486689563104, + "x": 86.73894049392862, + "z": 0.1537876062955914 + }, + { + "u": "cat_9", + "w": -0.3771368838057665, + "v": "other", + "y": 182.55687300867896, + "x": 201.1112292465731, + "z": -0.058098755927163515 + }, + { + "u": "cat_0", + "w": -0.6345913552330389, + "v": "other", + "y": 165.80314397714827, + "x": 206.7182591446124, + "z": 1.4845564495064427 + }, + { + "u": "cat_0", + "w": 0.6855019579009463, + "v": "cat_1", + "y": 159.66118937446728, + "x": 192.39649008863876, + "z": 0.055873071009385766 + }, + { + "u": "cat_6", + "w": 2.964882131756106, + "v": "other", + "y": 241.84769149238159, + "x": 111.35023940160411, + "z": 0.167414971004892 + }, + { + "u": "other", + "w": -0.4506378010737888, + "v": "other", + "y": 90.4639669582562, + "x": 158.90001697899683, + "z": 1.1696787253371819 + }, + { + "u": "cat_0", + "w": 1.2656151949587624, + "v": "other", + "y": 183.02945581640645, + "x": 180.4213167593254, + "z": 2.0539930046863035 + }, + { + "u": "cat_13", + "w": 1.228801369090003, + "v": "other", + "y": 277.13369884311936, + "x": 80.15664163346004, + "z": 2.2937904251948638 + }, + { + "u": "cat_5", + "w": 2.0896213510871937, + "v": "other", + "y": 163.72382240169802, + "x": 215.41216187620037, + "z": 2.553028570447125 + }, + { + "u": "cat_15", + "w": 1.0981586322470924, + "v": "other", + "y": 109.2838491053391, + "x": 184.09570421897956, + "z": 0.44759620112619647 + }, + { + "u": "other", + "w": 1.3457067544720736, + "v": "other", + "y": 171.16629782677862, + "x": 213.12963803437316, + "z": 0.7270493828061404 + }, + { + "u": "cat_13", + "w": -0.7076617244518462, + "v": "other", + "y": 144.05587078713071, + "x": 184.28906651578978, + "z": 1.382134562867984 + }, + { + "u": "cat_0", + "w": -0.2800595737017382, + "v": "other", + "y": 193.27473606725474, + "x": 154.94633537134789, + "z": -0.33791235399367947 + }, + { + "u": "cat_14", + "w": 0.4456793621586681, + "v": "other", + "y": 125.1308061934427, + "x": 123.90267987241343, + "z": 2.3230978938654645 + }, + { + "u": "cat_5", + "w": 3.075103103171694, + "v": "cat_0", + "y": 154.8755877624397, + "x": 61.020238047163375, + "z": 1.6674654330131888 + }, + { + "u": "other", + "w": 0.16319305741807733, + "v": "cat_0", + "y": 114.08645682777497, + "x": 225.28654361195518, + "z": 0.4242182000961613 + }, + { + "u": "cat_6", + "w": 1.9417162589422323, + "v": "other", + "y": 185.28537858495014, + "x": 155.5736376536581, + "z": 1.1747492195973144 + }, + { + "u": "cat_4", + "w": 1.155787735870216, + "v": "cat_1", + "y": 183.24930292147863, + "x": 115.40643586463635, + "z": 0.19242660628339903 + }, + { + "u": "other", + "w": 0.6070329867687532, + "v": "other", + "y": 57.398818613660296, + "x": 219.87611544574744, + "z": 1.1095208041769122 + }, + { + "u": "cat_6", + "w": 0.4083905726447342, + "v": "other", + "y": 175.40387812166918, + "x": 224.68335734038368, + "z": -0.42207104629857617 + }, + { + "u": "cat_5", + "w": 0.6585907631358738, + "v": "cat_1", + "y": 124.05051069396585, + "x": 127.07766432478591, + "z": 0.1354114111502046 + }, + { + "u": "cat_10", + "w": 1.734882212854999, + "v": "cat_1", + "y": 143.78518104207086, + "x": 198.75776145611215, + "z": -0.12283925137929064 + }, + { + "u": "other", + "w": 0.20503963437937356, + "v": "other", + "y": 151.75327292745928, + "x": 148.9695770940796, + "z": 0.564428194218838 + }, + { + "u": "cat_15", + "w": 1.8574692523422356, + "v": "other", + "y": 306.0898140884456, + "x": 147.43144660079602, + "z": -0.22413411708624853 + }, + { + "u": "cat_4", + "w": 1.1062688896220425, + "v": "other", + "y": 212.44397654702615, + "x": 195.86829581464062, + "z": 0.7453160939357952 + }, + { + "u": "cat_15", + "w": -0.27774340110996487, + "v": "cat_0", + "y": 122.63707978879633, + "x": 95.64182307323996, + "z": 0.6430476399500114 + }, + { + "u": "cat_11", + "w": 1.693891428609414, + "v": "other", + "y": 161.59041244043587, + "x": 64.83892325218056, + "z": 0.6409468598992659 + }, + { + "u": "cat_0", + "w": 1.8192638452039414, + "v": "cat_0", + "y": 203.44169192711857, + "x": 175.9035258508178, + "z": 1.0101903553514529 + }, + { + "u": "cat_10", + "w": 1.6693901234237167, + "v": "other", + "y": 266.02281722067806, + "x": 193.7229721388815, + "z": 1.3287927803604402 + }, + { + "u": "cat_2", + "w": 1.6276382654036277, + "v": "cat_0", + "y": 174.54476940927518, + "x": 85.70090208863968, + "z": 1.3166929052154481 + }, + { + "u": "cat_4", + "w": 0.893609545984623, + "v": "other", + "y": 135.20127141724655, + "x": 161.0852992807473, + "z": 0.7423369081120028 + }, + { + "u": "cat_8", + "w": -0.25726080091728387, + "v": "other", + "y": 87.98074634203813, + "x": 194.6466767641028, + "z": 1.171709779521613 + }, + { + "u": "cat_6", + "w": 1.4386749809763226, + "v": "other", + "y": 154.56889252680085, + "x": 137.16494490842896, + "z": 1.8319953052292166 + }, + { + "u": "cat_1", + "w": 1.9751827147081238, + "v": "other", + "y": 150.52324196509258, + "x": 51.69078624012406, + "z": -0.23529144151246717 + }, + { + "u": "cat_14", + "w": 1.3843184328271165, + "v": "other", + "y": 160.51323171649904, + "x": 169.7361988952806, + "z": 1.3970600816965812 + }, + { + "u": "cat_15", + "w": -0.475868599212677, + "v": "other", + "y": 132.27225542990598, + "x": 103.56729490389614, + "z": 0.4512210085364755 + }, + { + "u": "cat_4", + "w": 1.2081442447975173, + "v": "cat_0", + "y": 56.102440394233255, + "x": 124.56829572524175, + "z": 1.2994110022657026 + }, + { + "u": "cat_13", + "w": 1.736143244910195, + "v": "cat_0", + "y": 212.5650565277553, + "x": 140.4278102663895, + "z": 2.3771380059458744 + }, + { + "u": "cat_14", + "w": -0.461785512082463, + "v": "cat_1", + "y": 101.5707842719089, + "x": 196.16957370342342, + "z": 2.0950787429883846 + }, + { + "u": "cat_5", + "w": 1.3260330340794257, + "v": "cat_1", + "y": 195.74556071781365, + "x": 36.939138857293585, + "z": -0.05847270264086335 + }, + { + "u": "cat_9", + "w": 0.3220908087517964, + "v": "other", + "y": 221.78294482102933, + "x": 74.76586558666337, + "z": -0.05817419869022866 + }, + { + "u": "cat_5", + "w": 0.8170251870816604, + "v": "other", + "y": 179.17790605043118, + "x": 232.48747575985655, + "z": 1.7029885149441673 + }, + { + "u": "cat_3", + "w": 0.2659811986182221, + "v": "cat_1", + "y": 192.81824199631728, + "x": 140.710358385573, + "z": 1.5793646916427102 + }, + { + "u": "cat_8", + "w": 1.2271687489820546, + "v": "other", + "y": 111.59013545108343, + "x": 101.3489243773156, + "z": 3.21128318091031 + }, + { + "u": "cat_13", + "w": 1.3499209090064648, + "v": "other", + "y": 91.89209852687142, + "x": 154.6035518322702, + "z": 0.6817267324899431 + }, + { + "u": "cat_0", + "w": 2.159235435849202, + "v": "other", + "y": 158.63631854616588, + "x": 120.35802170671863, + "z": 0.6067162231097979 + }, + { + "u": "cat_14", + "w": 0.8523794752014957, + "v": "other", + "y": 76.05793322732642, + "x": 138.4115475783541, + "z": 0.2967991752860232 + }, + { + "u": "cat_12", + "w": 1.0558373735944235, + "v": "other", + "y": 124.74002651703651, + "x": 157.02907657551447, + "z": -0.025374565392791038 + }, + { + "u": "cat_0", + "w": 1.3648422432834806, + "v": "cat_1", + "y": 203.82847317695288, + "x": 152.02003088030492, + "z": -0.4421819240850271 + }, + { + "u": "cat_4", + "w": 0.8156055831409262, + "v": "other", + "y": 95.97296459484079, + "x": 78.51455593195435, + "z": 1.1994133990162583 + }, + { + "u": "cat_3", + "w": 0.727605537039985, + "v": "other", + "y": 168.70196209212494, + "x": 212.41730028904536, + "z": 0.6997491454171789 + }, + { + "u": "cat_6", + "w": 1.262490286926595, + "v": "other", + "y": 134.65200754480446, + "x": 42.54634367887225, + "z": 0.5177600909542267 + }, + { + "u": "cat_8", + "w": 1.4837053114286998, + "v": "cat_0", + "y": 112.28208956177541, + "x": 193.95863032046006, + "z": 1.0019859410064678 + }, + { + "u": "cat_8", + "w": -0.16895357221403362, + "v": "cat_0", + "y": 192.98985884826888, + "x": 144.96182365337268, + "z": 1.4190462447457899 + }, + { + "u": "cat_16", + "w": 1.0468806482899717, + "v": "cat_0", + "y": 152.86277692393685, + "x": 137.2022037296142, + "z": 0.4593974450208086 + }, + { + "u": "cat_6", + "w": 2.462089222004976, + "v": "cat_1", + "y": 178.5621123552027, + "x": 142.01082685227874, + "z": 0.580699096900331 + }, + { + "u": "other", + "w": -0.9097490420343397, + "v": "other", + "y": 137.21823856264854, + "x": 94.98376759227347, + "z": 2.118286289288478 + }, + { + "u": "cat_5", + "w": 0.6155123359814616, + "v": "other", + "y": 52.94291552982141, + "x": 85.57431217669814, + "z": -0.09704681018895633 + }, + { + "u": "cat_11", + "w": 1.9468348457441005, + "v": "other", + "y": 243.07706417763518, + "x": 163.35061475046334, + "z": 1.178015608927323 + }, + { + "u": "cat_13", + "w": -0.11396040656336393, + "v": "other", + "y": 102.69550510842956, + "x": 105.80547059051209, + "z": 1.7309952065474825 + }, + { + "u": "cat_0", + "w": 1.0201819734167836, + "v": "other", + "y": 226.24093931458543, + "x": 128.26413056781655, + "z": 0.602354545792653 + }, + { + "u": "cat_9", + "w": 0.41269060095932775, + "v": "other", + "y": 22.06560060765568, + "x": 169.41836118747312, + "z": 0.6422396319927962 + }, + { + "u": "cat_13", + "w": 1.1423761297271733, + "v": "other", + "y": 122.16006750791158, + "x": 64.32267243426844, + "z": 0.5677725122287971 + }, + { + "u": "cat_0", + "w": -0.4940883354815302, + "v": "other", + "y": 146.45339448820994, + "x": 172.009924725858, + "z": 0.5733149663059203 + }, + { + "u": "cat_12", + "w": 2.0427267231236836, + "v": "other", + "y": 105.09233739863171, + "x": 151.8604441328228, + "z": -1.0417341971519445 + }, + { + "u": "cat_0", + "w": -0.06844772614894712, + "v": "cat_0", + "y": 208.74646965359665, + "x": 211.0589178490544, + "z": 3.033892234816319 + }, + { + "u": "cat_10", + "w": 0.1407531030532979, + "v": "other", + "y": 212.1295737404453, + "x": 157.62156278215423, + "z": -0.17802781876760476 + }, + { + "u": "cat_7", + "w": 0.654514275645782, + "v": "cat_1", + "y": 127.45107550739947, + "x": 94.87901525572023, + "z": 1.169027403658316 + }, + { + "u": "cat_15", + "w": 2.7361843748627708, + "v": "other", + "y": 184.8888620082486, + "x": 116.81017887336674, + "z": -0.5196787907040106 + }, + { + "u": "other", + "w": 0.7134526835944346, + "v": "other", + "y": 169.9779808978828, + "x": 108.48468655071922, + "z": 2.4985146493801524 + }, + { + "u": "cat_1", + "w": 2.0017599837707474, + "v": "other", + "y": 193.69331303548242, + "x": 161.953677145996, + "z": 0.9928254618909004 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/small-range.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/small-range.json new file mode 100644 index 0000000..c50d5df --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/small-range.json @@ -0,0 +1,26 @@ + [ + { + "date": "2014-01-01", + "value": 1 + }, + { + "date": "2014-01-02", + "value": 3 + }, + { + "date": "2014-01-03", + "value": 2 + }, + { + "date": "2014-01-04", + "value": 2 + }, + { + "date": "2014-01-05", + "value": 2 + }, + { + "date": "2014-01-06", + "value": 1 + } + ] diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/some_currency.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/some_currency.json new file mode 100644 index 0000000..f84a3ff --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/some_currency.json @@ -0,0 +1,402 @@ +[ + { + "date": "2014-02-01", + "value": 15000000 + }, + { + "date": "2014-02-02", + "value": 16487625 + }, + { + "date": "2014-02-03", + "value": 17097434 + }, + { + "date": "2014-02-04", + "value": 17694420 + }, + { + "date": "2014-02-05", + "value": 17014381 + }, + { + "date": "2014-02-06", + "value": 15578984 + }, + { + "date": "2014-02-07", + "value": 14718953 + }, + { + "date": "2014-02-08", + "value": 15020669 + }, + { + "date": "2014-02-09", + "value": 13889722 + }, + { + "date": "2014-02-10", + "value": 13979897 + }, + { + "date": "2014-02-11", + "value": 14595566 + }, + { + "date": "2014-02-12", + "value": 14123256 + }, + { + "date": "2014-02-13", + "value": 14083675 + }, + { + "date": "2014-02-14", + "value": 15068426 + }, + { + "date": "2014-02-15", + "value": 15368056 + }, + { + "date": "2014-02-16", + "value": 15277054 + }, + { + "date": "2014-02-17", + "value": 14376243 + }, + { + "date": "2014-02-18", + "value": 13058892 + }, + { + "date": "2014-02-19", + "value": 12367653 + }, + { + "date": "2014-02-20", + "value": 13184423 + }, + { + "date": "2014-02-21", + "value": 14367203 + }, + { + "date": "2014-02-22", + "value": 14656447 + }, + { + "date": "2014-02-23", + "value": 14724526 + }, + { + "date": "2014-02-24", + "value": 14938129 + }, + { + "date": "2014-02-25", + "value": 14205617 + }, + { + "date": "2014-02-26", + "value": 14596607 + }, + { + "date": "2014-02-27", + "value": 13982597 + }, + { + "date": "2014-02-28", + "value": 15107034 + }, + { + "date": "2014-03-01", + "value": 13646739 + }, + { + "date": "2014-03-02", + "value": 14214763 + }, + { + "date": "2014-03-03", + "value": 14952136 + }, + { + "date": "2014-03-04", + "value": 14643933 + }, + { + "date": "2014-03-05", + "value": 13611435 + }, + { + "date": "2014-03-06", + "value": 12569788 + }, + { + "date": "2014-03-07", + "value": 11344469 + }, + { + "date": "2014-03-08", + "value": 12687132 + }, + { + "date": "2014-03-09", + "value": 11831144 + }, + { + "date": "2014-03-10", + "value": 10480837 + }, + { + "date": "2014-03-11", + "value": 9051161 + }, + { + "date": "2014-03-12", + "value": 9964784 + }, + { + "date": "2014-03-13", + "value": 11035006 + }, + { + "date": "2014-03-14", + "value": 10081289 + }, + { + "date": "2014-03-15", + "value": 9793897 + }, + { + "date": "2014-03-16", + "value": 9177447 + }, + { + "date": "2014-03-17", + "value": 8035348 + }, + { + "date": "2014-03-18", + "value": 6770242 + }, + { + "date": "2014-03-19", + "value": 7272077 + }, + { + "date": "2014-03-20", + "value": 8216348 + }, + { + "date": "2014-03-21", + "value": 8576584 + }, + { + "date": "2014-03-22", + "value": 9421060 + }, + { + "date": "2014-03-23", + "value": 10872288 + }, + { + "date": "2014-03-24", + "value": 9537996 + }, + { + "date": "2014-03-25", + "value": 9560363 + }, + { + "date": "2014-03-26", + "value": 8182813 + }, + { + "date": "2014-03-27", + "value": 9068173 + }, + { + "date": "2014-03-28", + "value": 10390251 + }, + { + "date": "2014-03-29", + "value": 9714081 + }, + { + "date": "2014-03-30", + "value": 9994670 + }, + { + "date": "2014-03-31", + "value": 9317878 + }, + { + "date": "2014-04-01", + "value": 8209077 + }, + { + "date": "2014-04-02", + "value": 9230830 + }, + { + "date": "2014-04-03", + "value": 8978342 + }, + { + "date": "2014-04-04", + "value": 8361854 + }, + { + "date": "2014-04-05", + "value": 9345999 + }, + { + "date": "2014-04-06", + "value": 7965407 + }, + { + "date": "2014-04-07", + "value": 8909276 + }, + { + "date": "2014-04-08", + "value": 8935489 + }, + { + "date": "2014-04-09", + "value": 8634997 + }, + { + "date": "2014-04-10", + "value": 8795592 + }, + { + "date": "2014-04-11", + "value": 7513086 + }, + { + "date": "2014-04-12", + "value": 8408561 + }, + { + "date": "2014-04-13", + "value": 7780649 + }, + { + "date": "2014-04-14", + "value": 7524281 + }, + { + "date": "2014-04-15", + "value": 8498062 + }, + { + "date": "2014-04-16", + "value": 7922453 + }, + { + "date": "2014-04-17", + "value": 9304312 + }, + { + "date": "2014-04-18", + "value": 8199457 + }, + { + "date": "2014-04-19", + "value": 8926136 + }, + { + "date": "2014-04-20", + "value": 7558184 + }, + { + "date": "2014-04-21", + "value": 6417511 + }, + { + "date": "2014-04-22", + "value": 5748831 + }, + { + "date": "2014-04-23", + "value": 6503022 + }, + { + "date": "2014-04-24", + "value": 6429606 + }, + { + "date": "2014-04-25", + "value": 5057410 + }, + { + "date": "2014-04-26", + "value": 5924669 + }, + { + "date": "2014-04-27", + "value": 4728239 + }, + { + "date": "2014-04-28", + "value": 3918540 + }, + { + "date": "2014-04-29", + "value": 2821473 + }, + { + "date": "2014-04-30", + "value": 1995781 + }, + { + "date": "2014-05-01", + "value": 1123626 + }, + { + "date": "2014-05-02", + "value": 516067 + }, + { + "date": "2014-05-03", + "value": 816831 + }, + { + "date": "2014-05-04", + "value": 816831 + }, + { + "date": "2014-05-05", + "value": 816831 + }, + { + "date": "2014-05-06", + "value": 1103818 + }, + { + "date": "2014-05-07", + "value": 958188 + }, + { + "date": "2014-05-08", + "value": 592995 + }, + { + "date": "2014-05-09", + "value": 856066 + }, + { + "date": "2014-05-10", + "value": 1766761 + }, + { + "date": "2014-05-11", + "value": 1330557 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/some_percentage.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/some_percentage.json new file mode 100644 index 0000000..38e73a8 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/some_percentage.json @@ -0,0 +1,482 @@ +[[ + { + "date": "2014-01-01", + "value": 0.5 + }, + { + "date": "2014-01-02", + "value": 0.5038520341226763 + }, + { + "date": "2014-01-03", + "value": 0.501041575106488 + }, + { + "date": "2014-01-04", + "value": 0.4984465228974178 + }, + { + "date": "2014-01-05", + "value": 0.5003884470629179 + }, + { + "date": "2014-01-06", + "value": 0.5031564481343913 + }, + { + "date": "2014-01-07", + "value": 0.5078607730320586 + }, + { + "date": "2014-01-08", + "value": 0.5041111109212457 + }, + { + "date": "2014-01-09", + "value": 0.5069321806604172 + }, + { + "date": "2014-01-10", + "value": 0.5026154784253497 + }, + { + "date": "2014-01-11", + "value": 0.5065241796178874 + }, + { + "date": "2014-01-12", + "value": 0.5018867686214743 + }, + { + "date": "2014-01-13", + "value": 0.5043001746033196 + }, + { + "date": "2014-01-14", + "value": 0.504404210966798 + }, + { + "date": "2014-01-15", + "value": 0.5075142056997484 + }, + { + "date": "2014-01-16", + "value": 0.5040481679854495 + }, + { + "date": "2014-01-17", + "value": 0.5079346812032152 + }, + { + "date": "2014-01-18", + "value": 0.5049685486383059 + }, + { + "date": "2014-01-19", + "value": 0.501658667449764 + }, + { + "date": "2014-01-20", + "value": 0.5062171996366631 + }, + { + "date": "2014-01-21", + "value": 0.5099836766672865 + }, + { + "date": "2014-01-22", + "value": 0.5142091385990467 + }, + { + "date": "2014-01-23", + "value": 0.51791294997185 + }, + { + "date": "2014-01-24", + "value": 0.515437378755626 + }, + { + "date": "2014-01-25", + "value": 0.5108648416664958 + }, + { + "date": "2014-01-26", + "value": 0.5066707579977331 + }, + { + "date": "2014-01-27", + "value": 0.5082993886500073 + }, + { + "date": "2014-01-28", + "value": 0.508072158918364 + }, + { + "date": "2014-01-29", + "value": 0.5118157526668022 + }, + { + "date": "2014-01-30", + "value": 0.5086344978955772 + }, + { + "date": "2014-01-31", + "value": 0.5044280885188968 + }, + { + "date": "2014-02-01", + "value": 0.5030791435263089 + }, + { + "date": "2014-02-02", + "value": 0.502718430201384 + }, + { + "date": "2014-02-03", + "value": 0.5049505139164281 + }, + { + "date": "2014-02-04", + "value": 0.5004045433833447 + }, + { + "date": "2014-02-05", + "value": 0.49766880474999803 + }, + { + "date": "2014-02-06", + "value": 0.4974778854176423 + }, + { + "date": "2014-02-07", + "value": 0.4985548716459768 + }, + { + "date": "2014-02-08", + "value": 0.5023737776839208 + }, + { + "date": "2014-02-09", + "value": 0.504603230338525 + }, + { + "date": "2014-02-10", + "value": 0.504432332684573 + }, + { + "date": "2014-02-11", + "value": 0.5037437093637779 + }, + { + "date": "2014-02-12", + "value": 0.5086112226114583 + }, + { + "date": "2014-02-13", + "value": 0.5053845731032296 + }, + { + "date": "2014-02-14", + "value": 0.5015637131811963 + }, + { + "date": "2014-02-15", + "value": 0.5021784674076278 + }, + { + "date": "2014-02-16", + "value": 0.5063559353265494 + }, + { + "date": "2014-02-17", + "value": 0.5061080613055542 + }, + { + "date": "2014-02-18", + "value": 0.5088703428084825 + }, + { + "date": "2014-02-19", + "value": 0.5096209075909987 + }, + { + "date": "2014-02-20", + "value": 0.5128114425067571 + }, + { + "date": "2014-02-21", + "value": 0.5166249796532173 + }, + { + "date": "2014-02-22", + "value": 0.5139670211970626 + }, + { + "date": "2014-02-23", + "value": 0.5142364616064596 + }, + { + "date": "2014-02-24", + "value": 0.509528966467216 + }, + { + "date": "2014-02-25", + "value": 0.5061758737477107 + }, + { + "date": "2014-02-26", + "value": 0.5107159178338729 + }, + { + "date": "2014-02-27", + "value": 0.508788445629648 + }, + { + "date": "2014-02-28", + "value": 0.5104817721021337 + }, + { + "date": "2014-03-01", + "value": 0.5078546349712474 + }, + { + "date": "2014-03-02", + "value": 0.5034753798731827 + }, + { + "date": "2014-03-03", + "value": 0.5007772580143368 + }, + { + "date": "2014-03-04", + "value": 0.5038655942824244 + }, + { + "date": "2014-03-05", + "value": 0.5005272030781814 + }, + { + "date": "2014-03-06", + "value": 0.5051827393254152 + }, + { + "date": "2014-03-07", + "value": 0.5005534190016493 + }, + { + "date": "2014-03-08", + "value": 0.5018578155863522 + }, + { + "date": "2014-03-09", + "value": 0.5040739797833739 + }, + { + "date": "2014-03-10", + "value": 0.501067869219016 + }, + { + "date": "2014-03-11", + "value": 0.49814427475390644 + }, + { + "date": "2014-03-12", + "value": 0.4963610004168396 + }, + { + "date": "2014-03-13", + "value": 0.4930795253820748 + }, + { + "date": "2014-03-14", + "value": 0.49079904429566784 + }, + { + "date": "2014-03-15", + "value": 0.48809922877941647 + }, + { + "date": "2014-03-16", + "value": 0.4877332115117854 + }, + { + "date": "2014-03-17", + "value": 0.48411898100901407 + }, + { + "date": "2014-03-18", + "value": 0.4845248458179287 + }, + { + "date": "2014-03-19", + "value": 0.4831193157053157 + }, + { + "date": "2014-03-20", + "value": 0.4819550362933503 + }, + { + "date": "2014-03-21", + "value": 0.4786897823467451 + }, + { + "date": "2014-03-22", + "value": 0.4761045288827436 + }, + { + "date": "2014-03-23", + "value": 0.478630898886419 + }, + { + "date": "2014-03-24", + "value": 0.4790840508114705 + }, + { + "date": "2014-03-25", + "value": 0.4794318346558028 + }, + { + "date": "2014-03-26", + "value": 0.4748848817015309 + }, + { + "date": "2014-03-27", + "value": 0.47815004291090735 + }, + { + "date": "2014-03-28", + "value": 0.47980437734217457 + }, + { + "date": "2014-03-29", + "value": 0.4817800142504527 + }, + { + "date": "2014-03-30", + "value": 0.4768033811913309 + }, + { + "date": "2014-03-31", + "value": 0.47223012774930034 + }, + { + "date": "2014-04-01", + "value": 0.467614878310697 + }, + { + "date": "2014-04-02", + "value": 0.4690382217852809 + }, + { + "date": "2014-04-03", + "value": 0.4707312671717389 + }, + { + "date": "2014-04-04", + "value": 0.46874599002888123 + }, + { + "date": "2014-04-05", + "value": 0.4695232950365088 + }, + { + "date": "2014-04-06", + "value": 0.46812382634056693 + }, + { + "date": "2014-04-07", + "value": 0.4638152377393435 + }, + { + "date": "2014-04-08", + "value": 0.46846294509572217 + }, + { + "date": "2014-04-09", + "value": 0.46537117781745313 + }, + { + "date": "2014-04-10", + "value": 0.46667486617647175 + }, + { + "date": "2014-04-11", + "value": 0.4700567595482735 + }, + { + "date": "2014-04-12", + "value": 0.4722401087279864 + }, + { + "date": "2014-04-13", + "value": 0.4754113422480582 + }, + { + "date": "2014-04-14", + "value": 0.47237758499686866 + }, + { + "date": "2014-04-15", + "value": 0.476321568527422 + }, + { + "date": "2014-04-16", + "value": 0.4782068702675784 + }, + { + "date": "2014-04-17", + "value": 0.4745382598882709 + }, + { + "date": "2014-04-18", + "value": 0.4778251241650657 + }, + { + "date": "2014-04-19", + "value": 0.48001845981032665 + }, + { + "date": "2014-04-20", + "value": 0.47797297492254276 + }, + { + "date": "2014-04-21", + "value": 0.473354228995828 + }, + { + "date": "2014-04-22", + "value": 0.470896702947272 + }, + { + "date": "2014-04-23", + "value": 0.4745305949746629 + }, + { + "date": "2014-04-24", + "value": 0.47596513680604596 + }, + { + "date": "2014-04-25", + "value": 0.4731953889995623 + }, + { + "date": "2014-04-26", + "value": 0.4737532034837451 + }, + { + "date": "2014-04-27", + "value": 0.4710481041669472 + }, + { + "date": "2014-04-28", + "value": 0.46605544080317923 + }, + { + "date": "2014-04-29", + "value": 0.4631336037812991 + }, + { + "date": "2014-04-30", + "value": 0.46305963624370283 + } +]] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/split_by.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/split_by.json new file mode 100644 index 0000000..3f06d9d --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/split_by.json @@ -0,0 +1,548 @@ + [ + { + "date": "2014-01-01", + "release": 110000000, + "beta": 4200000, + "alpha": 2600000 + }, + { + "date": "2014-01-02", + "release": 110379978, + "beta": 5379978, + "alpha": 2779978 + }, + { + "date": "2014-01-03", + "release": 110493749, + "beta": 5493749, + "alpha": 2893749 + }, + { + "date": "2014-01-04", + "release": 110785250, + "beta": 5785250, + "alpha": 2485250 + }, + { + "date": "2014-01-05", + "release": 113901904, + "beta": 13901904, + "alpha": 23901904 + }, + { + "date": "2014-01-06", + "release": 111576838, + "beta": 6576838, + "alpha": 5576838 + }, + { + "date": "2014-01-07", + "release": 114413854, + "beta": 7413854, + "alpha": 6413854 + }, + { + "date": "2014-01-08", + "release": 115177211, + "beta": 8177211, + "alpha": 5977211 + }, + { + "date": "2014-01-09", + "release": 116622100, + "beta": 9622100, + "alpha": 9122100 + }, + { + "date": "2014-01-10", + "release": 117381072, + "beta": 11381072, + "alpha": 11381072 + }, + { + "date": "2014-01-11", + "release": 118802310, + "beta": 10802310, + "alpha": 8802310 + }, + { + "date": "2014-01-12", + "release": 115531790, + "beta": 8531790, + "alpha": 8131790 + }, + { + "date": "2014-01-13", + "release": 115748881, + "beta": 8748881, + "alpha": 8848881 + }, + { + "date": "2014-01-14", + "release": 118706437, + "beta": 10706437, + "alpha": 10006437 + }, + { + "date": "2014-01-15", + "release": 119752685, + "beta": 12752685, + "alpha": 12752685 + }, + { + "date": "2014-01-16", + "release": 121016418, + "beta": 13016418, + "alpha": 13016418 + }, + { + "date": "2014-01-17", + "release": 125622924, + "beta": 17622924, + "alpha": 17622924 + }, + { + "date": "2014-01-18", + "release": 125337480, + "beta": 17337480, + "alpha": 12337480 + }, + { + "date": "2014-01-19", + "release": 122258882, + "beta": 14258882, + "alpha": 11218882 + }, + { + "date": "2014-01-20", + "release": 123829538, + "beta": 15829538, + "alpha": 15129538 + }, + { + "date": "2014-01-21", + "release": 124245689, + "beta": 16245689, + "alpha": 15215689 + }, + { + "date": "2014-01-22", + "release": 126429711, + "beta": 18429711, + "alpha": 18429711 + }, + { + "date": "2014-01-23", + "release": 126259017, + "beta": 18259017, + "alpha": 18259017 + }, + { + "date": "2014-01-24", + "release": 125396183, + "beta": 17396183, + "alpha": 12396183 + }, + { + "date": "2014-01-25", + "release": 123107346, + "beta": 15107346, + "alpha": 15107346 + }, + { + "date": "2014-01-26", + "release": 128659852, + "beta": 20659852, + "alpha": 10659852 + }, + { + "date": "2014-01-27", + "release": 125270783, + "beta": 17270783, + "alpha": 17270783 + }, + { + "date": "2014-01-28", + "release": 126270783, + "beta": 18270783, + "alpha": 18270783 + }, + { + "date": "2014-01-29", + "release": 127270783, + "beta": 19270783, + "alpha": 11270783 + }, + { + "date": "2014-01-30", + "release": 128270783, + "beta": 20270783, + "alpha": 20270783 + }, + { + "date": "2014-01-31", + "release": 129270783, + "beta": 21270783, + "alpha": 21270783 + }, + { + "date": "2014-02-01", + "release": 130270783, + "beta": 22270783, + "alpha": 22270783 + }, + { + "date": "2014-02-02", + "release": 131270783, + "beta": 23270783, + "alpha": 23270783 + }, + { + "date": "2014-02-03", + "release": 132270783, + "beta": 24270783, + "alpha": 24270783 + }, + { + "date": "2014-02-04", + "release": 133270783, + "beta": 25270783, + "alpha": 23270783 + }, + { + "date": "2014-02-05", + "release": 128270783, + "beta": 20270783, + "alpha": 20270783 + }, + { + "date": "2014-02-06", + "release": 127270783, + "beta": 19270783, + "alpha": 19270783 + }, + { + "date": "2014-02-07", + "release": 135270783, + "beta": 27270783, + "alpha": 27270783 + }, + { + "date": "2014-02-08", + "release": 134270783, + "beta": 26270783, + "alpha": 26270783 + }, + { + "date": "2014-02-09", + "release": 128270783, + "beta": 20270783, + "alpha": 20270783 + }, + { + "date": "2014-02-10", + "release": 135270783, + "beta": 27270783, + "alpha": 24270783 + }, + { + "date": "2014-02-11", + "release": 136270783, + "beta": 28270783, + "alpha": 28270783 + }, + { + "date": "2014-02-12", + "release": 134127078, + "beta": 26127078, + "alpha": 26127078 + }, + { + "date": "2014-02-13", + "release": 133124078, + "beta": 25124078, + "alpha": 25124078 + }, + { + "date": "2014-02-14", + "release": 136227078, + "beta": 28227078, + "alpha": 26127078 + }, + { + "date": "2014-02-15", + "release": 137827078, + "beta": 29827078, + "alpha": 29827078 + }, + { + "date": "2014-02-16", + "release": 136427073, + "beta": 28427073, + "alpha": 28427073 + }, + { + "date": "2014-02-17", + "release": 137570783, + "beta": 29570783, + "alpha": 29570783 + }, + { + "date": "2014-02-18", + "release": 138627073, + "beta": 30627073, + "alpha": 30627073 + }, + { + "date": "2014-02-19", + "release": 137727078, + "beta": 29727078, + "alpha": 29727078 + }, + { + "date": "2014-02-20", + "release": 138827073, + "beta": 30827073, + "alpha": 30827073 + }, + { + "date": "2014-02-21", + "release": 140927078, + "beta": 32927078, + "alpha": 32927078 + }, + { + "date": "2014-02-22", + "release": 141027078, + "beta": 33027078, + "alpha": 40027078 + }, + { + "date": "2014-02-23", + "release": 142127073, + "beta": 34127073, + "alpha": 34127073 + }, + { + "date": "2014-02-24", + "release": 143220783, + "beta": 35220783, + "alpha": 35220783 + }, + { + "date": "2014-02-25", + "release": 144327078, + "beta": 36327078, + "alpha": 36327078 + }, + { + "date": "2014-02-26", + "release": 140427078, + "beta": 32427078, + "alpha": 32427078 + }, + { + "date": "2014-02-27", + "release": 141027078, + "beta": 33027078, + "alpha": 33027078 + }, + { + "date": "2014-02-28", + "release": 145627078, + "beta": 37627078, + "alpha": 37627078 + }, + { + "date": "2014-03-01", + "release": 144727078, + "beta": 36727078, + "alpha": 36727078 + }, + { + "date": "2014-03-02", + "release": 144227078, + "beta": 36227078, + "alpha": 36227078 + }, + { + "date": "2014-03-03", + "release": 145227078, + "beta": 37227078, + "alpha": 37227078 + }, + { + "date": "2014-03-04", + "release": 146027078, + "beta": 38027078, + "alpha": 38027078 + }, + { + "date": "2014-03-05", + "release": 146927078, + "beta": 38927078, + "alpha": 38927078 + }, + { + "date": "2014-03-06", + "release": 147027078, + "beta": 39027078, + "alpha": 39027078 + }, + { + "date": "2014-03-07", + "release": 146227078, + "beta": 38227078, + "alpha": 32427078 + }, + { + "date": "2014-03-08", + "release": 147027078, + "beta": 39027078, + "alpha": 39027078 + }, + { + "date": "2014-03-09", + "release": 148027078, + "beta": 40027078, + "alpha": 40027078 + }, + { + "date": "2014-03-10", + "release": 147027078, + "beta": 39027078, + "alpha": 39027078 + }, + { + "date": "2014-03-11", + "release": 147027078, + "beta": 39027078, + "alpha": 37027078 + }, + { + "date": "2014-03-12", + "release": 148017078, + "beta": 40017078, + "alpha": 38817078 + }, + { + "date": "2014-03-13", + "release": 148077078, + "beta": 40077078, + "alpha": 40077078 + }, + { + "date": "2014-03-14", + "release": 148087078, + "beta": 40087078, + "alpha": 40087078 + }, + { + "date": "2014-03-15", + "release": 148017078, + "beta": 40017078, + "alpha": 40017078 + }, + { + "date": "2014-03-16", + "release": 148047078, + "beta": 40047078, + "alpha": 40047078 + }, + { + "date": "2014-03-17", + "release": 148067078, + "beta": 40067078, + "alpha": 40067078 + }, + { + "date": "2014-03-18", + "release": 148077078, + "beta": 40077078, + "alpha": 39977078 + }, + { + "date": "2014-03-19", + "release": 148027074, + "beta": 40027074, + "alpha": 40027074 + }, + { + "date": "2014-03-20", + "release": 148927079, + "beta": 40927079, + "alpha": 40927079 + }, + { + "date": "2014-03-21", + "release": 148727071, + "beta": 40727071, + "alpha": 40727071 + }, + { + "date": "2014-03-22", + "release": 148127072, + "beta": 40127072, + "alpha": 37127072 + }, + { + "date": "2014-03-23", + "release": 148527072, + "beta": 40527072, + "alpha": 40527072 + }, + { + "date": "2014-03-24", + "release": 148627027, + "beta": 40627027, + "alpha": 40627027 + }, + { + "date": "2014-03-25", + "release": 148027040, + "beta": 40027040, + "alpha": 40027040 + }, + { + "date": "2014-03-26", + "release": 148027043, + "beta": 40027043, + "alpha": 40027043 + }, + { + "date": "2014-03-27", + "release": 148057022, + "beta": 40057022, + "alpha": 40057022 + }, + { + "date": "2014-03-28", + "release": 149057022, + "beta": 41057022, + "alpha": 40057022 + }, + { + "date": "2014-03-29", + "release": 150057022, + "beta": 42057022, + "alpha": 42057022 + }, + { + "date": "2014-03-30", + "release": 151057022, + "beta": 43057022, + "alpha": 43057022 + }, + { + "date": "2014-03-31", + "release": 152057022, + "beta": 44057022, + "alpha": 44057022 + }, + { + "date": "2014-04-01", + "release": 152056143, + "beta": 45056143, + "alpha": 42056143 + } + ] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo-sightings.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo-sightings.json new file mode 100644 index 0000000..26caedd --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo-sightings.json @@ -0,0 +1,266 @@ +[ + { + "year": "1945", + "sightings": 6 + }, + { + "year": "1946", + "sightings": 8 + }, + { + "year": "1947", + "sightings": 34 + }, + { + "year": "1948", + "sightings": 8 + }, + { + "year": "1949", + "sightings": 15 + }, + { + "year": "1950", + "sightings": 25 + }, + { + "year": "1951", + "sightings": 20 + }, + { + "year": "1952", + "sightings": 48 + }, + { + "year": "1953", + "sightings": 34 + }, + { + "year": "1954", + "sightings": 50 + }, + { + "year": "1955", + "sightings": 31 + }, + { + "year": "1956", + "sightings": 38 + }, + { + "year": "1957", + "sightings": 67 + }, + { + "year": "1958", + "sightings": 40 + }, + { + "year": "1959", + "sightings": 47 + }, + { + "year": "1960", + "sightings": 64 + }, + { + "year": "1961", + "sightings": 39 + }, + { + "year": "1962", + "sightings": 55 + }, + { + "year": "1963", + "sightings": 75 + }, + { + "year": "1964", + "sightings": 77 + }, + { + "year": "1965", + "sightings": 167 + }, + { + "year": "1966", + "sightings": 169 + }, + { + "year": "1967", + "sightings": 178 + }, + { + "year": "1968", + "sightings": 183 + }, + { + "year": "1969", + "sightings": 138 + }, + { + "year": "1970", + "sightings": 126 + }, + { + "year": "1971", + "sightings": 110 + }, + { + "year": "1972", + "sightings": 146 + }, + { + "year": "1973", + "sightings": 209 + }, + { + "year": "1974", + "sightings": 241 + }, + { + "year": "1975", + "sightings": 279 + }, + { + "year": "1976", + "sightings": 246 + }, + { + "year": "1977", + "sightings": 239 + }, + { + "year": "1978", + "sightings": 301 + }, + { + "year": "1979", + "sightings": 221 + }, + { + "year": "1980", + "sightings": 211 + }, + { + "year": "1981", + "sightings": 146 + }, + { + "year": "1982", + "sightings": 182 + }, + { + "year": "1983", + "sightings": 132 + }, + { + "year": "1984", + "sightings": 172 + }, + { + "year": "1985", + "sightings": 192 + }, + { + "year": "1986", + "sightings": 173 + }, + { + "year": "1987", + "sightings": 193 + }, + { + "year": "1988", + "sightings": 203 + }, + { + "year": "1989", + "sightings": 220 + }, + { + "year": "1990", + "sightings": 217 + }, + { + "year": "1991", + "sightings": 210 + }, + { + "year": "1992", + "sightings": 228 + }, + { + "year": "1993", + "sightings": 285 + }, + { + "year": "1994", + "sightings": 381 + }, + { + "year": "1995", + "sightings": 1336 + }, + { + "year": "1996", + "sightings": 862 + }, + { + "year": "1997", + "sightings": 1248 + }, + { + "year": "1998", + "sightings": 1812 + }, + { + "year": "1999", + "sightings": 2906 + }, + { + "year": "2000", + "sightings": 2780 + }, + { + "year": "2001", + "sightings": 3105 + }, + { + "year": "2002", + "sightings": 3176 + }, + { + "year": "2003", + "sightings": 3896 + }, + { + "year": "2004", + "sightings": 4208 + }, + { + "year": "2005", + "sightings": 3996 + }, + { + "year": "2006", + "sightings": 3590 + }, + { + "year": "2007", + "sightings": 4195 + }, + { + "year": "2008", + "sightings": 4705 + }, + { + "year": "2009", + "sightings": 4297 + }, + { + "year": "2010", + "sightings": 2531 + } +] \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo_dates.csv b/priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo_dates.csv new file mode 100644 index 0000000..b7fe149 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/ufo_dates.csv @@ -0,0 +1,22841 @@ +value +30 +0 +203 +0 +30 +0 +0 +116 +180 +57 +0 +0 +2 +75 +0 +0 +21 +25 +2 +0 +29 +0 +101 +27 +43 +0 +770 +0 +24 +0 +0 +39 +0 +2 +24 +21 +25 +1 +27 +1866 +113 +0 +1 +1 +876 +1 +0 +0 +68 +287 +1 +257 +31 +299 +176 +21 +51 +51 +51 +25 +20 +91 +24 +0 +0 +48 +279 +70 +52 +22 +100 +50 +80 +1 +10 +0 +3059 +3059 +3059 +4 +74 +26 +383 +0 +3227 +32 +315 +0 +0 +28 +34 +1 +35 +84 +20 +0 +94 +21 +730 +203 +3 +30 +5 +0 +1 +1013 +84 +8 +2056 +7 +75 +291 +291 +291 +570 +4582 +4582 +4582 +148 +415 +139 +30 +0 +6 +40 +237 +3318 +3318 +3318 +253 +106 +162 +356 +121 +1172 +41 +525 +320 +320 +320 +1632 +1632 +1632 +1437 +1267 +64 +149 +67 +0 +29 +33 +115 +482 +1 +434 +65 +219 +0 +142 +157 +13 +0 +27 +24 +1464 +1464 +1464 +56 +422 +1 +775 +367 +90 +189 +0 +1636 +631 +3261 +3261 +3261 +137 +20 +30 +1268 +1268 +1268 +115 +153 +193 +3 +20 +0 +1 +0 +162 +726 +16 +2069 +53 +786 +552 +46 +148 +28 +205 +3 +0 +0 +98 +4006 +4006 +4006 +37 +2 +49 +25 +211 +135 +541 +549 +56 +184 +1398 +1398 +1398 +2602 +2602 +2602 +178 +331 +49 +598 +2219 +28 +8 +65 +3653 +3653 +3653 +2552 +2552 +2552 +31 +1233 +28 +69 +126 +585 +22 +89 +35 +97 +36 +32 +430 +4241 +4241 +4241 +4513 +4513 +4513 +132 +701 +21 +493 +119 +784 +346 +149 +0 +43 +101 +20 +28 +398 +23 +980 +343 +51 +1183 +58 +61 +358 +977 +938 +1 +22 +567 +622 +2341 +1166 +194 +1044 +292 +942 +754 +39 +2 +642 +99 +35 +23 +140 +2534 +280 +3228 +3228 +3228 +36 +40 +37 +1424 +40 +309 +36 +48 +87 +1 +627 +155 +155 +155 +326 +178 +481 +1321 +1321 +1321 +2310 +2310 +2310 +32 +3773 +3773 +3773 +63 +729 +406 +369 +119 +119 +119 +4193 +4193 +4193 +799 +677 +912 +2197 +2197 +2197 +23 +56 +1203 +1203 +1203 +1030 +224 +363 +1746 +1746 +1746 +23 +417 +2340 +4634 +4634 +4634 +610 +350 +320 +3 +115 +3 +23 +202 +47 +4001 +4001 +4001 +0 +0 +211 +211 +211 +0 +2 +133 +1588 +1588 +1588 +53 +34 +4 +12 +21 +238 +144 +144 +144 +11 +74 +280 +107 +24 +343 +68 +46 +38 +339 +1922 +0 +1947 +1947 +1947 +3187 +29 +61 +55 +47 +104 +179 +1446 +1 +238 +669 +3 +79 +61 +5 +581 +1112 +24 +52 +316 +203 +39 +226 +106 +106 +106 +0 +203 +137 +4411 +4411 +4411 +120 +36 +722 +27 +681 +105 +135 +21 +215 +0 +69 +81 +65 +4 +104 +792 +2327 +74 +20 +30 +42 +0 +4300 +4300 +4300 +92 +113 +28 +392 +20 +37 +115 +31 +607 +241 +169 +104 +27 +84 +403 +2205 +3447 +3447 +3447 +213 +21 +36 +989 +888 +888 +888 +0 +206 +14 +98 +98 +98 +325 +87 +172 +299 +1193 +208 +2862 +203 +727 +727 +727 +409 +3770 +3770 +3770 +56 +87 +582 +582 +582 +614 +3067 +3067 +3067 +252 +2272 +2272 +2272 +3911 +21 +451 +894 +49 +268 +268 +268 +0 +151 +212 +575 +23 +1063 +2 +21 +159 +440 +979 +3183 +3183 +3183 +1805 +217 +280 +90 +1110 +2480 +444 +1382 +2523 +2523 +2523 +22 +131 +35 +125 +388 +3502 +3502 +3502 +30 +26 +64 +1830 +1830 +1830 +1268 +3604 +3604 +3604 +967 +41 +483 +46 +972 +84 +21 +906 +0 +0 +3 +576 +365 +2885 +2885 +2885 +365 +1 +236 +634 +99 +477 +49 +114 +34 +1381 +702 +395 +775 +255 +4660 +4660 +4660 +116 +803 +289 +2432 +2432 +2432 +148 +28 +1206 +98 +67 +2639 +185 +1205 +1511 +1463 +24 +1290 +450 +1 +1370 +3315 +2558 +181 +0 +1380 +1380 +1380 +174 +2507 +2507 +2507 +29 +286 +525 +1732 +70 +99 +8 +21 +95 +2163 +664 +664 +664 +21 +33 +56 +3138 +28 +1 +1361 +37 +0 +36 +33 +38 +260 +90 +0 +582 +972 +302 +4854 +4854 +4854 +7 +485 +53 +4636 +4636 +4636 +55 +89 +255 +186 +93 +22 +2032 +23 +63 +3524 +3524 +3524 +2596 +2596 +2596 +2843 +4589 +4589 +4589 +1172 +367 +26 +22 +350 +15 +278 +122 +1202 +185 +0 +1593 +1593 +1593 +32 +39 +916 +23 +577 +526 +1231 +36 +34 +502 +52 +0 +2084 +2084 +2084 +853 +853 +853 +21 +82 +195 +1592 +1592 +1592 +22 +4372 +4372 +4372 +1 +9 +904 +904 +904 +474 +1135 +100 +1490 +1284 +25 +2415 +2415 +2415 +44 +140 +352 +220 +345 +48 +25 +147 +82 +360 +1487 +1487 +1487 +1601 +1601 +1601 +20 +1536 +29 +410 +1077 +0 +161 +161 +161 +3949 +3949 +3949 +1139 +257 +29 +44 +62 +62 +62 +582 +582 +582 +130 +1076 +320 +1 +61 +214 +2782 +64 +41 +283 +30 +520 +454 +2454 +2454 +2454 +388 +7 +950 +45 +80 +190 +5 +189 +1933 +1933 +1933 +26 +2 +470 +73 +1513 +434 +1410 +1410 +1410 +559 +3363 +3363 +3363 +0 +441 +525 +1070 +0 +1834 +1506 +41 +32 +404 +0 +808 +166 +53 +2 +834 +0 +136 +24 +404 +1056 +1 +3284 +3284 +3284 +4662 +4662 +4662 +1009 +1009 +1009 +40 +1326 +25 +1542 +195 +49 +31 +45 +21 +1436 +25 +1476 +1476 +1476 +1194 +49 +2002 +51 +2 +3734 +3734 +3734 +455 +1209 +243 +48 +34 +393 +1160 +1160 +1160 +1020 +368 +34 +1 +31 +47 +103 +109 +540 +3212 +3212 +3212 +460 +1958 +1958 +1958 +30 +1121 +1959 +1959 +1959 +411 +93 +203 +1425 +190 +245 +2088 +280 +280 +280 +2290 +94 +4755 +4755 +4755 +1 +25 +3512 +3512 +3512 +53 +59 +1887 +1887 +1887 +33 +45 +55 +24 +1872 +741 +1405 +1405 +1405 +1098 +85 +31 +92 +94 +148 +397 +393 +445 +2476 +56 +1182 +711 +789 +0 +48 +264 +104 +839 +780 +780 +780 +360 +533 +0 +27 +2625 +1851 +697 +53 +1342 +4443 +4443 +4443 +23 +1 +112 +3118 +1535 +4705 +4705 +4705 +1 +3 +397 +679 +1489 +202 +202 +202 +72 +1199 +1275 +1259 +2028 +2028 +2028 +32 +360 +1076 +1076 +1076 +1042 +1776 +155 +63 +39 +3698 +563 +146 +40 +125 +1218 +3873 +4683 +4683 +4683 +68 +811 +79 +22 +514 +31 +362 +153 +714 +1188 +1188 +1188 +501 +4037 +4037 +4037 +900 +2653 +2653 +2653 +1557 +1557 +1557 +2174 +29 +0 +32 +3332 +3332 +3332 +32 +31 +349 +2 +307 +349 +828 +4 +764 +27 +4044 +1 +14 +3327 +3327 +3327 +480 +480 +480 +171 +99 +22 +4321 +4321 +4321 +35 +101 +20 +68 +101 +59 +0 +489 +27 +55 +43 +1648 +1648 +1648 +1 +4 +1769 +68 +1273 +646 +639 +1557 +452 +216 +1070 +1229 +1229 +1229 +701 +142 +3494 +2 +149 +365 +608 +370 +30 +0 +2388 +2388 +2388 +27 +314 +603 +24 +333 +333 +333 +2736 +2736 +2736 +365 +417 +2808 +2808 +2808 +2201 +3341 +3341 +3341 +1327 +42 +366 +366 +366 +249 +23 +56 +1258 +486 +93 +210 +2581 +2581 +2581 +810 +49 +251 +251 +251 +205 +1100 +135 +75 +155 +160 +82 +960 +2037 +2110 +75 +3421 +3421 +3421 +158 +37 +873 +70 +674 +4606 +4606 +4606 +192 +4435 +4435 +4435 +2251 +1 +848 +220 +0 +155 +768 +768 +768 +54 +31 +1460 +1460 +1460 +168 +102 +342 +3147 +3147 +3147 +128 +37 +1856 +161 +614 +520 +27 +480 +54 +4166 +838 +92 +512 +219 +219 +219 +661 +75 +220 +812 +27 +1976 +1899 +41 +172 +4975 +4975 +4975 +4709 +4709 +4709 +2734 +2734 +2734 +3147 +3147 +3147 +505 +231 +231 +231 +44 +31 +271 +62 +862 +276 +36 +18 +228 +497 +4279 +4279 +4279 +606 +1 +29 +496 +152 +223 +63 +1196 +156 +78 +221 +368 +1954 +1954 +1954 +271 +4 +101 +2336 +398 +262 +2297 +2060 +4252 +2905 +2905 +2905 +35 +598 +1417 +175 +1280 +1280 +1280 +55 +1176 +2453 +1921 +1921 +1921 +48 +1729 +1397 +71 +0 +1748 +2 +223 +336 +1603 +1332 +28 +90 +1545 +2630 +1347 +120 +3668 +3668 +3668 +0 +477 +2780 +2399 +2399 +2399 +2497 +46 +1250 +282 +26 +28 +2064 +7 +58 +4926 +4926 +4926 +160 +392 +281 +1006 +1025 +133 +4877 +4877 +4877 +185 +139 +399 +276 +4065 +4065 +4065 +4840 +4840 +4840 +1948 +25 +184 +184 +184 +154 +1636 +30 +71 +497 +698 +698 +698 +1813 +21 +3 +135 +47 +729 +207 +804 +31 +5 +252 +32 +657 +2 +1342 +497 +166 +522 +102 +1657 +1657 +1657 +157 +1282 +1282 +1282 +365 +365 +365 +3726 +3726 +3726 +263 +84 +170 +562 +27 +43 +2045 +2045 +2045 +3 +325 +144 +4646 +4646 +4646 +1611 +82 +1601 +1601 +1601 +1656 +1656 +1656 +259 +963 +900 +1107 +1225 +543 +56 +0 +876 +2235 +2235 +2235 +218 +378 +378 +378 +4806 +4806 +4806 +276 +53 +176 +2050 +3659 +1167 +804 +117 +3113 +3113 +3113 +130 +1118 +133 +48 +2 +1 +206 +55 +55 +55 +2049 +366 +558 +64 +1729 +85 +95 +608 +91 +28 +105 +153 +342 +15 +0 +438 +20 +644 +1750 +276 +3458 +3458 +3458 +89 +1274 +551 +971 +294 +302 +1000 +172 +107 +21 +23 +1 +371 +104 +2222 +2 +27 +4976 +4976 +4976 +1663 +1663 +1663 +3121 +3121 +3121 +296 +672 +754 +83 +38 +710 +4678 +4678 +4678 +2 +2128 +2128 +2128 +48 +198 +489 +8 +798 +580 +0 +34 +4840 +4840 +4840 +44 +1419 +2838 +2838 +2838 +22 +463 +4657 +4657 +4657 +1651 +310 +0 +35 +31 +3618 +3618 +3618 +3795 +3795 +3795 +1498 +2 +1377 +347 +147 +32 +114 +303 +52 +510 +510 +510 +30 +35 +683 +0 +4983 +4983 +4983 +579 +42 +1162 +3189 +3189 +3189 +165 +1 +2872 +2872 +2872 +47 +1355 +1092 +2108 +2108 +2108 +4373 +15 +322 +1053 +213 +331 +344 +23 +1477 +1477 +1477 +2190 +2190 +2190 +114 +62 +650 +41 +1439 +1439 +1439 +30 +595 +1882 +1186 +25 +334 +4677 +4677 +4677 +91 +4091 +528 +1756 +1756 +1756 +45 +40 +316 +0 +279 +1634 +673 +61 +1517 +66 +407 +106 +251 +22 +3731 +3731 +3731 +218 +533 +85 +1050 +1050 +1050 +458 +1435 +363 +94 +1431 +126 +930 +3655 +1461 +1 +755 +231 +36 +271 +2843 +92 +48 +0 +603 +30 +320 +131 +24 +1369 +30 +1390 +308 +1 +2823 +2823 +2823 +3691 +3691 +3691 +1934 +373 +548 +726 +50 +1406 +783 +304 +353 +35 +670 +365 +344 +628 +1885 +1885 +1885 +30 +60 +34 +34 +2550 +691 +3172 +3172 +3172 +35 +978 +4810 +4810 +4810 +127 +7 +4430 +4430 +4430 +2173 +378 +340 +719 +26 +642 +646 +4585 +4585 +4585 +549 +3227 +3227 +3227 +50 +378 +67 +2 +66 +89 +308 +964 +467 +4986 +4986 +4986 +4343 +4343 +4343 +789 +139 +32 +18 +172 +954 +44 +3285 +3285 +3285 +2 +1485 +24 +885 +81 +12 +2364 +292 +415 +1376 +4366 +4366 +4366 +29 +902 +140 +85 +1208 +0 +522 +26 +1847 +622 +701 +701 +701 +1072 +1072 +1072 +59 +25 +190 +921 +55 +77 +53 +4387 +4387 +4387 +2173 +2173 +2173 +749 +63 +0 +703 +703 +703 +143 +125 +181 +15 +190 +715 +4029 +4029 +4029 +27 +2042 +2042 +2042 +2221 +195 +253 +605 +96 +62 +48 +47 +36 +2387 +2387 +2387 +22 +192 +38 +91 +1721 +396 +396 +396 +42 +374 +64 +85 +584 +25 +1944 +46 +1052 +1052 +1052 +340 +22 +33 +104 +0 +852 +21 +419 +2292 +2292 +2292 +57 +64 +1815 +312 +1843 +1843 +1843 +320 +79 +269 +369 +369 +369 +78 +3141 +3141 +3141 +44 +64 +4418 +30 +92 +175 +97 +4724 +4724 +4724 +828 +3451 +415 +4148 +4148 +4148 +46 +224 +0 +2198 +2198 +2198 +1212 +1212 +1212 +31 +1129 +161 +1908 +1908 +1908 +714 +322 +42 +3816 +3816 +3816 +33 +249 +249 +249 +3 +22 +48 +1641 +3635 +3788 +3788 +3788 +215 +592 +1660 +1471 +447 +2 +0 +1 +665 +1202 +615 +1575 +277 +277 +277 +38 +397 +30 +1166 +1118 +116 +76 +52 +946 +21 +57 +153 +55 +41 +1900 +31 +2964 +2964 +2964 +473 +4095 +4095 +4095 +0 +1771 +733 +21 +162 +625 +1118 +20 +376 +395 +395 +395 +4 +4023 +4023 +4023 +628 +3671 +3671 +3671 +1 +781 +675 +334 +83 +619 +580 +56 +95 +85 +44 +23 +1096 +150 +31 +1811 +1811 +1811 +3033 +3033 +3033 +747 +747 +747 +146 +243 +2149 +497 +25 +206 +764 +764 +764 +4357 +4357 +4357 +4720 +4720 +4720 +339 +25 +0 +310 +188 +4041 +4041 +4041 +50 +706 +733 +64 +722 +4077 +4077 +4077 +4515 +4515 +4515 +1213 +1448 +1165 +0 +26 +67 +2379 +2379 +2379 +59 +84 +38 +1474 +351 +494 +808 +26 +311 +311 +311 +180 +1638 +1638 +1638 +1834 +1834 +1834 +22 +3732 +3732 +3732 +70 +237 +96 +2878 +133 +610 +4369 +4369 +4369 +53 +1017 +1017 +1017 +765 +765 +765 +1050 +1050 +1050 +23 +1253 +282 +318 +375 +7 +2054 +409 +31 +18 +0 +37 +3 +42 +370 +91 +31 +914 +270 +733 +31 +183 +31 +1 +11 +633 +1 +101 +101 +101 +27 +70 +186 +248 +24 +1836 +243 +28 +880 +30 +133 +27 +20 +792 +363 +1063 +27 +24 +5 +633 +633 +633 +37 +722 +1562 +1562 +1562 +0 +0 +16 +54 +39 +277 +857 +15 +1097 +38 +802 +1065 +34 +3223 +3223 +3223 +38 +1957 +1957 +1957 +513 +604 +23 +3337 +3337 +3337 +881 +590 +30 +9 +7 +274 +22 +23 +3253 +3253 +3253 +105 +58 +130 +843 +843 +843 +160 +191 +223 +223 +223 +196 +1844 +1844 +1844 +1 +9 +1 +53 +25 +908 +769 +398 +2116 +22 +263 +2974 +3442 +3442 +3442 +49 +801 +24 +24 +911 +68 +69 +255 +321 +26 +41 +0 +337 +20 +817 +1865 +2922 +2922 +2922 +350 +55 +71 +1974 +1974 +1974 +131 +911 +911 +911 +4947 +4947 +4947 +1 +25 +21 +372 +41 +141 +44 +3 +1 +761 +23 +1960 +1960 +1960 +25 +76 +269 +799 +799 +799 +903 +903 +903 +11 +7 +48 +3 +28 +4737 +4737 +4737 +176 +1 +3344 +800 +0 +132 +1869 +1869 +1869 +21 +24 +199 +27 +43 +1 +71 +1 +4176 +4176 +4176 +1843 +1843 +1843 +4106 +4106 +4106 +80 +1015 +1015 +1015 +110 +1460 +122 +2947 +28 +12 +0 +30 +36 +112 +141 +756 +61 +71 +282 +27 +1816 +1816 +1816 +2302 +1726 +125 +89 +41 +234 +0 +124 +22 +4127 +4127 +4127 +4546 +4546 +4546 +805 +70 +0 +1592 +568 +851 +28 +4449 +4449 +4449 +0 +0 +327 +884 +1 +1261 +338 +322 +64 +90 +85 +0 +43 +239 +8 +118 +1512 +841 +452 +251 +859 +45 +789 +1550 +22 +1 +26 +120 +1370 +24 +50 +0 +231 +1056 +21 +218 +885 +129 +20 +2590 +2590 +2590 +377 +0 +2639 +2639 +2639 +1556 +1556 +1556 +33 +872 +24 +0 +1080 +0 +4145 +4145 +4145 +32 +0 +33 +1122 +3058 +51 +1561 +2263 +2263 +2263 +34 +39 +0 +4443 +4443 +4443 +889 +346 +1295 +1 +1894 +1894 +1894 +21 +32 +3303 +3303 +3303 +23 +102 +1 +59 +46 +836 +3319 +3319 +3319 +1408 +20 +924 +563 +563 +563 +2846 +2846 +2846 +1 +370 +1646 +4339 +46 +915 +952 +3609 +548 +1220 +2 +369 +539 +539 +539 +4528 +4528 +4528 +513 +148 +3166 +1910 +1910 +1910 +930 +79 +127 +21 +545 +864 +591 +3723 +539 +120 +367 +20 +24 +222 +162 +56 +23 +484 +4 +59 +1 +162 +240 +9 +458 +952 +1022 +32 +20 +155 +131 +51 +26 +1 +4414 +4414 +4414 +1134 +0 +360 +0 +147 +70 +890 +126 +29 +114 +771 +860 +609 +22 +68 +977 +173 +1181 +20 +2668 +2668 +2668 +45 +40 +367 +113 +958 +863 +863 +863 +180 +26 +1 +43 +1611 +1611 +1611 +1376 +24 +4714 +4714 +4714 +2983 +2983 +2983 +3 +0 +0 +1096 +31 +64 +4195 +4195 +4195 +185 +3939 +3939 +3939 +784 +334 +22 +26 +3531 +3531 +3531 +1599 +1599 +1599 +4127 +4127 +4127 +54 +126 +1055 +79 +371 +1187 +28 +0 +116 +1645 +170 +22 +1960 +458 +550 +25 +39 +43 +269 +892 +1 +0 +592 +592 +592 +1 +555 +555 +555 +1822 +1822 +1822 +14 +1463 +1463 +1463 +52 +365 +92 +41 +36 +3079 +3079 +3079 +1156 +525 +604 +2606 +1671 +201 +2249 +2249 +2249 +29 +345 +2938 +24 +3875 +3875 +3875 +925 +925 +925 +366 +31 +298 +177 +185 +36 +189 +546 +486 +1 +52 +1267 +71 +1718 +2325 +2325 +2325 +4059 +47 +1646 +1687 +38 +739 +499 +37 +608 +23 +22 +6 +103 +38 +0 +101 +3431 +3431 +3431 +4044 +4044 +4044 +225 +527 +905 +905 +905 +3387 +3387 +3387 +46 +519 +376 +376 +376 +2344 +216 +743 +743 +743 +3671 +3671 +3671 +328 +508 +41 +4001 +4001 +4001 +88 +1 +25 +365 +40 +1543 +374 +461 +324 +2402 +2 +1983 +1983 +1983 +2073 +441 +24 +145 +137 +4993 +4993 +4993 +36 +1 +155 +317 +54 +276 +260 +2396 +3463 +3463 +3463 +1137 +4 +96 +3201 +3201 +3201 +2 +60 +2369 +1567 +1 +235 +113 +52 +392 +2360 +175 +175 +175 +415 +1269 +1269 +1269 +0 +30 +632 +207 +365 +3434 +3434 +3434 +222 +167 +1428 +3867 +3867 +3867 +1723 +172 +99 +1030 +192 +316 +911 +124 +1066 +43 +236 +3589 +575 +449 +65 +366 +76 +1382 +547 +104 +2 +1947 +1947 +1947 +187 +198 +3554 +3554 +3554 +1378 +51 +4624 +185 +217 +3 +258 +4650 +4650 +4650 +47 +1071 +61 +976 +37 +978 +978 +978 +1717 +1717 +1717 +12 +493 +0 +784 +22 +1193 +1193 +1193 +50 +2310 +1299 +7 +1271 +1271 +1271 +3098 +62 +29 +667 +341 +358 +4075 +4075 +4075 +2738 +2738 +2738 +3564 +3564 +3564 +2472 +186 +2 +132 +409 +545 +1283 +1283 +1283 +1479 +593 +592 +231 +231 +231 +1 +2524 +2524 +2524 +157 +3725 +151 +334 +2503 +1063 +1063 +1063 +11 +761 +29 +53 +579 +74 +129 +32 +233 +3821 +3821 +3821 +1287 +102 +923 +339 +79 +146 +2470 +2470 +2470 +101 +64 +2965 +2965 +2965 +209 +1 +1731 +367 +156 +223 +194 +20 +1081 +1081 +1081 +62 +40 +518 +220 +317 +1081 +4213 +4213 +4213 +1743 +3607 +3607 +3607 +1487 +664 +519 +1 +2511 +321 +3370 +3370 +3370 +32 +36 +1738 +111 +1228 +1228 +1228 +30 +35 +421 +942 +942 +942 +18 +29 +611 +205 +4981 +4981 +4981 +998 +974 +2763 +2856 +2856 +2856 +3996 +3996 +3996 +99 +1036 +1036 +1036 +367 +1664 +367 +367 +367 +1167 +111 +372 +796 +796 +796 +113 +113 +113 +210 +56 +127 +791 +47 +855 +65 +1140 +22 +448 +1224 +21 +33 +1147 +113 +119 +557 +26 +48 +226 +315 +0 +302 +60 +1189 +1189 +1189 +3124 +3124 +3124 +5 +25 +47 +37 +923 +1733 +1733 +1733 +22 +0 +21 +179 +0 +679 +692 +1 +1059 +1059 +1059 +24 +43 +0 +3843 +3843 +3843 +4 +1 +2728 +1727 +2536 +1123 +0 +2947 +10 +3874 +3874 +3874 +4260 +962 +225 +1821 +84 +0 +3576 +3576 +3576 +138 +3474 +3474 +3474 +4045 +4045 +4045 +1093 +36 +3406 +133 +113 +236 +249 +2737 +53 +1757 +157 +968 +0 +848 +59 +2094 +2094 +2094 +304 +1978 +29 +921 +1 +3757 +3757 +3757 +306 +20 +145 +26 +189 +4678 +4678 +4678 +202 +76 +28 +94 +74 +18 +1429 +634 +0 +1420 +35 +147 +339 +2240 +2240 +2240 +22 +1752 +101 +4878 +4878 +4878 +230 +112 +38 +71 +359 +39 +74 +1795 +30 +3990 +3990 +3990 +40 +2572 +2572 +2572 +383 +30 +836 +55 +29 +356 +1738 +35 +1839 +1839 +1839 +2125 +2125 +2125 +761 +96 +23 +204 +6 +53 +1 +1829 +125 +284 +743 +26 +20 +301 +1867 +3889 +3889 +3889 +327 +281 +2999 +2999 +2999 +1151 +22 +66 +725 +1367 +4 +4601 +4601 +4601 +6 +706 +89 +25 +545 +44 +30 +91 +26 +21 +1218 +52 +1520 +456 +1741 +2496 +2496 +2496 +278 +1050 +362 +54 +1 +37 +249 +21 +1269 +38 +1 +2021 +2021 +2021 +89 +179 +1126 +1126 +1126 +2 +752 +752 +752 +29 +2356 +2356 +2356 +373 +1120 +190 +31 +1376 +4318 +4683 +20 +45 +55 +0 +111 +930 +464 +25 +1812 +265 +696 +906 +326 +326 +326 +51 +294 +685 +2309 +2309 +2309 +298 +333 +2545 +2545 +2545 +70 +1540 +559 +501 +710 +1159 +41 +617 +1200 +1125 +849 +1437 +1437 +1437 +916 +390 +138 +175 +0 +227 +332 +1472 +2550 +2550 +2550 +1130 +16 +1796 +0 +393 +366 +26 +2817 +1 +711 +907 +26 +41 +4320 +4320 +4320 +1510 +1510 +1510 +2 +132 +1379 +1501 +605 +64 +186 +1101 +89 +1574 +80 +187 +329 +118 +59 +56 +2 +212 +1025 +174 +1 +25 +253 +1431 +2193 +2193 +2193 +1956 +916 +916 +916 +2446 +2620 +21 +43 +6 +139 +0 +2607 +2607 +2607 +0 +1365 +274 +33 +241 +2285 +52 +1 +61 +235 +235 +235 +183 +30 +0 +1 +1 +765 +1 +3533 +3533 +3533 +1042 +29 +4190 +4190 +4190 +26 +1615 +27 +229 +368 +368 +368 +250 +8 +1 +0 +32 +355 +31 +432 +32 +20 +22 +22 +44 +146 +1763 +491 +491 +491 +0 +180 +39 +30 +50 +941 +1180 +328 +1 +100 +1778 +707 +293 +32 +1790 +31 +825 +31 +11 +24 +429 +0 +20 +1852 +79 +109 +0 +0 +2579 +2579 +2579 +74 +30 +29 +112 +3392 +3087 +3087 +3087 +19 +1554 +1554 +1554 +23 +2393 +131 +347 +444 +1842 +1681 +3 +6 +999 +34 +1193 +183 +880 +880 +880 +919 +919 +919 +966 +966 +966 +1242 +3275 +3275 +3275 +1 +0 +137 +665 +25 +31 +65 +70 +1389 +3097 +845 +2669 +91 +370 +213 +1850 +38 +138 +218 +624 +624 +624 +93 +1955 +1955 +1955 +265 +1297 +21 +1577 +1994 +1994 +1994 +113 +552 +57 +834 +75 +0 +1187 +3400 +3400 +3400 +2250 +34 +61 +2885 +2885 +2885 +0 +35 +35 +35 +1892 +1862 +1897 +1897 +1897 +235 +45 +43 +3906 +3906 +3906 +121 +2751 +21 +2072 +2072 +2072 +36 +83 +1881 +483 +2506 +2987 +2987 +2987 +419 +6 +32 +4860 +4860 +4860 +82 +385 +4 +1578 +1578 +1578 +3072 +3072 +3072 +7 +574 +104 +265 +853 +0 +60 +1626 +91 +242 +58 +1 +4465 +3005 +3005 +3005 +250 +1864 +2215 +1858 +20 +105 +458 +20 +46 +26 +29 +220 +3818 +3818 +3818 +88 +22 +462 +339 +0 +2 +0 +1239 +1239 +1239 +33 +40 +87 +2687 +2687 +2687 +0 +856 +28 +35 +2496 +2496 +2496 +20 +44 +498 +205 +61 +557 +60 +1984 +646 +1511 +182 +6 +625 +29 +246 +2044 +475 +4162 +4162 +4162 +21 +1971 +0 +1998 +3016 +20 +44 +29 +32 +35 +110 +125 +1470 +737 +33 +803 +1036 +1861 +31 +0 +4866 +4866 +4866 +12 +44 +889 +889 +889 +367 +1810 +1172 +1172 +1172 +24 +892 +307 +1585 +900 +191 +2985 +0 +1946 +1946 +1946 +344 +344 +344 +4551 +4551 +4551 +1670 +1670 +1670 +852 +123 +1598 +22 +366 +23 +69 +132 +3373 +3373 +3373 +366 +27 +148 +1654 +599 +72 +4561 +4561 +4561 +502 +1731 +1731 +1731 +2186 +2184 +197 +22 +189 +933 +457 +2372 +2504 +488 +889 +3976 +3976 +3976 +1122 +988 +38 +1393 +1393 +1393 +1877 +393 +470 +1513 +343 +362 +175 +42 +390 +818 +0 +68 +3096 +3096 +3096 +1002 +1277 +332 +1189 +2058 +171 +650 +650 +650 +792 +105 +2215 +21 +112 +23 +118 +2470 +46 +4422 +4422 +4422 +294 +105 +716 +28 +57 +222 +4616 +4616 +4616 +372 +1146 +1202 +1202 +1202 +4119 +4119 +4119 +444 +1326 +1326 +1326 +1 +4898 +4898 +4898 +941 +603 +4385 +4385 +4385 +46 +573 +181 +219 +3481 +3481 +3481 +518 +0 +4143 +4143 +4143 +366 +20 +1618 +104 +157 +74 +46 +173 +1 +3373 +3373 +3373 +950 +950 +950 +1 +492 +2372 +2372 +2372 +1 +28 +1873 +1873 +1873 +1108 +1108 +1108 +566 +302 +2848 +2848 +2848 +39 +2366 +2366 +2366 +40 +2379 +2379 +2379 +542 +134 +4232 +4232 +4232 +866 +920 +3135 +3135 +3135 +533 +97 +22 +258 +2166 +3157 +1101 +1101 +1101 +43 +64 +340 +25 +4973 +4973 +4973 +3421 +3421 +3421 +377 +1163 +1220 +22 +1299 +1664 +1664 +1664 +42 +185 +171 +58 +705 +26 +43 +33 +671 +49 +0 +53 +1107 +165 +1743 +556 +3062 +3062 +3062 +4932 +4932 +4932 +366 +38 +44 +4845 +4845 +4845 +746 +3155 +36 +119 +2979 +218 +4093 +129 +1485 +73 +30 +43 +25 +4201 +4201 +4201 +38 +21 +896 +2 +70 +49 +34 +1905 +467 +2748 +132 +478 +500 +1 +38 +365 +2442 +521 +0 +101 +1383 +62 +4633 +4633 +4633 +601 +2061 +64 +2353 +2353 +2353 +718 +717 +2245 +786 +1562 +41 +27 +1254 +1254 +1254 +588 +190 +102 +24 +43 +2217 +24 +2452 +2452 +2452 +26 +1452 +1187 +1187 +1187 +211 +446 +81 +21 +48 +1 +85 +255 +1874 +1874 +1874 +3813 +97 +2221 +154 +429 +1463 +1463 +1463 +1032 +28 +479 +48 +2047 +4980 +4980 +4980 +1927 +1927 +1927 +4605 +4605 +4605 +1 +0 +1486 +4299 +4299 +4299 +369 +506 +367 +37 +1313 +1313 +1313 +1621 +9 +4727 +4727 +4727 +3164 +3164 +3164 +1252 +1252 +1252 +1144 +1144 +1144 +1514 +1514 +1514 +0 +1435 +213 +575 +58 +1548 +187 +339 +64 +60 +205 +1176 +1176 +1176 +378 +1119 +3780 +3780 +3780 +1 +246 +25 +1083 +1083 +1083 +66 +101 +2463 +3925 +3925 +3925 +471 +2171 +366 +244 +478 +3174 +3174 +3174 +247 +201 +0 +2431 +4348 +4348 +4348 +29 +808 +263 +1444 +1444 +1444 +80 +122 +378 +174 +2659 +2659 +2659 +415 +21 +42 +3059 +3059 +3059 +1 +1222 +2060 +40 +49 +288 +572 +3942 +3942 +3942 +1449 +2106 +2106 +2106 +1186 +40 +1201 +1952 +203 +48 +898 +421 +31 +2226 +2226 +2226 +45 +400 +184 +195 +2790 +2790 +2790 +99 +4239 +4239 +4239 +78 +177 +793 +545 +3252 +3252 +3252 +78 +86 +2310 +2310 +2310 +1345 +1721 +1 +115 +174 +3626 +57 +1696 +1696 +1696 +492 +492 +492 +2330 +2285 +2285 +2285 +40 +2867 +2867 +2867 +2513 +2513 +2513 +85 +2099 +1759 +4508 +4508 +4508 +4951 +4951 +4951 +21 +564 +1068 +29 +1696 +433 +55 +1943 +4264 +4264 +4264 +994 +21 +2707 +0 +10 +258 +258 +258 +948 +51 +504 +268 +251 +1 +856 +2629 +2629 +2629 +19 +407 +4431 +4431 +4431 +1 +505 +3883 +607 +48 +115 +3477 +3477 +3477 +54 +80 +2827 +2827 +2827 +1101 +526 +1034 +102 +47 +921 +228 +32 +1 +58 +20 +2398 +893 +1730 +414 +47 +224 +334 +246 +928 +338 +1948 +1948 +1948 +4161 +4161 +4161 +1517 +1241 +2094 +2094 +2094 +2380 +98 +3690 +3690 +3690 +578 +439 +0 +145 +190 +1217 +1 +3538 +3538 +3538 +512 +1125 +2 +138 +713 +367 +476 +73 +62 +544 +1387 +76 +550 +0 +126 +248 +967 +967 +967 +826 +975 +181 +446 +1266 +34 +460 +31 +1568 +1 +2 +2201 +2201 +2201 +13 +36 +24 +234 +234 +234 +368 +1468 +1478 +4221 +4221 +4221 +248 +2673 +2673 +2673 +4552 +4552 +4552 +4664 +4664 +4664 +227 +29 +222 +4439 +3184 +3184 +3184 +886 +98 +2492 +103 +193 +1775 +332 +332 +332 +365 +59 +108 +302 +39 +3406 +3406 +3406 +212 +599 +599 +599 +264 +2 +250 +979 +663 +325 +0 +1105 +2124 +2470 +55 +151 +1533 +1533 +1533 +507 +294 +294 +294 +38 +2150 +1562 +202 +202 +202 +323 +235 +756 +48 +4345 +4345 +4345 +371 +2863 +2863 +2863 +274 +712 +325 +529 +1019 +1019 +1019 +4481 +4481 +4481 +232 +4254 +4254 +4254 +312 +3827 +3827 +3827 +150 +1030 +2779 +2779 +2779 +4979 +4979 +4979 +373 +28 +277 +806 +658 +35 +154 +36 +1571 +148 +295 +3614 +4 +262 +1 +2019 +30 +600 +2991 +2991 +2991 +1021 +1404 +33 +38 +75 +531 +667 +376 +2050 +19 +3807 +3807 +3807 +199 +89 +2187 +3599 +3599 +3599 +389 +2123 +3409 +716 +716 +716 +1861 +1753 +1753 +1753 +107 +53 +2105 +2105 +2105 +645 +1707 +301 +36 +1812 +1785 +1785 +1785 +190 +112 +901 +2622 +2622 +2622 +0 +580 +4022 +1259 +282 +1269 +1269 +1269 +2990 +2990 +2990 +99 +2800 +64 +4621 +4621 +4621 +154 +0 +1385 +85 +240 +691 +0 +24 +1965 +191 +105 +49 +2 +273 +381 +3669 +3669 +3669 +1771 +282 +478 +708 +51 +290 +671 +122 +122 +122 +3453 +3453 +3453 +1045 +62 +4394 +4394 +4394 +2201 +310 +948 +2271 +658 +1516 +2852 +1714 +2130 +2160 +56 +60 +2447 +2447 +2447 +232 +373 +2240 +2240 +2240 +64 +3 +1119 +34 +2224 +0 +5 +1390 +1390 +1390 +3708 +3708 +3708 +345 +609 +23 +255 +352 +188 +1280 +1203 +168 +58 +703 +189 +31 +532 +1087 +627 +21 +24 +903 +1314 +33 +991 +991 +991 +561 +271 +2245 +1228 +4 +4905 +4905 +4905 +155 +203 +2821 +32 +183 +32 +1042 +1780 +7 +1597 +279 +86 +43 +4 +2084 +2084 +2084 +20 +3630 +3630 +3630 +1065 +1414 +1414 +1414 +4667 +4667 +4667 +21 +3598 +3598 +3598 +164 +1102 +546 +27 +25 +233 +910 +0 +808 +808 +808 +1800 +59 +97 +41 +10 +23 +0 +1493 +2525 +2525 +2525 +121 +6 +29 +706 +41 +143 +98 +1564 +674 +674 +674 +1119 +82 +3417 +3417 +3417 +24 +429 +2042 +1651 +3287 +3287 +3287 +27 +30 +25 +5 +0 +373 +381 +103 +24 +231 +3419 +3419 +3419 +475 +31 +60 +60 +60 +502 +1374 +477 +21 +4 +4 +3 +881 +674 +1017 +1017 +1017 +2185 +2185 +2185 +0 +30 +1053 +1053 +1053 +0 +0 +2273 +2273 +2273 +1007 +32 +400 +26 +441 +22 +61 +171 +39 +1086 +58 +2580 +2580 +2580 +4193 +4193 +4193 +43 +111 +1755 +155 +380 +1 +3978 +27 +2851 +31 +458 +1 +23 +1120 +35 +40 +3 +3491 +4734 +4734 +4734 +4750 +4750 +4750 +93 +1 +29 +72 +4012 +4012 +4012 +4448 +4448 +4448 +324 +855 +1683 +1683 +1683 +3013 +3013 +3013 +0 +1381 +10 +1393 +1513 +1513 +1513 +0 +519 +36 +692 +36 +26 +243 +174 +307 +2336 +2336 +2336 +132 +1540 +91 +229 +20 +1 +635 +4927 +4927 +4927 +4029 +4029 +4029 +803 +67 +1367 +55 +44 +206 +47 +4444 +4444 +4444 +9 +74 +134 +1071 +1071 +1071 +1443 +1443 +1443 +714 +757 +124 +282 +1258 +64 +46 +96 +365 +92 +4083 +79 +398 +2258 +2258 +2258 +30 +2858 +86 +40 +3196 +1054 +46 +1 +187 +2111 +173 +763 +59 +1026 +774 +89 +28 +3075 +3075 +3075 +753 +23 +0 +1358 +0 +3655 +3655 +3655 +89 +21 +56 +1993 +5 +14 +700 +700 +700 +2920 +2981 +1929 +1538 +5 +458 +278 +79 +33 +1017 +0 +737 +2 +43 +20 +0 +860 +39 +28 +330 +25 +1158 +173 +318 +0 +260 +71 +45 +16 +1358 +420 +1086 +122 +482 +0 +1561 +110 +3687 +3687 +3687 +2988 +1060 +32 +12 +4 +381 +59 +4287 +4287 +4287 +65 +2355 +1171 +1171 +1171 +67 +68 +87 +1012 +524 +33 +0 +1998 +1998 +1998 +823 +823 +823 +28 +21 +1086 +1086 +1086 +1 +3459 +3459 +3459 +3 +883 +4 +198 +2282 +2282 +2282 +478 +651 +2638 +28 +4010 +54 +53 +41 +336 +2251 +2907 +2907 +2907 +731 +2171 +30 +21 +3393 +1 +734 +1509 +3042 +3042 +3042 +27 +2362 +2362 +2362 +39 +26 +91 +26 +117 +656 +2284 +1 +0 +1 +2341 +0 +239 +4008 +4008 +4008 +4539 +4539 +4539 +196 +69 +24 +34 +90 +1808 +2530 +2530 +2530 +389 +377 +22 +39 +0 +1564 +1564 +1564 +22 +3745 +3745 +3745 +2061 +375 +28 +28 +796 +796 +796 +67 +2612 +87 +38 +63 +816 +10 +77 +63 +346 +68 +4032 +4032 +4032 +0 +653 +0 +41 +2243 +2243 +2243 +4365 +4365 +4365 +1 +177 +21 +408 +32 +4707 +134 +1 +5 +2564 +0 +89 +2313 +4065 +4065 +4065 +508 +508 +508 +1542 +208 +249 +1901 +103 +544 +26 +1926 +197 +1558 +1558 +1558 +26 +3740 +3740 +3740 +49 +274 +1831 +54 +388 +100 +1558 +3037 +3037 +3037 +102 +27 +1612 +3382 +1 +436 +1913 +4690 +4690 +4690 +1242 +0 +170 +4292 +4292 +4292 +37 +1793 +1793 +1793 +967 +967 +967 +1 +1 +4719 +4719 +4719 +2340 +2340 +2340 +553 +1851 +1851 +1851 +1143 +113 +71 +65 +143 +50 +0 +2392 +1298 +2 +88 +2524 +2524 +2524 +1558 +1558 +1558 +32 +120 +0 +74 +479 +705 +4094 +21 +2217 +1820 +3 +143 +3410 +3410 +3410 +2165 +1271 +1271 +1271 +44 +1 +77 +0 +45 +21 +1411 +20 +595 +97 +3 +919 +3895 +3895 +3895 +32 +587 +30 +140 +521 +521 +521 +199 +68 +26 +247 +4441 +4441 +4441 +21 +45 +2363 +2363 +2363 +1 +33 +25 +2625 +1581 +1581 +1581 +4761 +4761 +4761 +434 +4 +3101 +44 +3 +20 +3216 +3216 +3216 +118 +173 +751 +4537 +4537 +4537 +0 +31 +2362 +2362 +2362 +1423 +469 +49 +33 +222 +1176 +1 +300 +4933 +4933 +4933 +1139 +2409 +2409 +2409 +554 +45 +1144 +25 +35 +73 +120 +1988 +105 +1929 +0 +4 +208 +39 +23 +473 +2901 +2901 +2901 +1644 +1644 +1644 +2329 +2329 +2329 +46 +1642 +74 +34 +2 +537 +69 +2770 +17 +45 +601 +601 +601 +1 +641 +0 +813 +2004 +35 +105 +26 +77 +1534 +9 +922 +27 +3 +330 +0 +609 +63 +810 +17 +0 +1146 +344 +1 +365 +365 +365 +25 +685 +49 +108 +1128 +1128 +1128 +21 +3154 +3154 +3154 +792 +354 +749 +1165 +1165 +1165 +1195 +1613 +1613 +1613 +1718 +1718 +1718 +118 +22 +804 +1375 +111 +1145 +615 +6 +334 +1490 +76 +71 +521 +199 +1297 +222 +323 +507 +2 +217 +431 +38 +22 +1 +337 +4184 +4184 +4184 +371 +891 +4339 +4339 +4339 +888 +1206 +4408 +4408 +4408 +1374 +75 +2301 +1 +1726 +0 +1 +62 +1622 +392 +21 +31 +2776 +2279 +2279 +2279 +454 +90 +1 +38 +35 +3537 +3537 +3537 +454 +377 +375 +22 +1671 +1671 +1671 +2204 +2204 +2204 +37 +129 +47 +43 +2012 +44 +225 +889 +920 +38 +148 +3830 +3830 +3830 +829 +2538 +2538 +2538 +585 +611 +117 +150 +396 +1827 +1 +1336 +189 +708 +359 +1980 +70 +5 +1676 +725 +150 +150 +150 +95 +60 +213 +118 +103 +133 +965 +32 +2 +2308 +2308 +2308 +1204 +146 +4767 +21 +2156 +2156 +2156 +22 +391 +391 +391 +264 +153 +24 +50 +34 +365 +2666 +63 +4440 +1131 +1155 +1155 +1155 +29 +3500 +3500 +3500 +156 +1702 +930 +365 +124 +0 +508 +4585 +4585 +4585 +87 +84 +38 +609 +609 +609 +102 +3495 +3495 +3495 +1654 +146 +3570 +3570 +3570 +288 +1 +159 +2386 +598 +93 +23 +4913 +4913 +4913 +36 +72 +651 +1286 +2158 +2158 +2158 +71 +456 +1238 +728 +4265 +0 +2107 +1760 +1760 +1760 +22 +1284 +25 +204 +4435 +4435 +4435 +941 +424 +1395 +3126 +3126 +3126 +2688 +547 +83 +8 +146 +4390 +4390 +4390 +499 +510 +1 +2130 +51 +148 +0 +25 +171 +701 +3773 +3773 +3773 +206 +3611 +3611 +3611 +28 +1083 +5 +560 +529 +114 +3156 +115 +20 +4597 +4597 +4597 +1515 +145 +2 +712 +32 +181 +165 +695 +127 +2113 +108 +52 +775 +775 +775 +0 +28 +30 +117 +117 +117 +174 +32 +1658 +1658 +1658 +2721 +211 +255 +255 +255 +173 +63 +112 +108 +67 +2646 +69 +1022 +1422 +1422 +1422 +20 +2893 +2893 +2893 +8 +15 +3255 +3255 +3255 +778 +231 +25 +974 +1368 +217 +637 +30 +141 +2169 +117 +1 +48 +63 +708 +688 +2015 +2015 +2015 +158 +158 +158 +3284 +3284 +3284 +0 +882 +37 +2 +1444 +4343 +4343 +4343 +3084 +3084 +3084 +325 +27 +1416 +1416 +1416 +569 +1826 +1826 +1826 +927 +1285 +38 +44 +28 +190 +3197 +3197 +3197 +1471 +83 +1748 +1748 +1748 +1615 +1615 +1615 +60 +2799 +2799 +2799 +4971 +4971 +4971 +282 +134 +444 +32 +616 +427 +209 +1063 +3891 +816 +139 +1115 +932 +2152 +815 +407 +407 +407 +313 +103 +1536 +3278 +47 +1345 +512 +3204 +3204 +3204 +20 +2218 +4480 +4480 +4480 +1753 +1486 +316 +16 +1826 +67 +4002 +4002 +4002 +1764 +1764 +1764 +46 +2088 +0 +3999 +3999 +3999 +2880 +2880 +2880 +4980 +4980 +4980 +1657 +1657 +1657 +169 +2039 +2039 +2039 +237 +5 +42 +1002 +1636 +1636 +1636 +1291 +26 +10 +4502 +4502 +4502 +198 +237 +1 +1000 +187 +36 +144 +955 +79 +2051 +233 +2269 +2269 +2269 +1713 +1713 +1713 +2908 +911 +911 +911 +130 +89 +666 +22 +1969 +1969 +1969 +3234 +3234 +3234 +905 +676 +23 +11 +985 +1448 +180 +180 +180 +165 +330 +126 +6 +671 +2855 +2855 +2855 +1826 +26 +1 +322 +3252 +3252 +3252 +589 +78 +721 +1732 +1732 +1732 +749 +21 +1102 +118 +530 +2096 +2724 +2724 +2724 +1077 +110 +45 +48 +74 +30 +101 +343 +2515 +2515 +2515 +1585 +1461 +551 +1047 +354 +1959 +223 +337 +4371 +4371 +4371 +0 +1488 +254 +950 +950 +950 +576 +100 +578 +578 +578 +3650 +3917 +3917 +3917 +2466 +926 +303 +2191 +925 +1206 +1206 +1206 +0 +315 +1826 +1826 +1826 +3 +223 +31 +147 +661 +661 +661 +1081 +704 +87 +717 +9 +108 +993 +166 +27 +83 +174 +263 +28 +708 +708 +708 +1239 +2396 +2396 +2396 +998 +307 +1814 +2662 +2662 +2662 +4294 +4294 +4294 +4702 +4702 +4702 +31 +133 +54 +2 +80 +22 +1967 +4562 +4562 +4562 +158 +2467 +97 +480 +705 +1290 +1511 +3403 +1117 +1117 +1117 +1872 +283 +178 +738 +738 +738 +1431 +1753 +66 +210 +3423 +3423 +3423 +33 +473 +62 +1078 +1085 +56 +4312 +4312 +4312 +41 +20 +622 +2160 +920 +56 +118 +1 +34 +45 +20 +398 +22 +730 +481 +481 +481 +1142 +1551 +1551 +1551 +35 +3590 +3590 +3590 +357 +2973 +2973 +2973 +24 +531 +365 +365 +365 +31 +1119 +744 +2593 +2593 +2593 +90 +0 +2121 +2121 +2121 +367 +263 +4998 +4998 +4998 +52 +1127 +1127 +1127 +77 +54 +2965 +2965 +2965 +1359 +1365 +553 +91 +114 +62 +45 +1211 +1 +2599 +2599 +2599 +2218 +2218 +2218 +198 +33 +194 +1014 +1 +840 +1498 +1498 +1498 +1494 +1494 +1494 +1 +2454 +2454 +2454 +619 +393 +206 +189 +4658 +1036 +238 +439 +34 +96 +1080 +2020 +2128 +665 +1448 +1 +369 +1844 +177 +2787 +2787 +2787 +36 +827 +1302 +1435 +0 +4 +1785 +725 +607 +8 +32 +2605 +2605 +2605 +365 +1 +37 +263 +0 +24 +4658 +4658 +4658 +2187 +130 +136 +160 +0 +2 +1062 +750 +158 +2515 +1 +30 +1243 +104 +427 +207 +3280 +3280 +3280 +465 +28 +141 +161 +4705 +4705 +4705 +268 +41 +65 +65 +65 +326 +3729 +3729 +3729 +32 +1897 +1897 +1897 +1930 +94 +927 +90 +339 +254 +270 +270 +270 +11 +1333 +1333 +1333 +301 +1085 +730 +84 +1855 +20 +71 +1062 +21 +21 +3271 +3271 +3271 +1859 +245 +61 +1507 +1507 +1507 +368 +2203 +1389 +1389 +1389 +437 +51 +147 +1 +2565 +2524 +1239 +22 +290 +0 +4363 +4363 +4363 +1947 +1947 +1947 +36 +11 +3 +516 +459 +4785 +4785 +4785 +1 +303 +2470 +2470 +2470 +728 +34 +20 +41 +161 +72 +1517 +1438 +1690 +1443 +3132 +3132 +3132 +123 +51 +522 +1 +29 +23 +375 +365 +1257 +1257 +1257 +72 +1760 +1760 +1760 +1366 +968 +1 +1 +4404 +4404 +4404 +2958 +2958 +2958 +2301 +29 +261 +169 +31 +1889 +0 +328 +123 +1898 +1898 +1898 +1475 +42 +31 +737 +101 +0 +596 +596 +596 +39 +24 +231 +26 +2251 +2251 +2251 +924 +599 +24 +2981 +2981 +2981 +1379 +1379 +1379 +1060 +1525 +755 +42 +2154 +1620 +128 +2105 +1075 +193 +738 +1240 +27 +776 +3134 +3134 +3134 +4830 +4830 +4830 +241 +35 +987 +0 +1439 +1439 +1439 +53 +1728 +3718 +3718 +3718 +6 +182 +220 +3910 +3910 +3910 +1 +25 +1209 +79 +408 +110 +28 +413 +4851 +4851 +4851 +0 +411 +36 +316 +65 +2503 +2503 +2503 +193 +32 +176 +4816 +4816 +4816 +264 +223 +29 +1108 +408 +53 +162 +100 +788 +788 +788 +32 +75 +25 +29 +41 +4155 +4155 +4155 +2777 +2777 +2777 +425 +401 +1565 +445 +35 +1424 +753 +3501 +31 +2589 +1 +3271 +1112 +1112 +1112 +2129 +0 +4411 +4411 +4411 +1168 +1168 +1168 +1198 +1752 +1752 +1752 +0 +66 +33 +1501 +430 +2719 +2719 +2719 +0 +1111 +711 +4 +678 +0 +141 +1198 +1198 +1198 +0 +282 +301 +10 +3664 +3664 +3664 +23 +4 +20 +410 +3358 +3358 +3358 +37 +4637 +4637 +4637 +3386 +3386 +3386 +33 +2271 +2271 +2271 +778 +48 +1536 +580 +339 +2 +0 +3599 +2566 +2566 +2566 +1780 +1780 +1780 +645 +45 +1456 +1456 +1456 +10 +41 +33 +4 +741 +288 +25 +113 +2131 +0 +4 +21 +2172 +372 +21 +1720 +1720 +1720 +63 +63 +63 +81 +896 +896 +896 +22 +3 +470 +148 +46 +536 +3024 +1 +2954 +2954 +2954 +356 +1968 +67 +2022 +2022 +2022 +2196 +2203 +2203 +2203 +2798 +3 +20 +37 +31 +32 +230 +21 +73 +1999 +1999 +1999 +50 +0 +488 +1759 +1756 +4598 +4598 +4598 +763 +763 +763 +4260 +4260 +4260 +393 +176 +2940 +1208 +1208 +1208 +0 +302 +2559 +2351 +2351 +2351 +0 +395 +886 +381 +2924 +0 +27 +602 +260 +151 +1 +767 +767 +767 +2996 +2996 +2996 +37 +383 +383 +383 +351 +696 +190 +0 +1 +1091 +2986 +2122 +82 +2054 +335 +750 +0 +182 +776 +2633 +2582 +2582 +2582 +71 +755 +2 +1 +50 +378 +122 +2571 +1292 +1292 +1292 +1469 +39 +4873 +4873 +4873 +0 +31 +122 +120 +336 +61 +74 +31 +1487 +1159 +1159 +1159 +776 +1848 +16 +4571 +4571 +4571 +54 +225 +225 +225 +1626 +0 +4482 +4482 +4482 +41 +3 +0 +45 +45 +45 +24 +0 +391 +4871 +4871 +4871 +1286 +55 +123 +5 +46 +200 +55 +130 +1185 +51 +193 +234 +43 +43 +43 +40 +133 +2571 +32 +48 +328 +29 +3979 +3979 +3979 +487 +2680 +2680 +2680 +0 +4263 +4263 +4263 +1620 +1620 +1620 +28 +1 +31 +2111 +216 +816 +4 +229 +28 +3103 +3103 +3103 +79 +51 +120 +782 +107 +24 +435 +435 +435 +52 +9 +876 +876 +876 +503 +3043 +3043 +3043 +30 +326 +4488 +4488 +4488 +84 +35 +1 +846 +846 +846 +469 +469 +469 +0 +538 +25 +3171 +3171 +3171 +124 +51 +1 +197 +36 +53 +4747 +4747 +4747 +3010 +4526 +4526 +4526 +1794 +29 +497 +22 +914 +139 +404 +2937 +1078 +4473 +4473 +4473 +0 +2928 +2967 +2967 +2967 +50 +0 +208 +572 +572 +572 +2932 +2932 +2932 +171 +0 +1 +844 +844 +844 +2 +1 +1880 +26 +2770 +2770 +2770 +33 +42 +28 +2923 +4146 +4146 +4146 +1153 +958 +1973 +141 +29 +1570 +14 +154 +132 +3779 +3779 +3779 +176 +3823 +3823 +3823 +1470 +474 +20 +0 +1 +63 +1082 +59 +1 +32 +215 +161 +1687 +1687 +1687 +32 +0 +63 +100 +81 +20 +32 +1653 +1653 +1653 +4935 +4935 +4935 +22 +1963 +1284 +20 +43 +1954 +731 +80 +178 +1027 +783 +783 +783 +4937 +4937 +4937 +2746 +2746 +2746 +415 +153 +158 +0 +1362 +1127 +24 +21 +27 +300 +2529 +2529 +2529 +3095 +3095 +3095 +66 +2725 +2725 +2725 +30 +132 +178 +2337 +2337 +2337 +1663 +2655 +2655 +2655 +47 +816 +1017 +1043 +1576 +1576 +1576 +4719 +4719 +4719 +3041 +3041 +3041 +2281 +665 +665 +665 +722 +151 +151 +151 +795 +1648 +1648 +1648 +2762 +36 +28 +1 +114 +1202 +1202 +1202 +168 +1218 +186 +306 +2016 +2459 +1131 +68 +129 +75 +29 +0 +138 +1085 +1259 +1259 +1259 +4162 +4162 +4162 +720 +0 +26 +2522 +2522 +2522 +1139 +23 +4 +142 +150 +23 +608 +608 +608 +32 +1987 +8 +3498 +3498 +3498 +1836 +22 +29 +365 +365 +365 +34 +775 +1862 +487 +61 +3833 +3833 +3833 +708 +708 +708 +1251 +1251 +1251 +102 +52 +1670 +4379 +4379 +4379 +0 +2020 +2020 +2020 +3002 +1213 +2 +6 +546 +2170 +2170 +2170 +325 +27 +4915 +4915 +4915 +1577 +61 +3294 +2012 +87 +58 +20 +4459 +4459 +4459 +4145 +20 +0 +3834 +3834 +3834 +96 +55 +2175 +2175 +2175 +24 +365 +107 +3388 +3388 +3388 +608 +60 +4080 +4080 +4080 +2053 +31 +1640 +1568 +1568 +1568 +171 +4106 +4106 +4106 +2579 +1831 +1831 +1831 +2181 +35 +2152 +1518 +1518 +1518 +147 +209 +0 +1296 +1296 +1296 +117 +0 +214 +15 +3149 +3149 +3149 +106 +1549 +1549 +1549 +61 +495 +112 +471 +3429 +3429 +3429 +0 +181 +36 +89 +3456 +365 +26 +830 +151 +4170 +4170 +4170 +140 +860 +1517 +1517 +1517 +106 +471 +0 +223 +550 +3989 +3989 +3989 +5 +0 +2449 +2449 +2449 +2214 +307 +0 +2788 +2788 +2788 +0 +91 +1 +308 +3839 +3839 +3839 +4522 +4522 +4522 +3818 +3818 +3818 +3411 +91 +0 +3951 +3951 +3951 +60 +1550 +1550 +1550 +2015 +3006 +3006 +3006 +12 +1 +71 +212 +155 +21 +72 +24 +201 +2137 +2137 +2137 +34 +4484 +4484 +4484 +462 +64 +28 +0 +56 +2437 +2437 +2437 +1522 +1522 +1522 +116 +2083 +2083 +2083 +390 +1879 +1879 +1879 +2649 +2649 +2649 +1633 +1292 +32 +4610 +4610 +4610 +375 +164 +2076 +2076 +2076 +1866 +2978 +4 +4844 +4844 +4844 +4229 +4229 +4229 +45 +28 +156 +546 +1336 +1201 +3879 +3879 +3879 +857 +2090 +3147 +46 +190 +3154 +3154 +3154 +3511 +3511 +3511 +34 +1314 +161 +2149 +2149 +2149 +162 +4985 +4985 +4985 +4462 +4462 +4462 +4769 +4769 +4769 +627 +233 +175 +2647 +4225 +4225 +4225 +3653 +1834 +471 +1241 +1241 +1241 +899 +35 +150 +705 +1652 +1306 +0 +1297 +1297 +1297 +2071 +499 +1 +67 +1246 +586 +6 +1 +50 +3857 +3857 +3857 +29 +0 +374 +1639 +156 +3549 +3549 +3549 +9 +175 +42 +563 +0 +1 +226 +2296 +111 +23 +36 +479 +3403 +3403 +3403 +3167 +206 +1874 +87 +20 +64 +2685 +1654 +1654 +1654 +1334 +90 +2225 +242 +242 +242 +31 +230 +59 +1 +883 +1377 +818 +448 +4184 +4184 +4184 +362 +913 +106 +950 +950 +950 +562 +38 +144 +2807 +37 +102 +4110 +4110 +4110 +2422 +2422 +2422 +4277 +4277 +4277 +99 +377 +0 +169 +102 +501 +165 +0 +611 +1115 +39 +4785 +4785 +4785 +1140 +3539 +3539 +3539 +645 +841 +841 +841 +378 +3897 +3897 +3897 +2699 +1 +62 +234 +1950 +1428 +1428 +1428 +211 +211 +1825 +0 +1 +26 +31 +1349 +1349 +1349 +925 +75 +185 +32 +56 +368 +171 +2 +389 +485 +31 +1557 +1079 +4813 +4813 +4813 +155 +498 +113 +3898 +3898 +3898 +1293 +42 +4972 +4972 +4972 +236 +42 +1782 +1782 +1782 +1667 +3010 +3010 +3010 +26 +2446 +2446 +2446 +538 +3913 +3913 +3913 +367 +248 +433 +2257 +519 +461 +2263 +2263 +2263 +130 +40 +54 +166 +46 +231 +0 +3937 +3937 +3937 +1575 +4460 +4460 +4460 +0 +692 +27 +842 +842 +842 +163 +618 +0 +186 +230 +2714 +838 +1134 +113 +504 +20 +598 +284 +7 +176 +66 +3873 +3873 +3873 +0 +368 +368 +368 +187 +203 +75 +3183 +3183 +3183 +93 +326 +1331 +186 +2577 +2577 +2577 +29 +1050 +3593 +3593 +3593 +1076 +573 +2239 +31 +1536 +1536 +1536 +41 +0 +4378 +4378 +4378 +3238 +3238 +3238 +77 +0 +584 +847 +4890 +4890 +4890 +205 +545 +978 +2504 +36 +296 +190 +1566 +33 +701 +701 +701 +961 +2218 +4266 +4266 +4266 +0 +23 +36 +2056 +2056 +2056 +5 +331 +571 +30 +166 +32 +4628 +4628 +4628 +641 +681 +40 +65 +2463 +276 +2191 +2191 +2191 +71 +90 +2124 +2124 +2124 +266 +32 +28 +4067 +4067 +4067 +39 +649 +4228 +85 +3345 +3345 +3345 +73 +3999 +3999 +3999 +25 +844 +2502 +2502 +2502 +3 +219 +323 +25 +917 +2508 +2508 +2508 +1514 +1514 +1514 +922 +62 +2764 +2764 +2764 +48 +29 +2072 +184 +1921 +741 +741 +741 +25 +31 +40 +306 +65 +1513 +1400 +1400 +1400 +355 +3623 +3623 +3623 +4703 +4703 +4703 +1429 +1440 +42 +3721 +3721 +3721 +69 +705 +2718 +265 +29 +21 +21 +1727 +192 +2820 +98 +19 +269 +2 +5 +2195 +2195 +2195 +37 +25 +2050 +1718 +1718 +1718 +23 +21 +3155 +3155 +3155 +190 +1 +99 +1213 +1213 +1213 +0 +114 +1693 +1693 +1693 +168 +43 +0 +368 +1457 +21 +1489 +1489 +1489 +900 +1142 +0 +616 +27 +2113 +2113 +2113 +29 +47 +875 +305 +27 +252 +3722 +3722 +3722 +1636 +3558 +3558 +3558 +57 +2082 +789 +344 +1246 +4286 +247 +20 +66 +10 +197 +666 +111 +59 +2179 +2179 +2179 +326 +3732 +3732 +3732 +59 +20 +818 +1941 +30 +317 +142 +52 +42 +895 +35 +561 +42 +137 +640 +1276 +105 +4943 +4943 +4943 +297 +65 +1 +628 +161 +3712 +3712 +3712 +1 +653 +966 +80 +251 +21 +2490 +43 +276 +80 +262 +1262 +1383 +23 +692 +1271 +80 +115 +136 +1 +1044 +151 +79 +1735 +1361 +1361 +1361 +90 +3191 +152 +48 +29 +61 +1389 +240 +2468 +2433 +88 +696 +696 +696 +1755 +1755 +1755 +906 +906 +906 +293 +532 +526 +240 +1 +845 +845 +845 +2500 +1766 +85 +87 +671 +245 +914 +689 +37 +86 +332 +481 +735 +112 +2 +0 +1 +4646 +4646 +4646 +4298 +4298 +4298 +179 +181 +1367 +365 +164 +2529 +9 +946 +216 +30 +23 +4564 +4564 +4564 +4657 +4657 +4657 +293 +284 +233 +94 +1418 +1418 +1418 +258 +1002 +139 +398 +608 +56 +2504 +2504 +2504 +204 +87 +274 +49 +542 +62 +27 +1 +3664 +2716 +2716 +2716 +25 +706 +1370 +2590 +1 +396 +31 +1070 +1070 +1070 +2312 +2312 +2312 +92 +0 +673 +30 +38 +2499 +2499 +2499 +1412 +427 +2129 +3284 +3284 +3284 +162 +305 +3258 +3258 +3258 +703 +645 +3615 +3615 +3615 +341 +276 +1366 +93 +697 +697 +697 +54 +355 +37 +57 +4015 +4015 +4015 +1100 +1100 +1100 +149 +1762 +1762 +1762 +1262 +65 +20 +4897 +4897 +4897 +753 +0 +679 +63 +3279 +32 +4856 +4856 +4856 +1 +28 +4716 +4716 +4716 +65 +750 +2 +29 +23 +4790 +4790 +4790 +127 +894 +260 +2164 +3 +1175 +236 +583 +1098 +1 +42 +335 +4629 +4629 +4629 +2 +1799 +399 +121 +2266 +441 +2122 +72 +172 +1472 +0 +3059 +3059 +3059 +1403 +1403 +1403 +44 +4425 +4425 +4425 +339 +339 +339 +0 +3364 +3364 +3364 +1114 +1753 +1753 +1753 +755 +30 +1136 +399 +82 +1102 +617 +61 +3422 +173 +105 +3778 +3778 +3778 +712 +318 +3635 +30 +1419 +49 +65 +65 +0 +324 +787 +18 +1 +2718 +2718 +2718 +4 +1391 +34 +33 +3826 +3826 +3826 +73 +0 +6 +59 +1005 +165 +4732 +4732 +4732 +56 +1823 +334 +4759 +4759 +4759 +732 +55 +182 +37 +361 +26 +3965 +3965 +3965 +365 +382 +1531 +115 +4758 +4758 +4758 +1417 +110 +1110 +121 +219 +4784 +4784 +4784 +0 +4034 +3942 +3942 +3942 +46 +2595 +2197 +3665 +3665 +3665 +30 +76 +2859 +2859 +2859 +4380 +4380 +4380 +1850 +731 +2507 +800 +0 +34 +1327 +24 +325 +57 +3 +24 +70 +30 +1339 +4 +64 +324 +324 +324 +4830 +4830 +4830 +681 +133 +2202 +2202 +2202 +203 +2 +2239 +381 +1108 +1108 +1108 +3156 +3156 +3156 +3 +307 +40 +3315 +30 +2918 +22 +3716 +3716 +3716 +2528 +3284 +3284 +3284 +254 +56 +1 +365 +3164 +3164 +3164 +53 +0 +0 +2531 +634 +300 +4610 +4610 +4610 +3121 +4397 +4397 +4397 +1388 +1388 +1388 +31 +371 +70 +0 +3656 +3656 +3656 +5 +2137 +2389 +2389 +2389 +26 +6 +4737 +4737 +4737 +1513 +1195 +22 +233 +328 +182 +180 +100 +1897 +1897 +1897 +26 +171 +2602 +1815 +1815 +1815 +11 +88 +178 +0 +27 +4741 +4741 +4741 +21 +121 +4734 +4734 +4734 +505 +505 +505 +31 +703 +4083 +4083 +4083 +2428 +1867 +1992 +3168 +3168 +3168 +188 +509 +509 +509 +2823 +1320 +3144 +152 +3082 +3710 +3710 +3710 +2998 +50 +50 +50 +1559 +689 +1372 +1372 +1372 +2091 +1010 +1010 +1010 +2267 +1835 +3246 +3246 +3246 +2900 +2900 +2900 +21 +1 +4476 +4476 +4476 +337 +201 +29 +4057 +4057 +4057 +42 +33 +3318 +3318 +3318 +1047 +84 +64 +24 +4042 +4042 +4042 +20 +2367 +33 +3555 +3555 +3555 +0 +105 +1684 +1 +1379 +25 +29 +92 +455 +455 +455 +1541 +1541 +1541 +1995 +2290 +447 +33 +101 +1455 +1455 +1455 +31 +2507 +2045 +2045 +2045 +7 +20 +31 +21 +0 +387 +374 +100 +32 +3349 +3349 +3349 +37 +1267 +373 +1 +200 +68 +339 +40 +532 +532 +532 +1492 +1886 +5 +1400 +7 +468 +951 +472 +1193 +1930 +1930 +1930 +29 +4211 +4211 +4211 +119 +1 +0 +94 +371 +28 +183 +21 +1502 +1502 +1502 +46 +491 +491 +491 +1416 +1416 +1416 +3359 +3359 +3359 +2511 +4 +773 +0 +3 +100 +0 +21 +0 +45 +1496 +1496 +1496 +116 +4727 +4727 +4727 +394 +1993 +138 +2229 +2229 +2229 +1476 +3652 +3652 +3652 +21 +351 +3781 +3781 +3781 +28 +2113 +1510 +2930 +2930 +2930 +22 +22 +3254 +3254 +3254 +203 +4056 +3024 +1159 +37 +58 +46 +1779 +355 +1091 +40 +21 +0 +880 +2882 +2882 +2882 +1144 +3614 +3614 +3614 +0 +399 +20 +30 +92 +1673 +256 +2735 +2735 +2735 +4 +40 +2964 +2964 +2964 +45 +436 +3090 +3090 +3090 +403 +983 +1549 +1058 +1712 +22 +1539 +376 +357 +24 +9 +3066 +3066 +3066 +2897 +2910 +34 +8 +4 +549 +3589 +3589 +3589 +717 +191 +60 +24 +0 +33 +25 +4825 +4825 +4825 +1860 +52 +35 +4401 +4401 +4401 +3221 +83 +1893 +39 +603 +53 +991 +2615 +197 +197 +197 +7 +75 +2825 +31 +775 +775 +775 +2854 +2854 +2854 +714 +3093 +3093 +3093 +80 +745 +5 +1815 +69 +618 +1840 +2279 +2279 +2279 +847 +426 +390 +753 +178 +284 +284 +284 +248 +1 +8 +1537 +594 +1537 +1537 +1537 +74 +0 +2352 +2352 +2352 +3487 +3487 +3487 +2989 +2989 +2989 +1 +26 +4110 +4110 +4110 +1824 +2318 +2318 +2318 +3669 +139 +391 +704 +1 +49 +1 +37 +21 +2930 +2863 +2863 +2863 +785 +785 +785 +924 +3519 +40 +27 +1822 +0 +25 +0 +1108 +4700 +4700 +4700 +507 +1831 +1 +4432 +4432 +4432 +2566 +0 +1810 +212 +82 +22 +28 +685 +33 +143 +638 +638 +638 +203 +1166 +1166 +1166 +37 +22 +35 +36 +798 +798 +798 +330 +283 +42 +284 +1994 +73 +2941 +2638 +2638 +2638 +35 +1311 +3 +274 +1059 +1059 +1059 +757 +2304 +4628 +4628 +4628 +5 +3258 +3258 +3258 +799 +2373 +11 +635 +2634 +2634 +2634 +2537 +2654 +28 +4450 +2304 +0 +378 +2478 +2478 +2478 +35 +1380 +1090 +396 +396 +396 +428 +428 +428 +28 +34 +692 +692 +692 +3534 +3534 +3534 +1 +99 +58 +3 +1 +4608 +4608 +4608 +1 +506 +293 +3326 +882 +2188 +3033 +3033 +3033 +29 +5 +27 +514 +2690 +2690 +2690 +207 +130 +23 +67 +30 +1356 +1356 +1356 +3933 +3933 +3933 +3610 +3610 +3610 +430 +26 +1786 +2652 +2652 +2652 +62 +460 +760 +3787 +3787 +3787 +43 +2 +91 +3628 +3628 +3628 +3825 +3825 +3825 +1952 +45 +1740 +21 +2642 +21 +109 +1118 +1509 +1509 +1509 +30 +4 +20 +522 +295 +60 +131 +2263 +2263 +2263 +1801 +1801 +1801 +0 +111 +731 +731 +731 +0 +2133 +96 +20 +3970 +3970 +3970 +203 +4146 +4146 +4146 +518 +518 +518 +24 +3040 +3040 +3040 +2091 +1908 +795 +795 +795 +21 +1849 +51 +150 +230 +4 +36 +61 +1128 +472 +473 +473 +473 +35 +387 +34 +3426 +2111 +22 +697 +1241 +26 +1470 +1269 +849 +3350 +3350 +3350 +3058 +3058 +3058 +52 +9 +3363 +3363 +3363 +21 +3720 +3720 +3720 +65 +36 +2900 +2900 +2900 +986 +30 +0 +38 +748 +1747 +1126 +4 +4406 +4406 +4406 +4202 +86 +2688 +1529 +0 +33 +1591 +1591 +1591 +15 +1957 +3119 +30 +5 +4629 +4629 +4629 +34 +1490 +1490 +1490 +55 +1862 +1862 +1862 +96 +190 +1433 +416 +850 +3494 +3494 +3494 +830 +28 +169 +4658 +4658 +4658 +2577 +140 +652 +1586 +0 +370 +1365 +201 +1 +82 +3030 +61 +74 +380 +1080 +4217 +4217 +4217 +5 +1 +3748 +3748 +3748 +2255 +411 +508 +201 +3 +21 +198 +29 +2196 +2237 +24 +1376 +1421 +5 +1295 +3604 +3604 +3604 +149 +149 +149 +376 +1473 +1473 +1473 +2371 +215 +489 +184 +184 +184 +62 +1418 +1418 +1418 +23 +23 +820 +96 +574 +32 +3492 +3492 +3492 +1454 +2985 +2985 +2985 +119 +38 +1591 +2271 +2271 +2271 +10 +2232 +3009 +3009 +3009 +3785 +3785 +3785 +1399 +2856 +2856 +2856 +4201 +4201 +4201 +22 +545 +38 +69 +1904 +1904 +1904 +2818 +97 +25 +510 +1524 +122 +1931 +1931 +1931 +3444 +3444 +3444 +878 +803 +41 +146 +31 +3359 +3359 +3359 +3724 +3724 +3724 +2938 +2938 +2938 +50 +478 +13 +2 +286 +112 +2626 +2626 +2626 +766 +156 +42 +2895 +1052 +60 +3655 +3655 +3655 +181 +634 +2625 +3149 +1821 +24 +402 +219 +20 +44 +48 +57 +73 +468 +1194 +32 +5 +49 +4729 +46 +205 +3782 +1 +2 +302 +111 +3749 +28 +412 +1520 +36 +2892 +2892 +2892 +68 +1626 +2226 +1198 +0 +173 +216 +216 +216 +1965 +20 +1776 +757 +23 +4366 +4366 +4366 +95 +139 +1566 +188 +1375 +0 +2248 +2248 +2248 +4836 +4836 +4836 +1002 +32 +4533 +4533 +4533 +2207 +104 +0 +592 +458 +21 +1986 +1986 +1986 +256 +1954 +1954 +1954 +829 +115 +1532 +1532 +1532 +1 +214 +2976 +669 +4860 +4860 +4860 +1601 +1601 +1601 +29 +31 +216 +2227 +113 +4351 +4351 +4351 +1230 +3110 +397 +41 +3 +1 +110 +77 +1994 +1994 +1994 +4041 +1219 +588 +338 +22 +27 +2667 +2667 +2667 +2009 +2009 +2009 +31 +222 +91 +2 +3012 +4582 +4582 +4582 +0 +1736 +2442 +88 +505 +2718 +4497 +4497 +4497 +155 +3352 +3352 +3352 +10 +24 +4889 +4889 +4889 +520 +1856 +53 +2 +33 +2187 +2187 +2187 +1 +2965 +2965 +2965 +117 +30 +3991 +3991 +3991 +633 +40 +385 +1964 +57 +34 +3962 +2163 +2281 +3828 +3828 +3828 +157 +4493 +4493 +4493 +2782 +577 +70 +4448 +4448 +4448 +56 +3344 +3344 +3344 +3 +39 +149 +149 +149 +352 +759 +61 +89 +22 +1128 +1128 +1128 +35 +142 +2367 +2367 +2367 +159 +966 +2992 +2992 +2992 +3398 +3398 +3398 +372 +376 +21 +107 +3824 +3824 +3824 +4854 +4854 +4854 +1867 +339 +383 +755 +819 +81 +864 +75 +32 +258 +396 +3080 +3080 +3080 +45 +1243 +107 +3100 +3061 +3061 +3061 +1 +62 +61 +3236 +3236 +3236 +1955 +1955 +1955 +1336 +0 +0 +1292 +1292 +1292 +95 +1953 +30 +488 +4836 +4836 +4836 +153 +135 +839 +839 +839 +1284 +2916 +3056 +1555 +206 +1924 +1924 +1924 +2928 +3138 +3138 +3138 +2589 +2589 +2589 +59 +2659 +25 +0 +20 +106 +31 +31 +233 +4495 +4495 +4495 +835 +847 +1149 +381 +51 +27 +2619 +120 +836 +836 +836 +4878 +4878 +4878 +1585 +1585 +1585 +32 +1243 +90 +329 +44 +2166 +2166 +2166 +4033 +4033 +4033 +3051 +1 +34 +845 +285 +1 +2101 +0 +4137 +4137 +4137 +141 +52 +3824 +3824 +3824 +2450 +2 +69 +2619 +0 +36 +1530 +1201 +69 +1153 +4076 +4076 +4076 +1829 +1829 +1829 +132 +4701 +4701 +4701 +32 +99 +2327 +3074 +3074 +3074 +55 +2403 +2403 +2403 +27 +2156 +381 +3 +124 +1092 +3818 +3818 +3818 +4827 +4827 +4827 +625 +68 +29 +0 +2 +109 +1242 +1242 +1242 +187 +33 +225 +93 +35 +117 +2171 +18 +71 +49 +0 +3755 +1158 +137 +137 +137 +2402 +2402 +2402 +100 +1893 +2618 +2618 +2618 +309 +953 +1426 +1426 +1426 +3651 +3651 +3651 +458 +1 +161 +415 +3844 +3844 +3844 +2337 +3039 +3039 +3039 +1892 +2 +1417 +1417 +1417 +1770 +140 +53 +801 +2367 +2816 +2816 +2816 +2553 +4194 +4194 +4194 +723 +6 +25 +219 +1852 +103 +1822 +43 +365 +34 +1847 +34 +58 +4929 +4929 +4929 +731 +2540 +2540 +2540 +1611 +99 +2502 +2328 +1549 +1273 +1273 +1273 +6 +736 +4045 +4045 +4045 +1084 +24 +438 +0 +572 +4206 +4206 +4206 +1 +237 +2605 +2605 +2605 +3100 +1566 +1566 +1566 +1372 +1372 +1372 +31 +120 +176 +2680 +2680 +2680 +362 +214 +2787 +210 +1976 +1976 +1976 +77 +1803 +49 +25 +2012 +2012 +2012 +438 +438 +438 +1973 +361 +28 +366 +4032 +4032 +4032 +91 +4110 +4110 +4110 +63 +2410 +28 +9 +49 +194 +26 +95 +99 +982 +3277 +3277 +3277 +116 +923 +697 +1170 +54 +2537 +2537 +2537 +1267 +1204 +3565 +3565 +3565 +2498 +107 +42 +1708 +66 +28 +573 +997 +0 +1512 +1512 +1512 +4477 +4477 +4477 +46 +30 +81 +67 +186 +4 +31 +78 +4382 +2174 +366 +1933 +1034 +179 +6 +231 +1737 +1737 +1737 +1161 +156 +97 +4917 +4917 +4917 +4236 +4236 +4236 +0 +446 +27 +71 +55 +36 +825 +1 +823 +823 +823 +327 +327 +327 +81 +173 +0 +2740 +46 +46 +2719 +2719 +2719 +845 +26 +21 +1 +4276 +4276 +4276 +1282 +0 +2110 +3971 +63 +4614 +4614 +4614 +495 +3572 +2314 +1412 +79 +3128 +3128 +3128 +578 +2536 +2536 +2536 +4490 +86 +1872 +3543 +3543 +3543 +977 +977 +977 +303 +0 +2087 +2574 +2574 +2574 +907 +28 +589 +71 +32 +31 +3593 +3593 +3593 +84 +338 +153 +2408 +2408 +2408 +62 +814 +3170 +3170 +3170 +83 +22 +1288 +212 +1788 +47 +1 +2346 +2346 +2346 +4922 +4922 +4922 +2 +561 +50 +4086 +4086 +4086 +135 +22 +1085 +1085 +1085 +177 +80 +0 +23 +20 +2506 +2122 +2122 +2122 +367 +2837 +2837 +2837 +23 +985 +10 +1323 +1323 +1323 +2795 +1527 +4083 +4083 +4083 +72 +2 +31 +432 +1723 +534 +3075 +127 +2708 +2708 +2708 +365 +538 +2771 +2771 +2771 +119 +920 +4669 +4669 +4669 +861 +366 +173 +67 +159 +49 +2738 +124 +22 +123 +72 +27 +3428 +39 +57 +2769 +64 +956 +11 +63 +13 +588 +2415 +2415 +2415 +383 +1120 +3658 +3658 +3658 +661 +661 +661 +1984 +153 +29 +2163 +988 +37 +43 +0 +0 +980 +6 +27 +1985 +875 +2017 +2927 +2927 +2927 +2757 +613 +4718 +4718 +4718 +367 +17 +242 +200 +28 +1331 +216 +257 +257 +257 +29 +251 +2021 +2527 +2527 +2527 +1153 +29 +177 +75 +1185 +485 +2212 +389 +43 +36 +590 +1812 +1812 +1812 +1620 +59 +80 +3192 +3192 +3192 +21 +925 +245 +630 +32 +2961 +29 +2636 +1 +390 +935 +336 +25 +4567 +4567 +4567 +128 +95 +1 +2117 +4 +30 +574 +554 +2328 +2328 +2328 +97 +43 +106 +25 +1364 +573 +0 +622 +0 +2066 +4978 +4978 +4978 +2185 +2185 +2185 +151 +338 +0 +2375 +31 +1 +0 +250 +94 +4163 +4163 +4163 +282 +165 +3546 +3546 +3546 +3199 +229 +3774 +3774 +3774 +2001 +192 +40 +2534 +2534 +2534 +0 +109 +4812 +4812 +4812 +91 +1181 +1181 +1181 +125 +269 +4737 +4737 +4737 +2797 +2797 +2797 +315 +34 +0 +20 +66 +1 +334 +4991 +4991 +4991 +84 +202 +488 +28 +1009 +1009 +1009 +1626 +2283 +2283 +2283 +2450 +1168 +143 +38 +582 +160 +1936 +1936 +1936 +147 +31 +4560 +4560 +4560 +139 +26 +1 +75 +72 +2884 +2884 +2884 +732 +66 +163 +16 +5 +366 +249 +4203 +4203 +4203 +23 +3128 +3128 +3128 +0 +1008 +1008 +1008 +55 +560 +560 +560 +1346 +0 +1919 +26 +0 +26 +635 +658 +4 +44 +112 +112 +112 +0 +5 +221 +4683 +4683 +4683 +264 +264 +264 +0 +32 +148 +29 +835 +881 +1 +2434 +2434 +2434 +98 +176 +1382 +80 +48 +62 +42 +57 +47 +1511 +147 +235 +2891 +2891 +2891 +410 +3400 +81 +4984 +4984 +4984 +2534 +2534 +2534 +3598 +3598 +3598 +732 +732 +732 +54 +422 +21 +1855 +3197 +3197 +3197 +117 +2122 +2122 +2122 +1024 +41 +138 +2859 +2859 +2859 +0 +66 +0 +768 +768 +768 +1 +4794 +4794 +4794 +38 +2635 +226 +3958 +3958 +3958 +662 +71 +71 +71 +0 +2827 +2827 +2827 +96 +367 +2768 +2768 +2768 +277 +2196 +0 +1969 +60 +688 +2288 +23 +46 +4986 +4986 +4986 +1741 +2397 +2397 +2397 +604 +117 +47 +1 +3665 +2241 +72 +208 +1570 +1570 +1570 +145 +67 +23 +170 +2 +247 +35 +2574 +2852 +1639 +1639 +1639 +22 +1385 +2641 +20 +77 +72 +3506 +365 +0 +68 +77 +2743 +2743 +2743 +26 +4514 +4514 +4514 +2 +30 +3 +230 +3667 +1371 +1371 +1371 +3923 +3923 +3923 +128 +59 +59 +59 +4327 +4327 +4327 +86 +1678 +3 +2504 +1579 +1579 +1579 +0 +1033 +2398 +2398 +2398 +4238 +4238 +4238 +3307 +3480 +37 +1460 +116 +4 +2015 +2015 +2015 +2220 +2220 +2220 +232 +583 +667 +3689 +3689 +3689 +3 +4083 +4083 +4083 +394 +83 +310 +0 +168 +4419 +4419 +4419 +969 +969 +969 +528 +402 +1587 +4859 +4859 +4859 +572 +572 +572 +674 +3903 +3903 +3903 +0 +26 +2255 +68 +3 +34 +51 +3293 +3293 +3293 +1061 +2456 +2456 +2456 +176 +188 +1 +2130 +31 +30 +339 +368 +368 +368 +1 +166 +275 +255 +341 +751 +31 +657 +657 +657 +330 +841 +53 +1760 +1760 +1760 +210 +258 +1000 +3881 +3881 +3881 +41 +3974 +3974 +3974 +1827 +1547 +1547 +1547 +1499 +1499 +1499 +30 +318 +52 +41 +37 +37 +37 +21 +99 +677 +2534 +2156 +2156 +2156 +1742 +637 +1690 +1690 +1690 +2511 +1291 +3297 +3297 +3297 +131 +505 +452 +0 +3670 +3670 +3670 +1 +28 +3173 +3173 +3173 +25 +1366 +28 +103 +56 +63 +2495 +2495 +2495 +2255 +2255 +2255 +2872 +33 +1166 +68 +1 +1086 +69 +69 +69 +2609 +2609 +2609 +269 +20 +2770 +2770 +2770 +2 +1130 +1130 +1130 +1285 +1225 +527 +33 +2308 +45 +2164 +2164 +2164 +2369 +2369 +2369 +20 +642 +642 +642 +1127 +1590 +626 +3462 +3462 +3462 +1788 +78 +129 +0 +2089 +2089 +2089 +30 +26 +1030 +59 +3961 +568 +1 +1376 +171 +23 +9 +0 +96 +75 +264 +1348 +1348 +1348 +3235 +3235 +3235 +0 +2 +2840 +2840 +2840 +405 +3933 +1719 +3192 +22 +32 +664 +689 +159 +292 +55 +2855 +2855 +2855 +109 +2457 +2457 +2457 +2158 +812 +1 +600 +302 +852 +0 +395 +223 +2572 +2572 +2572 +105 +40 +1730 +4361 +20 +0 +2101 +22 +57 +4667 +4667 +4667 +526 +177 +177 +177 +284 +783 +25 +68 +562 +4053 +4053 +4053 +169 +26 +524 +89 +2 +0 +326 +256 +26 +0 +1283 +756 +1236 +104 +35 +302 +4304 +4304 +4304 +2351 +2351 +2351 +1868 +3622 +1298 +12 +21 +2931 +2931 +2931 +2802 +2802 +2802 +138 +63 +2816 +2816 +2816 +254 +6 +99 +11 +32 +1007 +2512 +88 +88 +88 +375 +61 +44 +4568 +4568 +4568 +3389 +3389 +3389 +39 +24 +4673 +4673 +4673 +4685 +4685 +4685 +2911 +2911 +2911 +0 +153 +344 +344 +344 +3270 +2192 +264 +2803 +2803 +2803 +0 +114 +650 +2859 +2859 +2859 +204 +279 +6 +525 +26 +20 +1070 +63 +132 +132 +132 +756 +61 +258 +269 +436 +0 +2656 +37 +41 +805 +1551 +1551 +1551 +110 +33 +10 +1753 +1753 +1753 +0 +103 +103 +103 +876 +876 +876 +3290 +3290 +3290 +3430 +58 +0 +336 +92 +1460 +1507 +1818 +1818 +1818 +25 +2542 +1006 +1006 +1006 +3306 +3306 +3306 +97 +33 +23 +26 +30 +0 +2862 +2 +20 +141 +1276 +825 +365 +360 +42 +103 +698 +413 +1321 +2517 +2517 +2517 +62 +1100 +687 +1116 +1331 +62 +36 +3430 +2915 +1366 +277 +2970 +2970 +2970 +10 +2274 +24 +4169 +4169 +4169 +36 +1 +366 +21 +1752 +1752 +1752 +26 +3355 +3355 +3355 +325 +351 +522 +22 +722 +950 +950 +950 +0 +23 +50 +34 +1621 +1621 +1621 +2028 +2028 +2028 +36 +4793 +4793 +4793 +957 +1387 +91 +756 +1 +139 +328 +450 +3003 +71 +1 +224 +4866 +4866 +4866 +2347 +2347 +2347 +2330 +2330 +2330 +24 +35 +130 +301 +1784 +146 +731 +3914 +3914 +3914 +1 +3192 +27 +1598 +172 +990 +24 +1141 +286 +310 +1673 +1673 +1673 +40 +3653 +3653 +3653 +2039 +2039 +2039 +25 +20 +27 +3264 +3264 +3264 +303 +751 +4467 +4467 +4467 +1 +101 +1443 +120 +98 +4 +4281 +4281 +4281 +5 +121 +20 +3245 +3245 +3245 +75 +1555 +1555 +1555 +428 +82 +27 +1060 +4364 +4364 +4364 +2981 +2981 +2981 +186 +4437 +4437 +4437 +125 +0 +2298 +2298 +2298 +1337 +109 +2560 +2560 +2560 +30 +2241 +1877 +30 +2299 +22 +241 +580 +91 +2759 +2759 +2759 +704 +463 +51 +435 +0 +204 +31 +2676 +0 +4295 +4295 +4295 +40 +1539 +37 +1531 +1 +1525 +290 +2184 +26 +28 +171 +2313 +84 +184 +368 +4 +2303 +3719 +3719 +3719 +7 +3288 +3288 +3288 +4 +110 +443 +127 +314 +20 +7 +1537 +1537 +1537 +67 +21 +2 +2585 +214 +589 +0 +456 +3653 +3653 +3653 +128 +1 +519 +151 +0 +67 +360 +0 +41 +2565 +2565 +2565 +31 +3 +730 +1167 +2220 +84 +28 +24 +43 +0 +1 +1828 +2413 +2413 +2413 +1081 +1081 +1081 +1864 +2123 +410 +2257 +2257 +2257 +2559 +25 +1598 +1598 +1598 +910 +0 +784 +2589 +2589 +2589 +38 +951 +316 +316 +316 +14 +200 +526 +23 +54 +3213 +3213 +3213 +75 +40 +675 +741 +23 +164 +5 +2447 +2447 +2447 +23 +0 +4344 +4344 +4344 +2 +2684 +2684 +2684 +719 +719 +719 +2273 +1068 +1856 +1856 +1856 +159 +1045 +0 +62 +172 +26 +874 +2785 +2973 +2973 +2973 +1259 +3211 +24 +45 +0 +2534 +1 +7 +32 +23 +21 +4134 +4134 +4134 +1873 +50 +22 +2912 +99 +5 +2094 +41 +29 +32 +24 +2594 +29 +28 +2927 +1740 +1740 +1740 +195 +72 +103 +4729 +4729 +4729 +36 +3783 +3783 +3783 +4091 +4091 +4091 +348 +4989 +2763 +3049 +4 +22 +349 +57 +2711 +1012 +299 +0 +245 +2317 +123 +41 +23 +1096 +31 +1009 +1108 +1108 +1108 +73 +61 +2 +56 +33 +0 +71 +311 +311 +918 +32 +274 +97 +767 +767 +767 +2641 +4746 +4746 +4746 +62 +0 +34 +777 +53 +129 +54 +21 +398 +3293 +3293 +3293 +1348 +35 +806 +259 +150 +1090 +792 +1189 +27 +2315 +48 +0 +0 +759 +40 +363 +93 +104 +37 +3687 +3687 +3687 +68 +26 +71 +37 +63 +57 +20 +2662 +2662 +2662 +21 +35 +470 +2998 +2998 +2998 +40 +848 +54 +72 +93 +322 +5 +26 +29 +2965 +2965 +2965 +276 +23 +32 +127 +239 +239 +239 +1160 +53 +1548 +27 +57 +34 +0 +60 +58 +8 +1928 +1928 +1928 +300 +434 +45 +410 +4278 +4278 +4278 +1154 +3683 +3683 +3683 +31 +1 +198 +32 +796 +4024 +4024 +4024 +1110 +53 +32 +58 +4540 +4540 +4540 +4116 +4116 +4116 +761 +67 +328 +603 +21 +3953 +3953 +3953 +4387 +4387 +4387 +476 +29 +1 +0 +1259 +73 +0 +203 +1509 +2505 +3305 +2439 +2340 +214 +2283 +0 +34 +381 +0 +7 +3049 +3049 +3049 +364 +3090 +3090 +3090 +844 +844 +844 +0 +178 +5 +2995 +2995 +2995 +21 +387 +4709 +4709 +4709 +2740 +2740 +2740 +26 +213 +3581 +3581 +3581 +221 +59 +2664 +2664 +2664 +380 +380 +380 +498 +25 +56 +3195 +3195 +3195 +225 +670 +3122 +3122 +3122 +0 +65 +1098 +49 +132 +945 +945 +945 +50 +731 +620 +620 +620 +58 +1464 +100 +59 +131 +65 +58 +58 +21 +0 +357 +536 +4844 +4844 +4844 +2947 +2947 +2947 +93 +769 +28 +20 +21 +48 +58 +1144 +83 +58 +1095 +1531 +0 +44 +3959 +3959 +3959 +95 +4045 +69 +3073 +3073 +3073 +182 +27 +66 +26 +120 +30 +4060 +4060 +4060 +27 +0 +29 +194 +86 +44 +4 +28 +431 +789 +1489 +743 +155 +22 +733 +132 +0 +115 +67 +1 +1087 +30 +117 +0 +1 +2318 +4068 +104 +2358 +2358 +2358 +88 +1913 +1913 +1913 +4826 +4826 +4826 +2612 +41 +20 +624 +4 +98 +796 +1777 +589 +589 +589 +3514 +3514 +3514 +1026 +434 +2644 +0 +5 +0 +59 +21 +4852 +4852 +4852 +2201 +35 +1198 +4382 +4382 +4382 +35 +71 +800 +33 +32 +20 +42 +52 +34 +29 +772 +2267 +2267 +2267 +1097 +107 +0 +2208 +4 +1103 +134 +3168 +3168 +3168 +7 +48 +1753 +29 +107 +0 +310 +82 +124 +1171 +3788 +3788 +3788 +1 +62 +66 +93 +0 +4748 +4748 +4748 +94 +418 +53 +4966 +4966 +4966 +29 +27 +1097 +3442 +176 +1672 +837 +0 +185 +0 +1023 +128 +64 +1464 +31 +31 +1 +2076 +2076 +2076 +214 +616 +1549 +32 +3090 +3090 +3090 +4502 +4502 +4502 +37 +98 +89 +3328 +3328 +3328 +3774 +3774 +3774 +2775 +517 +78 +30 +869 +0 +32 +186 +2256 +66 +3451 +3451 +3451 +836 +2208 +98 +85 +32 +260 +3005 +3005 +3005 +441 +441 +441 +139 +91 +102 +47 +517 +76 +41 +1792 +1792 +1792 +1705 +4153 +4153 +4153 +933 +90 +2221 +2221 +2221 +2040 +1769 +1769 +1769 +7 +2753 +37 +812 +139 +94 +3636 +67 +24 +4786 +4786 +4786 +2846 +4 +29 +1296 +46 +33 +62 +39 +1 +2772 +0 +183 +319 +188 +914 +1278 +2992 +3595 +136 +3388 +3388 +3388 +62 +681 +1 +50 +26 +122 +26 +147 +94 +150 +63 +366 +915 +1 +133 +3051 +1403 +99 +486 +0 +1290 +515 +1670 +30 +58 +1741 +1741 +1741 +641 +23 +52 +0 +3409 +3409 +3409 +133 +1942 +1942 +1942 +559 +407 +2054 +367 +93 +109 +367 +80 +201 +0 +2922 +106 +106 +106 +56 +4284 +4284 +4284 +1464 +72 +2307 +71 +31 +1299 +1299 +1299 +4382 +4382 +4382 +28 +310 +1 +2042 +3141 +371 +2827 +2827 +2827 +2051 +71 +0 +24 +123 +191 +2373 +2373 +2373 +1 +24 +0 +25 +634 +4 +3 +140 +148 +369 +0 +55 +372 +216 +4516 +4516 +4516 +41 +129 +1 +4081 +2645 +124 +3766 +246 +116 +62 +243 +659 +659 +659 +0 +126 +23 +150 +3544 +276 +276 +276 +830 +173 +210 +854 +514 +34 +195 +105 +2625 +2625 +2625 +1489 +1 +20 +1548 +21 +1 +5 +857 +78 +26 +2270 +2648 +2648 +2648 +2889 +2889 +2889 +861 +4942 +4942 +4942 +37 +1 +0 +3309 +3309 +3309 +3613 +3613 +3613 +25 +338 +898 +113 +32 +2336 +2336 +2336 +2024 +1623 +3302 +3302 +3302 +3167 +3167 +3167 +1268 +2762 +2762 +2762 +151 +73 +48 +114 +2945 +2945 +2945 +4136 +4136 +4136 +102 +2057 +2057 +2057 +79 +928 +928 +928 +320 +4537 +4537 +4537 +0 +626 +3653 +72 +58 +814 +2408 +2408 +2408 +54 +168 +3622 +3622 +3622 +2288 +71 +1255 +1735 +1735 +1735 +221 +103 +297 +435 +435 +435 +858 +5 +0 +248 +1436 +1436 +1436 +1766 +1766 +1766 +2525 +2525 +2525 +34 +60 +299 +24 +3843 +3843 +3843 +508 +3116 +3116 +3116 +35 +0 +839 +2700 +79 +3013 +3628 +3628 +3628 +2732 +2732 +2732 +1 +275 +73 +945 +98 +2365 +2365 +2365 +1266 +568 +568 +568 +3 +367 +111 +2106 +1741 +896 +3961 +510 +510 +510 +4134 +4134 +4134 +60 +3499 +3499 +3499 +4189 +4189 +4189 +101 +101 +101 +20 +20 +11 +3560 +3560 +3560 +104 +23 +506 +31 +217 +1411 +1 +2291 +2291 +2291 +21 +101 +1254 +1254 +1254 +93 +3 +377 +105 +1761 +39 +0 +3 +2 +62 +53 +60 +152 +450 +44 +502 +4847 +4847 +4847 +1264 +1509 +1509 +1509 +25 +1778 +2380 +2380 +2380 +74 +2803 +2803 +2803 +299 +1027 +1466 +4635 +4635 +4635 +119 +127 +1334 +23 +1731 +231 +381 +2781 +2781 +2781 +304 +29 +28 +4364 +1459 +2268 +4590 +4590 +4590 +2225 +2225 +2225 +216 +2441 +4082 +101 +266 +3542 +368 +1218 +27 +615 +4206 +785 +3851 +3851 +3851 +1262 +1 +101 +1263 +1263 +1263 +2919 +29 +1275 +1641 +624 +1056 +4759 +4759 +4759 +4604 +4604 +4604 +2 +261 +4704 +4704 +4704 +632 +1586 +2460 +2460 +2460 +137 +61 +1114 +785 +625 +2003 +1891 +81 +133 +2854 +2854 +2854 +2888 +2382 +2382 +2382 +1660 +4252 +4252 +4252 +2811 +2811 +2811 +1947 +1947 +1947 +593 +4553 +4553 +4553 +4839 +4839 +4839 +1386 +1386 +1386 +2360 +2360 +2360 +4930 +4930 +4930 +463 +55 +294 +294 +294 +815 +565 +3 +549 +4973 +4973 +4973 +4423 +4423 +4423 +545 +3983 +3983 +3983 +1165 +2013 +327 +327 +327 +1422 +1422 +1422 +620 +1853 +3173 +3173 +3173 +2772 +2772 +2772 +69 +682 +523 +3946 +3946 +3946 +1275 +1275 +1275 +4182 +4182 +4182 +1876 +1876 +1876 +2383 +2383 +2383 +2442 +581 +684 +564 +1009 +1267 +418 +367 +4580 +4580 +4580 +188 +1002 +7 +495 +4933 +4933 +4933 +1752 +62 +559 +989 +989 +989 +2 +124 +4471 +4471 +4471 +788 +691 +2081 +0 +1729 +3171 +2905 +2905 +2905 +2386 +2386 +2386 +33 +52 +2013 +0 +65 +2989 +4495 +4495 +4495 +0 +409 +2081 +1314 +190 +2262 +2262 +2262 +76 +127 +2314 +0 +4089 +4089 +4089 +237 +375 +1965 +252 +137 +137 +137 +602 +2031 +2031 +2031 +2081 +2081 +2081 +299 +23 +3165 +3165 +3165 +72 +1771 +309 +71 +1903 +1836 +3434 +3434 +3434 +2173 +4024 +1036 +485 +695 +695 +695 +4666 +4666 +4666 +4877 +4877 +4877 +203 +3221 +3221 +3221 +1114 +1940 +223 +2905 +2905 +2905 +69 +0 +2781 +254 +3974 +63 +1027 +1027 +1027 +70 +2008 +2008 +2008 +4729 +4729 +4729 +1514 +60 +4511 +3558 +3558 +3558 +623 +18 +50 +1365 +1365 +1365 +134 +3455 +3455 +3455 +82 +1041 +254 +502 +1350 +879 +967 +967 +967 +248 +3115 +3115 +3115 +509 +2906 +4009 +4009 +4009 +374 +208 +1819 +1819 +1819 +1928 +4987 +4987 +4987 +3609 +3609 +3609 +2102 +1 +360 +918 +0 +3748 +3748 +3748 +327 +2283 +1263 +627 +2084 +1 +325 +1776 +1776 +1776 +4042 +4042 +4042 +2823 +269 +687 +3157 +3157 +3157 +159 +88 +509 +20 +570 +4759 +4759 +4759 +163 +22 +4623 +4623 +4623 +1979 +3252 +3252 +3252 +70 +2905 +2905 +2905 +1936 +4269 +4269 +4269 +1 +1200 +2769 +4863 +4863 +4863 +4222 +1898 +1898 +1898 +890 +4624 +4624 +4624 +1830 +1830 +1830 +23 +2823 +2823 +2823 +467 +82 +2038 +2038 +2038 +61 +3671 +4430 +4430 +4430 +40 +1114 +1114 +1114 +3436 +27 +1668 +3119 +4916 +4916 +4916 +349 +30 +60 +1313 +1 +1930 +643 +985 +29 +1624 +1624 +1624 +2016 +1295 +226 +1309 +1309 +1309 +3888 +3888 +3888 +2415 +1754 +2372 +285 +4244 +4244 +4244 +2459 +3968 +3968 +3968 +1071 +36 +1458 +1458 +1458 +78 +1824 +385 +1236 +7 +942 +20 +1446 +1446 +1446 +2859 +2859 +2859 +51 +20 +284 +2715 +2715 +2715 +2406 +22 +1616 +0 +1530 +42 +49 +995 +33 +20 +1216 +1 +24 +582 +499 +852 +852 +852 +726 +1532 +49 +88 +100 +2903 +2903 +2903 +1188 +32 +556 +3923 +3923 +3923 +662 +775 +595 +2075 +175 +2487 +2487 +2487 +2963 +4205 +4205 +4205 +236 +3924 +3924 +3924 +53 +55 +604 +604 +604 +293 +125 +54 +2246 +22 +8 +25 +224 +1 +1678 +365 +4123 +4123 +4123 +1024 +1307 +1307 +1307 +247 +4610 +4610 +4610 +3215 +727 +1502 +1 +53 +2829 +3968 +3968 +3968 +1420 +1420 +1420 +29 +29 +29 +179 +39 +611 +1084 +1821 +1821 +1821 +261 +2794 +2794 +2794 +1633 +2176 +2176 +2176 +582 +3234 +359 +359 +359 +0 +365 +576 +4305 +4305 +4305 +61 +4567 +4567 +4567 +2573 +2573 +2573 +366 +1247 +1247 +1247 +1283 +446 +3591 +3591 +3591 +2142 +343 +3152 +3152 +3152 +42 +93 +3163 +236 +630 +2920 +2920 +2920 +64 +1602 +1602 +1602 +1745 +1745 +1745 +235 +365 +31 +901 +1176 +1 +335 +13 +24 +29 +888 +888 +888 +1051 +2773 +2773 +2773 +2918 +2918 +2918 +60 +99 +30 +1603 +54 +33 +835 +1082 +3878 +3878 +3878 +67 +906 +2 +9 +1244 +1244 +1244 +369 +30 +53 +0 +3973 +3973 +3973 +2491 +455 +887 +73 +37 +269 +29 +1 +38 +28 +410 +1076 +3948 +3948 +3948 +973 +26 +280 +203 +2566 +2566 +2566 +632 +260 +151 +3616 +3616 +3616 +2473 +2285 +2372 +0 +0 +34 +706 +2765 +2765 +2765 +2619 +2619 +2619 +34 +0 +60 +936 +51 +2 +109 +167 +33 +391 +23 +2434 +253 +106 +227 +404 +254 +3503 +3503 +3503 +1175 +37 +140 +1 +23 +28 +2319 +104 +2423 +2423 +2423 +0 +2115 +700 +462 +0 +1511 +2448 +2448 +2448 +61 +40 +2451 +1651 +1053 +1053 +1053 +635 +1677 +177 +985 +985 +985 +3351 +3351 +3351 +32 +2954 +96 +279 +257 +24 +24 +24 +108 +2369 +272 +2031 +23 +2954 +2954 +2954 +306 +318 +365 +2583 +2583 +2583 +271 +254 +48 +0 +3643 +3643 +3643 +5 +51 +1081 +50 +36 +3028 +3028 +3028 +710 +2 +447 +466 +4844 +4844 +4844 +1887 +1887 +1887 +1802 +8 +41 +73 +96 +1082 +1082 +1082 +1882 +281 +229 +2510 +2510 +2510 +780 +780 +780 +33 +31 +163 +92 +136 +3029 +3029 +3029 +150 +67 +3660 +727 +2150 +729 +28 +291 +0 +61 +35 +105 +1086 +34 +159 +0 +38 +75 +2907 +2907 +2907 +1256 +2143 +27 +368 +249 +1 +342 +342 +342 +2405 +327 +61 +3032 +86 +3738 +3738 +3738 +21 +4003 +4003 +4003 +4 +1313 +9 +633 +2 +3666 +49 +59 +1821 +4732 +4732 +4732 +184 +1734 +3636 +2918 +2918 +2918 +1355 +36 +255 +0 +91 +33 +47 +159 +29 +1916 +1916 +1916 +117 +584 +584 +584 +303 +303 +303 +352 +452 +33 +115 +1197 +4064 +4064 +4064 +369 +2826 +2826 +2826 +425 +1 +3696 +3696 +3696 +3300 +3300 +3300 +1 +3408 +3408 +3408 +74 +407 +271 +319 +24 +43 +96 +90 +2924 +49 +32 +746 +277 +3176 +3976 +3976 +3976 +356 +356 +356 +375 +34 +1778 +2 +29 +1486 +4027 +4027 +4027 +1848 +1848 +1848 +262 +9 +1195 +31 +2909 +2909 +2909 +1172 +1172 +1172 +49 +2 +3302 +3302 +3302 +4076 +4076 +4076 +1 +27 +3271 +25 +676 +90 +1662 +20 +3214 +11 +57 +4781 +4781 +4781 +47 +1977 +281 +0 +325 +112 +60 +1 +2158 +2379 +2379 +2379 +434 +65 +53 +87 +2501 +2501 +2501 +64 +20 +33 +3149 +3149 +3149 +25 +90 +30 +1366 +73 +594 +3244 +3244 +3244 +696 +696 +696 +11 +687 +208 +1444 +1444 +1444 +162 +47 +3956 +3956 +3956 +51 +2916 +709 +2984 +2984 +2984 +0 +1 +79 +256 +393 +393 +393 +275 +3 +191 +2912 +2912 +2912 +57 +348 +670 +4093 +4093 +4093 +526 +3040 +3040 +3040 +367 +33 +1039 +1039 +1039 +1732 +1279 +0 +535 +317 +1027 +35 +1 +4551 +4551 +4551 +4662 +4662 +4662 +183 +25 +1147 +1147 +1147 +3673 +3673 +3673 +60 +2121 +83 +3667 +3667 +3667 +75 +365 +1797 +305 +10 +1403 +4 +3205 +3205 +3205 +3623 +3623 +3623 +370 +1407 +54 +1311 +0 +441 +31 +4772 +4772 +4772 +27 +1412 +2750 +2750 +2750 +540 +388 +936 +1528 +2 +32 +1736 +1736 +1736 +57 +26 +1392 +3293 +3293 +3293 +3326 +282 +1057 +143 +7 +12 +23 +2595 +2595 +2595 +0 +32 +310 +54 +130 +86 +6 +2644 +2644 +2644 +28 +3048 +3048 +3048 +681 +2182 +2182 +2182 +136 +41 +92 +64 +2133 +2133 +2133 +1393 +1393 +1393 +4360 +4360 +4360 +314 +114 +1512 +1349 +1349 +1349 +1555 +423 +3 +29 +72 +23 +728 +329 +3695 +3695 +3695 +1745 +20 +1138 +133 +7 +39 +103 +2201 +2201 +2201 +2202 +2202 +2202 +37 +378 +4694 +4694 +4694 +25 +401 +63 +2681 +4354 +4354 +4354 +290 +557 +463 +272 +382 +44 +22 +124 +2274 +2274 +2274 +35 +1 +188 +2581 +4668 +62 +1507 +33 +3123 +3123 +3123 +1369 +0 +59 +34 +46 +20 +795 +247 +7 +789 +4220 +736 +31 +2679 +138 +120 +30 +2114 +4174 +4174 +4174 +47 +331 +49 +147 +2798 +3170 +3170 +3170 +44 +160 +0 +649 +1191 +4844 +4844 +4844 +15 +58 +45 +969 +32 +4264 +4264 +4264 +173 +2566 +2566 +2566 +0 +361 +2690 +25 +47 +4637 +4637 +4637 +400 +2682 +2682 +2682 +174 +0 +1 +1467 +2985 +0 +65 +2615 +2615 +2615 +86 +2816 +2816 +2816 +2827 +2827 +2827 +1150 +1150 +1150 +99 +185 +2934 +2133 +3964 +3964 +3964 +2938 +2938 +2938 +4854 +4854 +4854 +34 +1694 +1694 +1694 +2610 +32 +88 +373 +2988 +3659 +3659 +3659 +2900 +779 +248 +2411 +26 +16 +1067 +154 +197 +36 +63 +137 +3256 +25 +49 +73 +45 +279 +2708 +2708 +2708 +47 +41 +2223 +3931 +3931 +3931 +52 +141 +95 +251 +28 +29 +4445 +4445 +4445 +4054 +4054 +4054 +262 +1427 +2621 +2621 +2621 +4917 +4917 +4917 +458 +2193 +2193 +2193 +3934 +3934 +3934 +35 +81 +25 +309 +2257 +2257 +2257 +30 +26 +76 +2021 +2021 +2021 +93 +2596 +2596 +2596 +73 +294 +49 +435 +494 +2497 +497 +1315 +1878 +2 +243 +529 +39 +787 +787 +787 +67 +21 +0 +1 +4410 +4410 +4410 +36 +158 +2633 +4054 +4054 +4054 +1 +59 +1463 +57 +2231 +188 +701 +276 +1629 +902 +902 +902 +502 +0 +2829 +0 +501 +2813 +2813 +2813 +354 +310 +1569 +3391 +3391 +3391 +2806 +2806 +2806 +2519 +2519 +2519 +27 +33 +3673 +3673 +3673 +860 +1888 +126 +70 +451 +366 +61 +1 +873 +2954 +155 +722 +722 +722 +145 +365 +13 +1219 +1219 +1219 +1 +0 +2707 +259 +130 +41 +751 +2 +882 +145 +36 +0 +4 +3284 +3284 +3284 +4847 +4847 +4847 +104 +368 +2583 +1620 +1620 +1620 +94 +2940 +2940 +2940 +10 +110 +23 +365 +252 +20 +1 +2218 +4368 +4368 +4368 +1046 +4798 +4798 +4798 +49 +485 +0 +1184 +4830 +4830 +4830 +2195 +2195 +2195 +243 +0 +2544 +1834 +1834 +1834 +1473 +790 +321 +23 +1053 +41 +1109 +3690 +3690 +3690 +50 +55 +2521 +2521 +2521 +2631 +406 +202 +202 +202 +119 +55 +61 +1363 +711 +686 +3428 +3428 +3428 +785 +452 +45 +11 +1706 +460 +460 +460 +1478 +2483 +225 +2120 +388 +296 +1454 +113 +102 +382 +181 +117 +70 +99 +38 +1213 +1213 +1213 +2639 +2639 +2639 +2944 +1509 +70 +109 +23 +340 +38 +39 +156 +105 +0 +3006 +332 +234 +0 +3 +3656 +3749 +3749 +3749 +4410 +4410 +4410 +2006 +133 +819 +1526 +37 +344 +0 +4383 +4383 +4383 +512 +753 +235 +0 +385 +95 +2 +53 +120 +21 +380 +50 +4005 +4005 +4005 +0 +4088 +4088 +4088 +298 +3713 +3713 +3713 +21 +37 +91 +1 +431 +24 +561 +62 +62 +36 +130 +751 +3096 +3096 +3096 +56 +89 +113 +0 +2 +415 +583 +782 +54 +782 +73 +0 +3694 +2 +25 +2323 +2323 +2323 +4066 +3019 +428 +428 +428 +0 +70 +70 +117 +117 +117 +74 +3561 +3561 +3561 +1 +1 +1 +3258 +3258 +3258 +0 +0 +2345 +2345 +2345 +3744 +3744 +3744 +413 +443 +144 +42 +1428 +1428 +1428 +345 +231 +27 +4527 +4527 +4527 +682 +410 +3710 +3710 +3710 +48 +380 +97 +3301 +3301 +3301 +549 +0 +71 +1558 +1558 +1558 +1273 +688 +107 +2967 +423 +0 +1625 +163 +3071 +33 +364 +2410 +3211 +3211 +3211 +2259 +31 +1084 +1084 +1084 +58 +0 +2181 +2181 +2181 +44 +287 +38 +1 +39 +26 +26 +3440 +3440 +3440 +3313 +29 +148 +148 +148 +2955 +2955 +2955 +2213 +61 +68 +27 +155 +21 +2 +92 +47 +1 +3823 +305 +683 +683 +683 +4 +21 +2029 +1 +20 +4772 +4772 +4772 +52 +65 +2253 +38 +181 +209 +1843 +1843 +1843 +45 +859 +32 +125 +2983 +2983 +2983 +28 +4108 +4108 +4108 +1963 +170 +32 +1 +1354 +86 +1459 +1459 +1459 +23 +0 +56 +84 +26 +34 +66 +319 +32 +1018 +73 +3526 +3526 +3526 +28 +271 +2042 +2042 +2042 +489 +341 +1 +26 +81 +48 +4077 +4077 +4077 +32 +0 +32 +689 +0 +1005 +31 +4245 +1 +0 +2 +3368 +3368 +3368 +4407 +170 +3135 +849 +222 +128 +41 +222 +222 +222 +32 +1868 +1868 +1868 +140 +547 +1004 +111 +24 +424 +3508 +3508 +3508 +1046 +1046 +1046 +2326 +2326 +2326 +2395 +42 +95 +142 +229 +304 +0 +368 +262 +262 +262 +80 +20 +28 +148 +57 +48 +46 +3488 +3488 +3488 +36 +30 +43 +816 +2928 +1523 +40 +907 +22 +3764 +3575 +3575 +3575 +222 +3 +275 +371 +773 +4866 +4866 +4866 +1243 +1128 +4190 +4190 +4190 +6 +35 +135 +138 +206 +1754 +22 +21 +241 +278 +1273 +6 +171 +22 +274 +1575 +1575 +1575 +403 +2650 +2650 +2650 +314 +1969 +310 +190 +163 +1346 +405 +167 +2370 +2370 +2370 +135 +65 +31 +895 +1740 +0 +0 +339 +0 +79 +4672 +4672 +4672 +1421 +921 +452 +1182 +372 +0 +763 +4158 +4158 +4158 +38 +946 +177 +1919 +1100 +4265 +4265 +4265 +1869 +48 +511 +511 +511 +2300 +589 +372 +372 +372 +2261 +64 +24 +0 +2373 +2373 +2373 +533 +2995 +2995 +2995 +110 +141 +123 +648 +123 +910 +31 +0 +518 +1156 +3056 +44 +142 +99 +99 +99 +131 +4185 +4185 +4185 +1593 +746 +94 +268 +2684 +2684 +2684 +415 +38 +140 +149 +424 +1388 +24 +2742 +160 +1 +1 +577 +136 +925 +925 +925 +25 +661 +79 +1086 +383 +1 +4570 +4570 +4570 +55 +3347 +3 +26 +376 +14 +2734 +2734 +2734 +193 +193 +193 +1398 +1398 +1398 +805 +3918 +3918 +3918 +1680 +178 +196 +2765 +2765 +2765 +1146 +500 +853 +4969 +4969 +4969 +3209 +3993 +3993 +3993 +264 +60 +4544 +372 +2627 +2627 +2627 +2 +1 +2305 +2305 +2305 +365 +4552 +4552 +4552 +217 +3825 +3825 +3825 +2573 +2573 +2573 +3088 +3088 +3088 +106 +205 +3280 +3280 +3280 +4942 +4942 +4942 +83 +2798 +2798 +2798 +16 +868 +868 +868 +938 +30 +22 +23 +809 +95 +84 +70 +261 +894 +3556 +3556 +3556 +390 +4179 +4179 +4179 +3861 +3861 +3861 +2 +1010 +1010 +1010 +175 +21 +3778 +3778 +3778 +405 +156 +8 +4905 +4905 +4905 +2027 +2027 +2027 +947 +38 +30 +1677 +1677 +1677 +2 +135 +1992 +1992 +1992 +1633 +170 +859 +85 +742 +634 +634 +634 +107 +22 +132 +9 +189 +47 +33 +2881 +763 +2971 +2971 +2971 +1826 +147 +314 +314 +314 +55 +62 +681 +96 +1475 +0 +3 +109 +847 +4626 +4626 +4626 +4941 +4941 +4941 +28 +47 +4682 +4682 +4682 +1273 +0 +81 +172 +24 +337 +2 +1937 +115 +157 +96 +914 +3147 +3147 +3147 +106 +142 +859 +7 +511 +1519 +1519 +1519 +4666 +4666 +4666 +309 +365 +63 +24 +429 +3441 +3441 +3441 +2034 +2034 +2034 +2358 +51 +80 +20 +3077 +1032 +3398 +3398 +3398 +1259 +888 +269 +600 +64 +643 +232 +4860 +4860 +4860 +615 +45 +3180 +3180 +3180 +159 +159 +159 +3465 +3465 +3465 +915 +2001 +2018 +1519 +38 +2050 +2050 +2050 +764 +4974 +4974 +4974 +4302 +4302 +4302 +1551 +1551 +1551 +30 +21 +67 +67 +67 +3451 +3451 +3451 +3834 +3834 +3834 +2 +0 +0 +365 +1540 +1540 +1540 +24 +336 +2642 +2642 +2642 +175 +163 +470 +0 +31 +908 +103 +27 +108 +80 +3291 +3291 +3291 +273 +293 +111 +1350 +447 +96 +247 +40 +0 +3285 +3285 +3285 +119 +96 +0 +31 +29 +127 +2786 +2786 +2786 +438 +241 +42 +1236 +1236 +1236 +1962 +636 +704 +21 +305 +126 +119 +256 +2081 +590 +1351 +4962 +4962 +4962 +214 +580 +1668 +1668 +1668 +4258 +4258 +4258 +1 +228 +228 +228 +1 +129 +2842 +23 +58 +110 +4204 +180 +134 +3235 +3235 +3235 +2087 +77 +161 +142 +65 +72 +68 +1089 +3286 +3286 +3286 +135 +1627 +1818 +2047 +36 +1 +112 +112 +112 +124 +0 +72 +855 +855 +855 +3170 +3170 +3170 +1668 +1668 +1668 +698 +517 +108 +39 +36 +0 +60 +54 +2811 +300 +4 +1586 +599 +243 +1762 +0 +969 +969 +969 +26 +555 +555 +555 +1 +492 +206 +308 +105 +3291 +3291 +3291 +883 +2753 +0 +342 +138 +190 +21 +4298 +4298 +4298 +48 +105 +122 +622 +171 +3149 +1 +2731 +115 +2928 +2928 +2928 +4258 +4258 +4258 +3270 +3270 +3270 +1298 +2227 +34 +2295 +65 +36 +36 +142 +256 +1937 +650 +1497 +25 +259 +55 +219 +212 +212 +212 +0 +365 +2816 +2816 +2816 +319 +56 +4191 +4191 +4191 +301 +134 +272 +620 +1355 +1347 +151 +2859 +1 +559 +215 +1097 +9 +251 +1972 +1972 +1972 +110 +3108 +3108 +3108 +533 +2424 +3511 +138 +56 +105 +1 +3642 +3642 +3642 +180 +1 +39 +139 +656 +346 +2484 +1 +1691 +1691 +1691 +38 +37 +3299 +3299 +3299 +374 +1 +2211 +2211 +2211 +2245 +4258 +4258 +4258 +365 +43 +25 +2072 +1751 +12 +81 +367 +129 +3883 +3883 +3883 +2803 +2 +1 +32 +42 +241 +1075 +112 +179 +4654 +4654 +4654 +56 +588 +225 +351 +44 +1029 +453 +3402 +3402 +3402 +369 +4654 +4654 +4654 +3281 +3281 +3281 +106 +3850 +4302 +4302 +4302 +471 +0 +976 +976 +976 +2725 +2372 +2372 +2372 +201 +585 +547 +99 +134 +252 +437 +85 +3167 +651 +2913 +38 +95 +857 +857 +857 +27 +34 +2152 +1462 +591 +3446 +3446 +3446 +1789 +112 +2193 +2193 +2193 +887 +605 +4889 +4889 +4889 +3286 +3286 +3286 +1331 +1569 +1569 +1569 +1 +1725 +366 +734 +4018 +4018 +4018 +11 +2411 +2411 +2411 +1990 +3811 +1096 +51 +126 +0 +36 +999 +3596 +3596 +3596 +154 +376 +1043 +226 +330 +3965 +3965 +3965 +365 +4877 +4877 +4877 +3880 +3880 +3880 +292 +1898 +1898 +1898 +2870 +169 +4997 +4997 +4997 +21 +3535 +3535 +3535 +30 +3809 +364 +338 +3521 +3521 +3521 +285 +49 +1913 +640 +1408 +259 +144 +1026 +164 +3591 +3591 +3591 +369 +4524 +4524 +4524 +1438 +1438 +1438 +704 +704 +704 +609 +67 +358 +2973 +2973 +2973 +63 +299 +3277 +3277 +3277 +306 +3582 +16 +3970 +3970 +3970 +1013 +1013 +1013 +1410 +1410 +1410 +376 +2963 +88 +579 +2174 +2174 +2174 +87 +59 +2875 +549 +966 +155 +362 +38 +37 +1 +1 +169 +45 +883 +1050 +29 +116 +1778 +1013 +1013 +1013 +71 +66 +1687 +47 +482 +1098 +22 +2849 +1256 +1256 +1256 +276 +73 +175 +225 +20 +84 +382 +770 +1601 +1601 +1601 +2085 +4028 +4028 +4028 +3255 +3255 +3255 +62 +664 +664 +664 +369 +0 +1325 +4158 +4158 +4158 +35 +6 +1 +0 +2891 +2891 +2891 +32 +422 +928 +18 +3963 +3963 +3963 +94 +2848 +2848 +2848 +758 +1 +2901 +2901 +2901 +335 +0 +799 +21 +1820 +1820 +1820 +4 +3980 +3980 +3980 +3253 +3253 +3253 +186 +1745 +44 +4355 +4355 +4355 +0 +1992 +1992 +1992 +1013 +456 +0 +42 +152 +758 +758 +758 +1548 +83 +67 +44 +54 +680 +3039 +3039 +3039 +45 +1276 +33 +1733 +1772 +90 +1010 +25 +2343 +2343 +2343 +1688 +105 +2972 +2972 +2972 +0 +648 +694 +694 +694 +1011 +1 +326 +15 +312 +2877 +1799 +3543 +3543 +3543 +97 +868 +163 +3713 +3713 +3713 +27 +328 +4490 +186 +1404 +4709 +514 +2146 +654 +337 +243 +559 +582 +1124 +3203 +3203 +3203 +814 +28 +1733 +1733 +1733 +0 +3885 +3885 +3885 +557 +1796 +1832 +2484 +2484 +2484 +186 +3998 +3998 +3998 +69 +3223 +139 +137 +1762 +1 +298 +158 +0 +2022 +3123 +3123 +3123 +31 +242 +25 +3039 +3039 +3039 +2822 +2822 +2822 +747 +156 +3269 +2289 +3670 +3670 +3670 +4412 +4412 +4412 +3870 +293 +460 +53 +660 +4 +2561 +3257 +3257 +3257 +2119 +2119 +2119 +90 +216 +62 +29 +2272 +0 +151 +49 +106 +43 +2 +774 +27 +217 +540 +34 +118 +0 +67 +27 +140 +0 +3576 +3576 +3576 +3659 +3659 +3659 +640 +1587 +32 +4459 +4459 +4459 +175 +4768 +4768 +4768 +242 +1323 +1 +128 +34 +1834 +1834 +1834 +0 +2438 +2095 +1806 +30 +62 +4784 +4784 +4784 +3045 +3045 +3045 +3316 +3316 +3316 +4495 +4495 +4495 +4116 +4116 +4116 +63 +1611 +1611 +1611 +49 +74 +0 +20 +621 +94 +289 +20 +64 +84 +31 +74 +23 +500 +3435 +3435 +3435 +516 +1485 +0 +123 +955 +1485 +232 +138 +59 +23 +58 +545 +30 +2376 +119 +424 +0 +264 +1065 +3412 +2 +93 +48 +1781 +381 +1 +40 +2623 +2623 +2623 +4968 +4968 +4968 +141 +21 +727 +727 +727 +1097 +1097 +1097 +61 +0 +21 +274 +1092 +1092 +1092 +4007 +21 +358 +358 +358 +606 +260 +20 +2295 +8 +2337 +2337 +2337 +120 +60 +4172 +3 +0 +31 +3223 +0 +0 +0 +848 +332 +3015 +275 +1105 +0 +3335 +3335 +3335 +57 +1500 +21 +53 +61 +814 +2483 +2483 +2483 +2155 +32 +1 +77 +1 +4314 +4314 +4314 +108 +828 +21 +4 +252 +1802 +72 +264 +169 +4609 +4609 +4609 +1054 +31 +30 +2474 +32 +13 +186 +3373 +3373 +3373 +0 +672 +976 +976 +976 +31 +50 +4863 +4863 +4863 +4029 +665 +665 +665 +353 +723 +1 +2956 +86 +26 +365 +1 +2232 +0 +2319 +2319 +2319 +298 +34 +42 +72 +56 +2935 +91 +147 +0 +151 +438 +468 +404 +202 +766 +26 +34 +68 +35 +43 +83 +0 +3297 +3297 +3297 +0 +177 +3229 +4142 +4142 +4142 +184 +31 +1 +2192 +2192 +2192 +31 +4803 +4803 +4803 +2780 +1608 +60 +4509 +4509 +4509 +23 +23 +23 +1 +135 +781 +35 +181 +380 +152 +416 +1513 +1513 +1513 +24 +1 +827 +376 +762 +119 +32 +2199 +206 +206 +206 +4854 +4854 +4854 +137 +2582 +2582 +2582 +60 +310 +93 +0 +1876 +54 +329 +329 +329 +310 +40 +3690 +3690 +3690 +35 +0 +2230 +2230 +2230 +4422 +4422 +4422 +35 +744 +5 +4388 +4388 +4388 +48 +724 +43 +3432 +67 +281 +4754 +4754 +4754 +3 +9 +764 +336 +351 +651 +178 +147 +699 +55 +395 +38 +2000 +23 +1253 +1253 +1253 +155 +3161 +33 +0 +34 +0 +122 +2013 +3297 +3297 +3297 +1880 +3442 +3442 +3442 +1552 +1552 +1552 +26 +322 +31 +525 +313 +2528 +2528 +2528 +1464 +2485 +2485 +2485 +2177 +25 +0 +4803 +4803 +4803 +28 +1 +35 +2289 +2289 +2289 +574 +36 +1831 +55 +26 +2240 +3 +408 +22 +31 +1172 +24 +33 +31 +136 +1057 +0 +2228 +33 +28 +2 +4391 +4391 +4391 +32 +50 +31 +64 +1048 +4149 +4149 +4149 +0 +36 +40 +31 +61 +1524 +1524 +1524 +332 +1904 +36 +28 +3 +3621 +3621 +3621 +805 +86 +28 +498 +2900 +2900 +2900 +4963 +4963 +4963 +273 +2557 +27 +89 +51 +37 +62 +682 +1934 +160 +1 +33 +264 +3985 +3985 +3985 +47 +303 +970 +970 +970 +2249 +0 +59 +31 +22 +121 +4357 +4357 +4357 +419 +2803 +1 +26 +2 +89 +47 +124 +160 +38 +720 +720 +720 +47 +2644 +2927 +2927 +2927 +457 +365 +365 +365 +1385 +369 +1871 +288 +624 +315 +1090 +29 +2 +83 +1336 +488 +85 +75 +15 +0 +24 +461 +897 +21 +29 +62 +377 +194 +700 +4974 +4974 +4974 +102 +104 +789 +1186 +1186 +1186 +2681 +20 +443 +443 +443 +30 +100 +148 +1569 +1569 +1569 +672 +3748 +3748 +3748 +62 +62 +62 +24 +367 +313 +3783 +3783 +3783 +32 +0 +1 +108 +31 +140 +4 +6 +366 +80 +24 +33 +62 +569 +1 +281 +6 +454 +4045 +4045 +4045 +2300 +4433 +4433 +4433 +964 +180 +150 +37 +63 +3827 +3827 +3827 +2074 +2 +34 +26 +446 +852 +155 +243 +90 +1309 +2283 +170 +71 +94 +2342 +2342 +2342 +3116 +3116 +3116 +347 +780 +780 +780 +130 +836 +836 +836 +455 +3283 +3283 +3283 +111 +2 +3424 +0 +0 +22 +0 +526 +20 +734 +68 +302 +94 +107 +1031 +1031 +1031 +2071 +590 +4133 +4133 +4133 +890 +67 +22 +21 +2954 +2885 +2308 +37 +40 +135 +34 +1 +160 +29 +1292 +1292 +1292 +150 +4550 +4550 +4550 +20 +1145 +1 +1 +2728 +138 +42 +30 +1544 +2451 +2451 +2451 +1352 +1352 +1352 +121 +32 +2266 +3377 +3377 +3377 +65 +310 +33 +156 +61 +34 +41 +26 +31 +3679 +2 +1307 +120 +37 +41 +1803 +1803 +1803 +30 +196 +26 +2 +2630 +2630 +2630 +958 +811 +113 +20 +36 +97 +394 +907 +1122 +59 +227 +4401 +4401 +4401 +4975 +4975 +4975 +4129 +4129 +4129 +4386 +4386 +4386 +2039 +122 +37 +0 +3047 +3047 +3047 +2448 +2448 +2448 +4003 +125 +138 +2542 +2542 +2542 +37 +0 +3068 +32 +128 +128 +128 +538 +178 +0 +1767 +1767 +1767 +2569 +2569 +2569 +3057 +3770 +3770 +3770 +852 +0 +1564 +30 +52 +776 +69 +4562 +4562 +4562 +3517 +3517 +3517 +45 +23 +1 +607 +0 +4924 +4924 +4924 +0 +1496 +119 +471 +43 +779 +1124 +1124 +1124 +2487 +4511 +4511 +4511 +30 +392 +35 +126 +19 +43 +86 +36 +2 +1944 +53 +89 +89 +89 +124 +4 +4487 +4487 +4487 +412 +94 +78 +116 +2343 +2343 +2343 +851 +53 +1596 +1596 +1596 +401 +401 +401 +2194 +33 +471 +158 +26 +125 +1034 +9 +32 +45 +425 +60 +4580 +4580 +4580 +53 +21 +3008 +3008 +3008 +2275 +2275 +2275 +30 +38 +25 +148 +148 +148 +171 +3031 +3031 +3031 +480 +66 +236 +4546 +4546 +4546 +39 +4507 +4507 +4507 +31 +0 +1140 +1140 +1140 +2609 +3 +207 +60 +31 +3974 +50 +58 +479 +479 +479 +68 +244 +1 +91 +0 +262 +2366 +2366 +2366 +54 +84 +132 +30 +20 +0 +71 +451 +1900 +1865 +1247 +1247 +1247 +353 +353 +353 +2439 +1 +630 +4191 +4191 +4191 +367 +4893 +4893 +4893 +44 +20 +4952 +4952 +4952 +50 +1739 +23 +2989 +2989 +2989 +242 +0 +732 +10 +2258 +1 +128 +35 +1020 +1020 +1020 +748 +57 +69 +367 +108 +534 +1519 +2 +73 +2699 +219 +694 +694 +694 +7 +2065 +3492 +3492 +3492 +2381 +228 +873 +4220 +4220 +4220 +1464 +0 +830 +20 +4285 +4285 +4285 +1001 +4353 +4353 +4353 +380 +439 +492 +719 +802 +81 +333 +900 +896 +3391 +26 +4554 +4554 +4554 +4566 +4566 +4566 +377 +513 +0 +121 +88 +2 +1438 +3819 +3819 +3819 +249 +4834 +4834 +4834 +108 +102 +3659 +3659 +3659 +3604 +3604 +3604 +182 +447 +520 +1542 +1542 +1542 +4479 +4479 +4479 +5 +21 +137 +812 +812 +812 +23 +84 +45 +1 +2305 +60 +3100 +3100 +3100 +0 +411 +3149 +54 +29 +366 +43 +0 +3464 +3049 +3049 +3049 +498 +4567 +4567 +4567 +519 +22 +50 +544 +218 +139 +3105 +366 +148 +4705 +4705 +4705 +100 +839 +4576 +4576 +4576 +166 +1181 +516 +378 +2065 +30 +3512 +3512 +3512 +1378 +27 +3799 +3799 +3799 +29 +0 +0 +365 +2012 +722 +37 +588 +876 +3721 +3721 +3721 +1668 +3315 +3315 +3315 +112 +428 +129 +4150 +4150 +4150 +422 +4378 +3584 +505 +2 +7 +477 +191 +4829 +4829 +4829 +852 +108 +834 +58 +366 +799 +4932 +4932 +4932 +0 +32 +10 +0 +172 +2315 +68 +61 +84 +365 +57 +163 +35 +4623 +4623 +4623 +74 +291 +27 +357 +2 +2749 +2749 +2749 +1 +30 +145 +1638 +1 +4297 +4297 +4297 +4641 +4641 +4641 +1793 +1605 +1605 +1605 +574 +39 +3297 +3297 +3297 +35 +582 +57 +944 +944 +944 +366 +2122 +2122 +2122 +24 +2003 +280 +40 +4 +28 +938 +29 +81 +343 +361 +361 +361 +1165 +1165 +1165 +2 +1953 +3835 +3835 +3835 +240 +0 +3889 +3889 +3889 +209 +2671 +20 +509 +20 +366 +506 +58 +36 +4125 +4125 +4125 +142 +1903 +51 +72 +1644 +1602 +1512 +1512 +1512 +94 +180 +4103 +121 +356 +1 +1258 +1258 +1258 +108 +4557 +4557 +4557 +3645 +97 +3043 +3043 +3043 +0 +1614 +58 +3431 +3425 +196 +464 +212 +809 +82 +4261 +4261 +4261 +1206 +1206 +1206 +140 +14 +0 +196 +4 +179 +143 +143 +143 +4351 +4959 +4959 +4959 +28 +29 +116 +2936 +4112 +4112 +4112 +870 +112 +112 +112 +71 +4190 +4190 +4190 +572 +341 +23 +4537 +4537 +4537 +1953 +213 +31 +173 +0 +3389 +292 +1 +152 +31 +235 +2990 +2990 +2990 +4897 +4897 +4897 +856 +366 +20 +536 +161 +187 +20 +500 +500 +500 +25 +34 +1163 +4620 +4620 +4620 +21 +2998 +96 +296 +296 +296 +787 +11 +1 +95 +2725 +2725 +2725 +138 +3756 +3756 +3756 +38 +124 +217 +3300 +3300 +3300 +4096 +4096 +4096 +2419 +2419 +2419 +249 +0 +186 +26 +1 +5 +7 +1492 +1492 +1492 +2664 +2664 +2664 +90 +962 +2411 +32 +34 +0 +772 +1673 +2500 +2500 +2500 +4097 +4097 +4097 +120 +343 +961 +1648 +26 +47 +311 +21 +105 +26 +297 +297 +297 +223 +1312 +518 +120 +1655 +1655 +1655 +1462 +21 +2332 +2332 +2332 +1564 +1564 +1564 +1 +10 +56 +1951 +1951 +1951 +2326 +2326 +2326 +487 +1976 +1976 +1976 +123 +121 +98 +2592 +2592 +2592 +345 +80 +1745 +1745 +1745 +25 +1594 +98 +2894 +253 +3907 +3907 +3907 +81 +29 +678 +4653 +4653 +4653 +22 +34 +389 +24 +963 +148 +22 +3786 +3786 +3786 +2629 +2629 +2629 +37 +45 +22 +31 +28 +27 +4185 +4185 +4185 +1 +4341 +4341 +4341 +489 +605 +81 +2 +1083 +3 +365 +31 +1458 +1458 +1458 +111 +1620 +453 +2841 +2841 +2841 +168 +219 +2439 +700 +700 +700 +1 +49 +4851 +4851 +4851 +139 +0 +2649 +2649 +2649 +4199 +4199 +4199 +85 +4 +645 +29 +305 +264 +112 +27 +2799 +262 +171 +38 +366 +1 +0 +78 +50 +595 +43 +116 +470 +2744 +2744 +2744 +1298 +4651 +4651 +4651 +282 +2049 +107 +69 +2422 +131 +130 +73 +137 +729 +2458 +40 +8 +559 +3655 +3655 +3655 +3497 +154 +327 +94 +2391 +2391 +2391 +475 +2432 +128 +329 +2449 +368 +3916 +3916 +3916 +3620 +3620 +3620 +29 +0 +949 +137 +66 +581 +3609 +55 +1310 +160 +175 +2121 +2121 +2121 +57 +2894 +2894 +2894 +2550 +2550 +2550 +389 +33 +246 +52 +31 +299 +513 +1714 +21 +108 +210 +1684 +1684 +1684 +20 +36 +857 +4210 +78 +498 +344 +1518 +271 +550 +23 +4621 +4621 +4621 +375 +364 +4996 +4996 +4996 +1086 +3636 +3636 +3636 +516 +3443 +3443 +3443 +37 +123 +24 +65 +600 +22 +92 +0 +369 +57 +31 +0 +125 +4 +49 +158 +93 +37 +516 +3174 +38 +2187 +2187 +2187 +4765 +4765 +4765 +188 +1 +2 +1385 +726 +726 +726 +171 +4640 +4640 +4640 +496 +424 +594 +29 +1016 +1778 +2867 +2867 +2867 +804 +6 +308 +3611 +3611 +3611 +789 +789 +789 +2786 +2786 +2786 +641 +138 +1206 +317 +219 +47 +14 +3227 +3227 +3227 +314 +3149 +2757 +30 +59 +16 +3295 +3295 +3295 +367 +2315 +46 +550 +1035 +1035 +1035 +218 +3987 +3987 +3987 +67 +1098 +3817 +3817 +3817 +2517 +573 +185 +133 +244 +244 +244 +1785 +102 +367 +30 +147 +248 +1191 +1191 +1191 +89 +0 +4379 +4379 +4379 +59 +59 +59 +235 +30 +3991 +116 +302 +1 +316 +20 +1016 +701 +701 +701 +1096 +3992 +3992 +3992 +0 +317 +1 +297 +297 +297 +31 +3607 +3607 +3607 +21 +153 +732 +4091 +4091 +4091 +21 +0 +27 +1 +54 +292 +150 +8 +253 +69 +1 +3565 +3565 +3565 +1796 +1796 +1796 +512 +2996 +86 +287 +321 +2529 +3267 +3267 +3267 +2898 +2898 +2898 +38 +40 +125 +388 +2251 +2251 +2251 +1108 +69 +132 +2672 +0 +3654 +3654 +3654 +3858 +3858 +3858 +287 +4488 +4488 +4488 +113 +141 +1 +31 +2259 +2259 +2259 +51 +63 +3235 +3235 +3235 +1 +4137 +4137 +4137 +2919 +2610 +2610 +2610 +2816 +2816 +2816 +32 +1 +4 +84 +1594 +3614 +3614 +3614 +30 +32 +3224 +3224 +3224 +55 +2443 +2443 +2443 +54 +1294 +1294 +1294 +221 +28 +146 +317 +317 +317 +1783 +4355 +4355 +4355 +914 +126 +151 +168 +345 +692 +637 +637 +637 +2986 +2986 +2986 +230 +338 +43 +269 +4350 +4350 +4350 +23 +226 +0 +120 +23 +0 +24 +20 +505 +31 +4371 +4371 +4371 +1 +61 +3117 +3117 +3117 +394 +973 +973 +973 +213 +4140 +4140 +4140 +30 +85 +2003 +636 +31 +390 +537 +52 +198 +254 +1 +189 +4641 +4641 +4641 +4273 +4273 +4273 +299 +139 +1098 +128 +128 +128 +685 +6 +22 +0 +52 +2069 +2069 +2069 +100 +4729 +4729 +4729 +620 +554 +1399 +96 +209 +209 +209 +63 +1 +207 +289 +988 +358 +1 +25 +679 +679 +679 +20 +1 +28 +35 +1037 +1379 +2180 +32 +365 +22 +22 +3968 +3968 +3968 +62 +665 +206 +94 +4670 +4670 +4670 +98 +212 +2947 +2 +38 +38 +38 +668 +0 +418 +2000 +2000 +2000 +4013 +4013 +4013 +337 +4417 +4417 +4417 +79 +1415 +1415 +1415 +3927 +3927 +3927 +2168 +2168 +2168 +20 +30 +96 +580 +1100 +221 +4040 +4040 +4040 +0 +2577 +2101 +2 +249 +1104 +488 +95 +0 +2042 +43 +0 +36 +4404 +4404 +4404 +44 +1 +653 +550 +550 +550 +37 +2898 +2898 +2898 +1861 +1861 +1861 +3287 +196 +35 +104 +30 +3653 +4015 +4015 +4015 +2601 +800 +49 +140 +106 +28 +54 +228 +44 +1844 +33 +35 +0 +135 +2 +96 +713 +5 +94 +3807 +3807 +3807 +26 +2175 +29 +41 +4600 +4600 +4600 +110 +358 +21 +53 +0 +104 +4332 +4332 +4332 +24 +42 +341 +21 +624 +918 +3 +22 +21 +42 +322 +322 +322 +1867 +0 +922 +922 +922 +3750 +3750 +3750 +452 +452 +452 +1675 +0 +27 +608 +2818 +575 +575 +575 +0 +0 +1387 +1387 +1387 +175 +121 +0 +4361 +4361 +4361 +749 +368 +366 +2602 +2602 +2602 +3232 +4705 +4705 +4705 +3296 +0 +1199 +21 +1768 +1768 +1768 +1 +3796 +3796 +3796 +156 +2577 +235 +20 +4052 +4052 +4052 +0 +4 +249 +77 +77 +77 +415 +115 +0 +281 +1 +2095 +371 +355 +3752 +3752 +3752 +26 +185 +342 +27 +6 +32 +1 +365 +37 +0 +0 +5 +2379 +2379 +2379 +0 +233 +4 +3774 +3774 +3774 +139 +680 +3366 +96 +96 +96 +1057 +230 +4636 +4636 +4636 +1784 +31 +3263 +3263 +3263 +4568 +4568 +4568 +1946 +1356 +4785 +4785 +4785 +120 +31 +48 +244 +1466 +354 +0 +1436 +41 +29 +3966 +3966 +3966 +4359 +4359 +4359 +49 +365 +4552 +4552 +4552 +31 +3 +30 +294 +49 +1234 +38 +820 +1481 +1481 +1481 +465 +79 +770 +2264 +2264 +2264 +21 +40 +309 +25 +100 +3014 +3014 +3014 +80 +34 +4668 +4668 +4668 +140 +34 +74 +31 +149 +48 +3710 +152 +1 +2157 +445 +30 +2061 +701 +282 +0 +206 +2 +0 +804 +28 +2987 +2987 +2987 +0 +34 +4704 +4704 +4704 +0 +147 +2874 +1 +710 +3700 +396 +40 +50 +163 +1766 +75 +824 +1 +31 +85 +51 +3339 +3023 +1099 +209 +60 +40 +2 +4480 +4480 +4480 +93 +2262 +2262 +2262 +33 +0 +71 +32 +1571 +2258 +11 +32 +31 +25 +1800 +267 +445 +0 +54 +337 +28 +1 +20 +91 +180 +53 +33 +23 +24 +478 +1 +4783 +4783 +4783 +23 +22 +12 +523 +3331 +3331 +3331 +33 +4307 +4307 +4307 +26 +3442 +3442 +3442 +2 +214 +24 +35 +80 +105 +0 +13 +104 +1 +2241 +42 +2585 +2585 +2585 +0 +2302 +145 +23 +96 +0 +33 +27 +32 +1836 +0 +369 +287 +396 +581 +148 +199 +40 +47 +23 +0 +70 +3 +2494 +2494 +2494 +3199 +1 +31 +0 +240 +87 +1468 +2 +3347 +3347 +3347 +204 +20 +1076 +21 +35 +4288 +4288 +4288 +33 +100 +190 +2774 +179 +1 +22 +57 +2004 +2004 +2004 +114 +2 +3636 +3636 +3636 +20 +1 +91 +3824 +3824 +3824 +25 +350 +3362 +3362 +3362 +22 +3312 +4797 +4797 +4797 +2184 +981 +3516 +3516 +3516 +279 +31 +32 +25 +125 +68 +0 +1219 +113 +34 +25 +0 +0 +3203 +2082 +166 +4881 +4881 +4881 +4016 +4016 +4016 +59 +533 +1451 +1451 +1451 +4160 +4160 +4160 +27 +97 +32 +4058 +4058 +4058 +414 +49 +421 +89 +31 +74 +911 +3898 +3898 +3898 +3423 +3423 +3423 +1 +39 +28 +1901 +197 +86 +47 +2359 +2359 +2359 +4159 +4159 +4159 +26 +35 +25 +30 +410 +31 +68 +1920 +1920 +1920 +22 +866 +22 +4865 +4865 +4865 +2776 +3256 +3256 +3256 +32 +30 +64 +577 +31 +1 +1123 +1123 +1123 +23 +3415 +3415 +3415 +1139 +1139 +1139 +0 +4792 +4792 +4792 +4822 +4822 +4822 +805 +95 +1369 +1369 +1369 +3957 +3957 +3957 +27 +61 +46 +1080 +1080 +1080 +4243 +4243 +4243 +870 +3 +98 +98 +98 +3993 +3993 +3993 +1273 +1273 +1273 +0 +1939 +25 +4516 +4516 +4516 +140 +1 +209 +4384 +4384 +4384 +90 +31 +1545 +25 +3 +1 +27 +2198 +37 +1889 +1 +115 +443 +992 +276 +812 +5 +29 +300 +43 +43 +43 +1036 +134 +3152 +3152 +3152 +3 +365 +884 +3764 +3764 +3764 +31 +86 +547 +2194 +43 +2993 +2993 +2993 +70 +361 +1232 +528 +0 +867 +95 +3212 +669 +705 +4522 +4522 +4522 +1918 +374 +21 +134 +1 +237 +3107 +3107 +3107 +0 +128 +107 +286 +126 +0 +18 +61 +45 +45 +45 +232 +2077 +2077 +2077 +178 +2675 +2823 +2823 +2823 +1105 +0 +76 +22 +39 +915 +36 +6 +10 +959 +0 +37 +3820 +2008 +10 +60 +23 +209 +1076 +0 +4336 +10 +4696 +4696 +4696 +238 +115 +3787 +21 +77 +0 +4849 +4523 +4523 +4523 +3811 +3811 +3811 +38 +0 +31 +3894 +3894 +3894 +299 +511 +1938 +1938 +1938 +4818 +4818 +4818 +8 +1353 +1353 +1353 +740 +2669 +2669 +2669 +102 +264 +514 +4359 +4359 +4359 +148 +29 +2490 +2490 +2490 +54 +31 +1 +38 +51 +32 +1602 +25 +885 +148 +3639 +3639 +3639 +135 +135 +135 +231 +3 +182 +1374 +1374 +1374 +2692 +2692 +2692 +1213 +1213 +1213 +30 +53 +3905 +3905 +3905 +462 +34 +3 +366 +366 +366 +3839 +3839 +3839 +31 +6 +0 +4225 +4225 +4225 +2726 +1946 +67 +258 +4412 +4412 +4412 +3482 +3482 +3482 +365 +3278 +3278 +3278 +76 +55 +1997 +1997 +1997 +365 +565 +125 +841 +841 +841 +45 +3404 +3404 +3404 +184 +2344 +4511 +4511 +4511 +223 +56 +2 +33 +365 +31 +2675 +3 +71 +2741 +2741 +2741 +0 +4935 +4935 +4935 +21 +690 +56 +3709 +3709 +3709 +481 +481 +481 +55 +162 +361 +1107 +2999 +2999 +2999 +106 +16 +38 +559 +1 +24 +2556 +905 +31 +106 +387 +192 +8 +4101 +3479 +3479 +3479 +101 +0 +230 +0 +58 +2424 +2424 +2424 +72 +3429 +3429 +3429 +554 +52 +70 +0 +28 +169 +4193 +4193 +4193 +3 +36 +248 +9 +4193 +4193 +4193 +4526 +4526 +4526 +0 +43 +228 +524 +144 +144 +144 +650 +741 +31 +567 +30 +368 +169 +4459 +40 +184 +2241 +1260 +793 +90 +1160 +0 +47 +345 +514 +62 +1262 +1495 +3475 +3475 +3475 +3075 +221 +90 +25 +51 +55 +38 +746 +39 +869 +24 +33 +0 +595 +3883 +3883 +3883 +71 +1256 +1256 +1256 +238 +293 +528 +2 +368 +75 +1146 +4726 +4726 +4726 +163 +106 +452 +3873 +3873 +3873 +46 +25 +184 +26 +1363 +1996 +78 +30 +641 +380 +62 +733 +235 +53 +0 +90 +163 +145 +52 +24 +2266 +128 +25 +98 +206 +834 +239 +372 +34 +164 +537 +88 +151 +0 +1639 +1639 +1639 +27 +20 +60 +4560 +4560 +4560 +78 +1 +0 +40 +0 +44 +32 +413 +22 +158 +115 +21 +1504 +1504 +1504 +546 +546 +546 +471 +180 +180 +180 +0 +2433 +40 +3850 +3850 +3850 +4440 +4440 +4440 +1036 +20 +60 +3332 +3332 +3332 +1151 +1151 +1151 +115 +24 +46 +63 +2948 +105 +0 +610 +229 +229 +229 +0 +88 +169 +123 +407 +136 +862 +2905 +2905 +2905 +0 +480 +391 +30 +5 +190 +17 +266 +52 +76 +196 +367 +28 +366 +2 +60 +1 +2270 +259 +135 +1436 +365 +55 +338 +0 +70 +580 +46 +532 +29 +96 +91 +91 +31 +22 +71 +71 +71 +40 +4145 +4145 +4145 +22 +365 +184 +1360 +176 +1 +122 +991 +80 +4386 +4386 +4386 +3278 +58 +181 +21 +832 +37 +4283 +4283 +4283 +156 +3153 +34 +125 +276 +33 +3869 +3869 +3869 +496 +318 +88 +1370 +0 +4601 +4601 +4601 +75 +65 +3175 +3175 +3175 +58 +525 +1483 +365 +565 +1307 +184 +26 +4640 +4640 +4640 +4333 +4333 +4333 +3 +4645 +4645 +4645 +1844 +434 +1659 +1659 +1659 +1 +952 +952 +952 +2923 +51 +3579 +3579 +3579 +1240 +28 +23 +1871 +49 +874 +366 +53 +123 +0 +1 +3816 +25 +36 +888 +3099 +41 +597 +1518 +1518 +1518 +562 +0 +28 +21 +3954 +3954 +3954 +148 +188 +30 +54 +520 +53 +2320 +3894 +3894 +3894 +40 +8 +104 +650 +4187 +4187 +4187 +2961 +2961 +2961 +48 +1276 +34 +572 +796 +23 +21 +0 +0 +4815 +4815 +4815 +27 +174 +4671 +4671 +4671 +145 +356 +2761 +2145 +149 +2522 +127 +3553 +3553 +3553 +48 +22 +1515 +71 +1449 +206 +0 +1001 +69 +24 +21 +226 +53 +4804 +4804 +4804 +4439 +4439 +4439 +56 +0 +42 +509 +0 +201 +1992 +72 +25 +2 +0 +588 +588 +588 +1360 +1022 +938 +938 +938 +1728 +179 +654 +32 +2256 +1002 +65 +1065 +1065 +1065 +118 +440 +151 +1 +3964 +3964 +3964 +205 +1067 +7 +243 +27 +4637 +4637 +4637 +328 +3577 +3577 +3577 +165 +950 +137 +50 +860 +225 +3897 +554 +931 +365 +23 +852 +3169 +2 +186 +24 +3976 +3976 +3976 +3980 +3980 +3980 +0 +2 +4129 +4129 +4129 +1426 +36 +0 +4569 +4569 +4569 +2809 +3549 +3549 +3549 +45 +365 +883 +883 +883 +677 +23 +368 +365 +196 +1621 +1334 +3880 +1419 +1 +2 +1297 +1772 +1951 +206 +33 +3461 +1 +26 +57 +4237 +3717 +3717 +3717 +22 +20 +3967 +3967 +3967 +29 +3132 +3132 +3132 +33 +1 +3764 +93 +97 +16 +983 +983 +983 +3967 +3967 +3967 +1380 +20 +937 +1 +3882 +3882 +3882 +36 +54 +0 +21 +29 +55 +2822 +2822 +2822 +120 +365 +20 +44 +97 +132 +220 +149 +3045 +2124 +2124 +2124 +22 +4993 +4993 +4993 +983 +365 +106 +0 +182 +4144 +4144 +4144 +4046 +4046 +4046 +1038 +0 +143 +100 +1470 +1470 +1470 +880 +17 +1749 +74 +1 +110 +0 +20 +216 +261 +153 +26 +877 +3910 +58 +293 +2401 +2401 +2401 +0 +611 +115 +100 +847 +304 +113 +22 +255 +2497 +97 +992 +34 +31 +0 +52 +1727 +1727 +1727 +37 +3513 +3513 +3513 +4885 +4885 +4885 +31 +25 +632 +632 +632 +3965 +3965 +3965 +1045 +265 +265 +265 +4688 +4688 +4688 +3430 +705 +2367 +285 +0 +2532 +2532 +2532 +614 +494 +2312 +2312 +2312 +303 +303 +303 +74 +40 +3184 +3184 +3184 +4974 +4974 +4974 +612 +378 +4058 +4058 +4058 +358 +1 +84 +795 +4577 +4577 +4577 +727 +174 +2312 +0 +4045 +4045 +4045 +2182 +4823 +4823 +4823 +54 +368 +2381 +56 +60 +2739 +2739 +2739 +0 +3004 +3004 +3004 +98 +8 +37 +367 +367 +50 +102 +70 +53 +3788 +3788 +3788 +697 +201 +0 +4874 +4874 +4874 +126 +126 +126 +88 +1036 +1036 +1036 +1732 +8 +244 +4822 +4822 +4822 +31 +305 +1 +206 +1 +74 +0 +58 +4070 +4070 +4070 +2922 +2922 +2922 +1 +1305 +1305 +1305 +24 +28 +0 +34 +38 +130 +40 +0 +26 +2573 +2573 +2573 +44 +2200 +253 +253 +253 +346 +76 +4306 +4306 +4306 +83 +671 +0 +266 +1 +931 +229 +2369 +2369 +2369 +195 +38 +65 +28 +39 +2782 +42 +46 +924 +116 +3188 +3188 +3188 +1 +37 +37 +37 +4910 +4910 +4910 +26 +0 +70 +112 +784 +163 +411 +2 +3158 +3158 +3158 +2375 +4249 +4249 +4249 +33 +65 +39 +31 +454 +230 +0 +74 +597 +139 +26 +3249 +3249 +3249 +2464 +92 +38 +33 +4627 +2122 +2122 +2122 +25 +0 +386 +8 +344 +1000 +1000 +1000 +622 +1962 +101 +2 +1365 +1365 +1365 +330 +46 +401 +36 +1 +21 +3607 +3607 +3607 +70 +29 +45 +199 +26 +21 +20 +31 +1 +1947 +53 +31 +4842 +4842 +4842 +28 +71 +23 +42 +31 +474 +1077 +188 +201 +217 +33 +0 +29 +34 +0 +3 +3990 +3990 +3990 +39 +25 +24 +64 +47 +31 +4361 +4361 +4361 +76 +55 +40 +29 +4306 +4306 +4306 +32 +49 +235 +1762 +1762 +1762 +38 +335 +4 +3961 +3961 +3961 +73 +396 +553 +0 +44 +25 +2518 +43 +30 +0 +33 +0 +35 +159 +159 +159 +2825 +2825 +2825 +40 +3895 +29 +74 +0 +723 +189 +642 +642 +642 +30 +481 +51 +64 +68 +1157 +1157 +1157 +288 +38 +21 +31 +440 +256 +170 +3 +0 +4871 +4871 +4871 +29 +37 +26 +1337 +298 +393 +2436 +2436 +2436 +2 +1571 +1571 +1571 +27 +291 +27 +39 +400 +278 +25 +4068 +28 +1290 +1290 +1290 +54 +919 +319 +808 +2 +35 +4338 +4338 +4338 +594 +668 +32 +3975 +3975 +3975 +480 +179 +0 +95 +395 +4359 +4359 +4359 +897 +4646 +4646 +4646 +1466 +1466 +1466 +687 +35 +33 +336 +109 +195 +45 +174 +4713 +4713 +4713 +59 +525 +274 +2 +29 +26 +692 +692 +692 +34 +62 +4707 +4707 +4707 +1 +1 +28 +427 +873 +873 +873 +33 +36 +59 +174 +2825 +2825 +2825 +33 +45 +43 +1735 +0 +27 +182 +25 +42 +0 +90 +0 +0 +0 +29 +3170 +4125 +4125 +4125 +231 +4346 +4346 +4346 +32 +242 +28 +33 +3609 +141 +1 +44 +34 +28 +3658 +3658 +3658 +310 +2717 +4967 +4967 +4967 +353 +293 +1157 +100 +4072 +4072 +4072 +4594 +156 +31 +0 +37 +298 +1773 +1773 +1773 +22 +2130 +96 +1724 +37 +34 +245 +35 +256 +33 +34 +263 +525 +38 +731 +1 +36 +53 +29 +76 +20 +894 +561 +32 +389 +61 +29 +33 +24 +38 +2494 +29 +4158 +4158 +4158 +28 +40 +418 +3054 +3054 +3054 +29 +56 +25 +34 +780 +780 +780 +1 +2474 +2474 +2474 +3531 +3531 +3531 +0 +269 +939 +26 +148 +40 +47 +79 +945 +45 +44 +64 +156 +648 +1 +403 +94 +27 +4400 +4400 +4400 +24 +33 +21 +30 +204 +33 +2049 +736 +1415 +37 +28 +2571 +2571 +2571 +30 +2505 +0 +77 +1 +1 +0 +24 +0 +71 +4184 +1103 +818 +553 +2553 +914 +230 +4795 +4795 +4795 +86 +359 +163 +389 +20 +0 +2302 +2302 +2302 +88 +29 +36 +4031 +4031 +4031 +3164 +688 +207 +71 +1 +0 +4339 +4339 +4339 +3326 +258 +30 +1395 +28 +1570 +2574 +33 +432 +2819 +2819 +2819 +1 +3348 +26 +396 +20 +1554 +20 +0 +1379 +27 +3083 +3083 +3083 +3028 +3028 +3028 +4385 +4385 +4385 +134 +101 +53 +24 +205 +59 +22 +205 +22 +1 +45 +1395 +413 +118 +1973 +1973 +1973 +122 +4141 +562 +149 +2151 +2151 +2151 +2936 +2936 +2936 +845 +845 +845 +1203 +1098 +1098 +1098 +44 +1536 +1536 +1536 +4879 +4879 +4879 +34 +31 +615 +36 +2 +92 +0 +92 +92 +69 +103 +1206 +1206 +1206 +1 +4309 +4309 +4309 +41 +731 +20 +34 +2940 +183 +4299 +2205 +2205 +2205 +16 +71 +699 +53 +67 +2572 +2572 +2572 +776 +0 +99 +80 +369 +2 +2922 +2922 +2922 +38 +60 +951 +951 +951 +21 +4811 +4811 +4811 +2 +2993 +2993 +2993 +24 +4343 +4343 +4343 +82 +297 +44 +1268 +2536 +2536 +2536 +21 +3606 +3606 +3606 +0 +2096 +0 +673 +47 +342 +27 +42 +132 +22 +44 +127 +102 +654 +1810 +2820 +26 +630 +45 +30 +147 +4225 +4225 +4225 +1 +92 +2465 +44 +279 +322 +68 +30 +231 +3571 +2193 +3104 +4060 +4060 +4060 +31 +1075 +20 +32 +1492 +146 +1178 +4 +27 +314 +33 +20 +127 +64 +558 +0 +34 +1445 +1445 +1445 +146 +1 +70 +1 +978 +4289 +4289 +4289 +177 +44 +1 +54 +3757 +3757 +3757 +35 +35 +35 +240 +1 +269 +32 +83 +408 +21 +31 +1789 +41 +413 +58 +1096 +191 +33 +1203 +0 +994 +2 +443 +756 +756 +756 +1050 +39 +21 +153 +1174 +162 +357 +69 +4270 +4270 +4270 +32 +27 +364 +33 +0 +103 +491 +75 +72 +182 +48 +615 +615 +615 +439 +509 +84 +31 +274 +61 +392 +4127 +366 +1 +734 +55 +83 +22 +101 +22 +333 +0 +50 +113 +21 +404 +3081 +3081 +3081 +0 +27 +178 +62 +38 +374 +2 +0 +95 +1 +38 +55 +32 +35 +4201 +489 +489 +489 +1174 +987 +125 +4462 +4462 +4462 +822 +1036 +302 +178 +46 +21 +34 +171 +171 +171 +1538 +1 +1829 +1829 +1829 +21 +2 +3033 +3033 +3033 +68 +731 +33 +863 +4218 +4218 +4218 +287 +753 +55 +21 +0 +488 +61 +82 +2518 +54 +35 +25 +43 +367 +852 +852 +852 +26 +23 +20 +21 +168 +31 +18 +417 +235 +8 +35 +0 +295 +10 +3380 +3380 +3380 +3712 +3712 +3712 +1529 +1624 +3 +45 +323 +64 +3 +785 +1097 +23 +30 +3033 +9 +0 +76 +2 +25 +0 +65 +1147 +84 +218 +41 +4448 +91 +30 +4728 +4728 +4728 +35 +32 +3536 +3536 +3536 +0 +2193 +88 +371 +910 +0 +1 +999 +350 +260 +31 +20 +311 +2106 +0 +1159 +189 +1 +3230 +3230 +3230 +55 +145 +86 +1 +59 +379 +0 +2192 +21 +1 +104 +264 +1428 +2829 +2829 +2829 +91 +29 +1948 +1948 +1948 +1 +28 +97 +1209 +366 +26 +4846 +4846 +4846 +272 +0 +1401 +1401 +1401 +2 +50 +3654 +3654 +3654 +2 +221 +4929 +4929 +4929 +92 +56 +1 +1097 +4814 +4814 +4814 +148 +156 +1 +24 +270 +270 +270 +22 +29 +234 +954 +3444 +3444 +3444 +690 +690 +690 +79 +3653 +30 +2560 +2560 +2560 +1126 +476 +8 +280 +2196 +100 +1584 +1234 +1 +0 +22 +5 +0 +4 +2065 +2065 +2065 +181 +145 +0 +129 +463 +89 +839 +0 +894 +3322 +3322 +3322 +75 +3 +3862 +3862 +3862 +393 +412 +113 +653 +47 +45 +0 +0 +63 +2 +1570 +353 +136 +31 +118 +134 +1823 +431 +89 +2 +74 +733 +733 +733 +440 +20 +35 +84 +43 +33 +828 +16 +821 +202 +121 +1327 +1327 +1327 +645 +6 +305 +112 +401 +26 +67 +61 +41 +450 +317 +1 +4121 +4121 +4121 +100 +0 +2014 +2014 +2014 +2 +1 +27 +31 +277 +4140 +4140 +4140 +118 +3 +29 +26 +3301 +3301 +3301 +22 +22 +1 +0 +230 +0 +875 +39 +4121 +4121 +4121 +910 +910 +910 +8 +0 +93 +153 +12 +11 +295 +3300 +3300 +3300 +2505 +2505 +2505 +484 +484 +484 +216 +150 +0 +35 +47 +0 +0 +0 +495 +4512 +64 +205 +0 +352 +274 +128 +4940 +4940 +4940 +367 +39 +149 +4781 +4781 +4781 +296 +74 +60 +44 +2820 +0 +0 +86 +288 +734 +119 +30 +44 +1 +135 +370 +21 +3702 +3702 +3702 +1 +304 +26 +58 +24 +4184 +4184 +4184 +1191 +1191 +1191 +356 +3656 +7 +1526 +1526 +1526 +2 +208 +1200 +21 +3506 +3506 +3506 +40 +63 +804 +266 +1161 +1161 +1161 +24 +2685 +31 +140 +25 +251 +3862 +3862 +3862 +24 +263 +61 +55 +33 +48 +108 +31 +495 +2017 +2017 +2017 +49 +114 +439 +1022 +32 +29 +475 +2 +29 +3268 +3268 +3268 +1539 +50 +268 +45 +160 +513 +0 +64 +1239 +342 +342 +342 +172 +4027 +4027 +4027 +1237 +1237 +1237 +210 +279 +279 +279 +6 +515 +1 +20 +0 +104 +23 +3 +32 +389 +3737 +3737 +3737 +1 +3259 +3259 +3259 +3830 +911 +566 +0 +54 +169 +283 +30 +304 +2908 +712 +31 +0 +23 +1 +0 +79 +94 +834 +170 +0 +4292 +4292 +4292 +0 +326 +68 +779 +25 +3844 +3844 +3844 +64 +5 +232 +4128 +4128 +4128 +4162 +4162 +4162 +109 +728 +235 +406 +164 +41 +3091 +4577 +4577 +4577 +23 +1 +267 +161 +510 +55 +1151 +136 +0 +44 +683 +9 +356 +38 +4028 +4028 +4028 +3374 +3374 +3374 +2995 +407 +39 +31 +236 +895 +196 +3275 +3275 +3275 +1656 +338 +2142 +2662 +4013 +4013 +4013 +666 +0 +67 +184 +182 +397 +450 +450 +450 +578 +3938 +1373 +544 +578 +372 +48 +0 +48 +2424 +590 +919 +13 +0 +859 +2800 +2800 +2800 +60 +79 +0 +549 +0 +4138 +4138 +4138 +2380 +2380 +2380 +10 +4534 +4534 +4534 +3872 +3872 +3872 +30 +147 +802 +48 +2661 +2661 +2661 +4072 +1613 +44 +560 +24 +169 +35 +4281 +4281 +4281 +309 +468 +3268 +3268 +3268 +148 +0 +124 +318 +60 +179 +62 +1 +29 +30 +50 +3368 +22 +738 +216 +367 +367 +367 +1877 +107 +224 +111 +1 +22 +2402 +3 +21 +39 +0 +278 +366 +602 +3343 +3343 +3343 +32 +189 +205 +48 +22 +2709 +160 +2728 +4991 +4991 +4991 +3232 +3232 +3232 +189 +0 +23 +595 +606 +1218 +1218 +1218 +38 +214 +1219 +1219 +1219 +1319 +590 +590 +590 +233 +4131 +4131 +4131 +940 +622 +588 +1698 +4700 +4700 +4700 +110 +3813 +3813 +3813 +26 +0 +4 +1116 +37 +3129 +3129 +3129 +0 +95 +95 +95 +33 +308 +413 +69 +49 +908 +220 +577 +577 +577 +366 +3092 +3092 +3092 +1 +64 +9 +1 +4405 +4405 +4405 +97 +218 +0 +29 +1 +50 +1 +94 +3539 +77 +1661 +20 +110 +0 +1304 +257 +815 +211 +23 +1 +91 +688 +45 +230 +864 +0 +2218 +2218 +2218 +106 +2 +2696 +2696 +2696 +202 +397 +2798 +1317 +30 +382 +2728 +4334 +4334 +4334 +3914 +3914 +3914 +32 +32 +4834 +4834 +4834 +4833 +4833 +4833 +1598 +1598 +1598 +473 +1 +2 +438 +4213 +4213 +4213 +3221 +3221 +3221 +26 +103 +135 +0 +3834 +3834 +3834 +3861 +3861 +3861 +84 +82 +82 +82 +598 +2559 +21 +28 +367 +367 +367 +1 +78 +895 +33 +236 +123 +907 +4018 +4018 +4018 +352 +352 +352 +380 +575 +1638 +1638 +1638 +666 +2944 +115 +2029 +2029 +2029 +857 +178 +45 +27 +96 +282 +582 +176 +44 +1 +368 +4880 +4880 +4880 +1622 +2064 +0 +1 +237 +30 +101 +0 +204 +248 +248 +248 +82 +1290 +1290 +1290 +489 +47 +56 +31 +31 +210 +1159 +1664 +1664 +1664 +30 +1185 +1074 +1074 +1074 +367 +1024 +45 +4995 +4995 +4995 +548 +548 +548 +5 +322 +1197 +581 +46 +2134 +2134 +2134 +211 +622 +0 +49 +31 +1550 +239 +129 +2 +20 +991 +0 +576 +576 +576 +337 +4329 +4329 +4329 +57 +2733 +41 +46 +4367 +4367 +4367 +4635 +4635 +4635 +0 +868 +868 +868 +863 +25 +113 +125 +56 +32 +367 +0 +883 +2770 +2770 +2770 +3852 +46 +24 +28 +32 +926 +112 +3834 +0 +67 +0 +1650 +1650 +1650 +0 +474 +474 +474 +1 +369 +104 +47 +253 +253 +253 +1373 +2020 +2020 +2020 +0 +313 +1050 +1352 +1352 +1352 +2316 +2316 +2316 +0 +4286 +4286 +4286 +1004 +1348 +73 +292 +0 +966 +63 +176 +176 +176 +3331 +3331 +3331 +286 +3477 +21 +4172 +4172 +4172 +2 +659 +41 +718 +718 +718 +67 +28 +977 +42 +50 +32 +61 +4299 +4299 +4299 +262 +70 +54 +1364 +1364 +1364 +1 +1 +333 +107 +0 +189 +50 +287 +1659 +0 +3114 +3114 +3114 +732 +90 +3449 +3449 +3449 +2126 +2126 +2126 +522 +942 +307 +29 +1472 +1278 +2421 +1617 +109 +281 +42 +50 +2509 +2509 +2509 +367 +0 +1998 +1998 +1998 +4015 +4015 +4015 +142 +69 +9 +244 +2246 +2607 +72 +2521 +2521 +2521 +3119 +3119 +3119 +1 +452 +225 +0 +38 +3976 +74 +0 +93 +4565 +4565 +4565 +78 +32 +62 +2849 +2849 +2849 +63 +314 +12 +0 +362 +562 +34 +931 +275 +52 +155 +281 +4391 +4391 +4391 +276 +120 +120 +120 +1764 +44 +34 +3615 +1 +29 +53 +90 +369 +22 +26 +2543 +2543 +2543 +226 +29 +331 +95 +337 +635 +197 +0 +35 +1404 +1134 +0 +54 +118 +985 +1570 +28 +370 +163 +3936 +975 +975 +975 +238 +300 +51 +246 +22 +652 +365 +73 +117 +117 +117 +497 +269 +1995 +2024 +2856 +53 +22 +82 +189 +1 +48 +152 +4032 +4032 +4032 +28 +1147 +1147 +1147 +90 +2539 +0 +3285 +3285 +3285 +586 +15 +2737 +4276 +4276 +4276 +98 +86 +2958 +2106 +3483 +3634 +0 +4382 +1294 +1294 +1294 +57 +559 +559 +559 +61 +202 +2745 +27 +700 +700 +700 +115 +0 +1 +1823 +1 +4204 +178 +2355 +27 +1 +236 +28 +284 +197 +0 +8 +171 +749 +157 +37 +590 +457 +1224 +2576 +687 +687 +687 +33 +829 +202 +2139 +24 +1328 +1328 +1328 +0 +1 +31 +31 +0 +76 +0 +257 +28 +101 +2142 +2142 +2142 +1766 +306 +30 +42 +0 +1285 +1 +216 +2360 +2360 +2360 +20 +82 +46 +37 +335 +408 +1462 +1462 +1462 +4342 +4342 +4342 +22 +468 +1 +4007 +4007 +4007 +1097 +1 +3655 +42 +2150 +1809 +1809 +1809 +0 +1 +1793 +1793 +1793 +335 +223 +1253 +306 +1766 +4052 +1 +2001 +2001 +2001 +1562 +1562 +1562 +611 +28 +4355 +1521 +196 +0 +1732 +5 +2574 +2574 +2574 +173 +40 +623 +1313 +430 +88 +1 +769 +769 +769 +0 +345 +4768 +4768 +4768 +1 +385 +1176 +1176 +1176 +26 +30 +79 +129 +4 +44 +224 +641 +0 +355 +82 +142 +24 +122 +621 +1709 +3657 +3657 +3657 +154 +0 +3704 +0 +424 +280 +280 +280 +3610 +3610 +3610 +31 +1 +32 +335 +1 +20 +0 +0 +3 +1 +4678 +4678 +4678 +27 +109 +121 +2231 +701 +814 +814 +814 +36 +304 +691 +210 +1 +1842 +1 +0 +31 +0 +95 +1464 +1464 +1464 +5 +281 +0 +49 +4073 +4073 +4073 +4411 +4411 +4411 +640 +640 +640 +0 +55 +67 +55 +3906 +3906 +3906 +31 +2 +1 +60 +31 +6 +31 +1475 +226 +2931 +670 +670 +670 +373 +373 +373 +331 +0 +1476 +3 +1578 +519 +2 +183 +69 +294 +2057 +2057 +2057 +0 +102 +62 +41 +4278 +4278 +4278 +3612 +3612 +3612 +53 +1 +26 +31 +1680 +329 +32 +311 +40 +30 +37 +31 +46 +4788 +3210 +3210 +3210 +20 +49 +1134 +3771 +3771 +3771 +683 +0 +0 +1088 +25 +29 +2912 +2912 +2912 +0 +1 +177 +0 +3668 +3668 +3668 +294 +40 +33 +30 +1 +4705 +4705 +4705 +0 +0 +357 +103 +11 +298 +4784 +4784 +4784 +26 +1 +4382 +4382 +4382 +167 +22 +0 +3061 +3061 +3061 +119 +531 +367 +201 +30 +0 +177 +31 +0 +58 +29 +4 +155 +4095 +4095 +4095 +682 +55 +2256 +2256 +2256 +101 +693 +20 +240 +31 +41 +4494 +4494 +4494 +769 +4 +800 +25 +752 +1 +238 +24 +32 +53 +0 +0 +28 +1 +2109 +46 +200 +168 +398 +87 +3297 +351 +0 +67 +338 +2249 +1190 +24 +340 +340 +340 +3117 +3117 +3117 +229 +408 +31 +1887 +1887 +1887 +574 +574 +574 +2 +2563 +2563 +2563 +24 +378 +53 +3754 +3754 +3754 +0 +47 +50 +2151 +85 +4019 +4019 +4019 +4390 +4390 +4390 +946 +18 +2830 +374 +410 +410 +410 +1 +1081 +54 +1 +3274 +82 +375 +945 +139 +0 +3273 +3273 +3273 +2219 +2219 +2219 +4753 +4753 +4753 +354 +28 +395 +25 +332 +63 +0 +2 +3285 +29 +0 +49 +106 +75 +30 +0 +4100 +4100 +4100 +1 +1 +327 +15 +31 +27 +1 +1876 +31 +1153 +30 +46 +308 +1545 +1545 +1545 +21 +180 +3 +22 +119 +174 +202 +700 +27 +31 +4163 +4163 +4163 +2200 +2200 +2200 +1 +140 +31 +55 +20 +47 +36 +253 +0 +168 +27 +31 +1 +200 +1903 +1903 +1903 +437 +27 +601 +1 +32 +51 +983 +1 +3472 +3472 +3472 +91 +35 +37 +1173 +1173 +1173 +1 +59 +20 +0 +1 +4090 +4090 +4090 +77 +530 +2556 +1807 +1807 +1807 +3184 +3184 +3184 +10 +23 +1630 +62 +34 +7 +55 +0 +1572 +0 +28 +2 +35 +84 +1 +79 +1769 +1769 +1769 +92 +3086 +3086 +3086 +419 +10 +4877 +4877 +4877 +1857 +4504 +4504 +4504 +34 +0 +4010 +4010 +4010 +37 +24 +40 +0 +135 +437 +0 +0 +0 +3784 +3784 +3784 +31 +20 +78 +1 +31 +32 +0 +92 +60 +268 +140 +480 +2962 +2962 +2962 +23 +58 +44 +1582 +1582 +1582 +665 +22 +0 +44 +28 +87 +489 +3 +2917 +90 +418 +32 +24 +3291 +562 +93 +3792 +3792 +3792 +90 +3046 +31 +1 +1832 +1832 +1832 +22 +4068 +4042 +4042 +4042 +257 +20 +22 +0 +345 +440 +421 +68 +0 +3795 +4038 +4038 +4038 +31 +1090 +98 +25 +25 +25 +2383 +65 +98 +358 +2269 +2269 +2269 +42 +173 +59 +0 +143 +0 +2303 +3988 +3988 +3988 +767 +176 +1 +746 +827 +33 +730 +197 +269 +47 +24 +1 +1498 +1498 +1498 +2683 +6 +51 +0 +440 +4515 +4515 +4515 +30 +1586 +33 +597 +52 +1079 +915 +915 +915 +21 +79 +106 +62 +611 +102 +2924 +132 +2981 +2981 +2981 +2716 +2716 +2716 +51 +2954 +78 +24 +61 +532 +660 +1523 +1523 +1523 +2484 +0 +95 +233 +25 +16 +1485 +28 +181 +3127 +31 +0 +1 +1244 +49 +59 +4 +255 +155 +30 +0 +2576 +171 +3840 +3840 +3840 +484 +3443 +3443 +3443 +61 +4808 +4808 +4808 +67 +2016 +2016 +2016 +4513 +4513 +4513 +3472 +3472 +3472 +57 +2 +22 +45 +127 +34 +30 +1 +619 +142 +0 +118 +507 +1636 +1069 +634 +46 +2991 +3 +1590 +61 +466 +741 +1837 +1837 +1837 +36 +3638 +24 +4633 +4633 +4633 +103 +21 +437 +20 +23 +513 +565 +58 +991 +112 +3795 +3795 +3795 +1846 +1846 +1846 +481 +60 +559 +27 +204 +2758 +2758 +2758 +32 +1346 +255 +1 +258 +68 +238 +28 +0 +370 +72 +1505 +1505 +1505 +1371 +61 +1 +61 +809 +463 +1140 +505 +3468 +741 +100 +357 +357 +357 +1 +1 +149 +2597 +2597 +2597 +486 +486 +486 +67 +211 +2251 +761 +14 +0 +664 +4 +213 +258 +476 +65 +4958 +4958 +4958 +851 +91 +20 +841 +841 +841 +41 +1581 +1581 +1581 +23 +2477 +143 +174 +127 +52 +73 +107 +59 +1446 +1446 +1446 +261 +1 +24 +489 +1 +458 +58 +305 +45 +397 +1 +26 +4004 +4004 +4004 +465 +1 +4687 +4687 +4687 +4210 +4210 +4210 +433 +3750 +3750 +3750 +97 +31 +89 +112 +0 +1526 +1526 +1526 +564 +28 +564 +1200 +25 +21 +1933 +1933 +1933 +359 +4131 +4131 +4131 +320 +2994 +98 +4361 +4361 +4361 +0 +138 +191 +103 +124 +0 +67 +1776 +3321 +3321 +3321 +500 +0 +918 +1553 +1553 +1553 +474 +21 +0 +1187 +700 +95 +4548 +4548 +4548 +583 +583 +583 +2484 +2484 +2484 +58 +878 +134 +3548 +3548 +3548 +532 +63 +26 +130 +2 +101 +27 +23 +248 +58 +31 +0 +1962 +157 +52 +0 +0 +1 +376 +233 +315 +1337 +2401 +522 +57 +188 +156 +249 +350 +39 +225 +276 +92 +276 +31 +2 +37 +460 +2555 +2555 +2555 +4609 +4609 +4609 +0 +26 +366 +1178 +390 +57 +0 +112 +605 +645 +365 +483 +22 +221 +59 +54 +94 +23 +4419 +4419 +4419 +4585 +3843 +3843 +3843 +250 +250 +250 +1695 +1695 +1695 +611 +46 +65 +3 +1008 +1008 +1008 +115 +68 +0 +561 +42 +50 +3032 +3032 +3032 +2391 +0 +1975 +28 +1409 +1409 +1409 +36 +463 +206 +0 +71 +90 +0 +0 +605 +52 +78 +4809 +4809 +4809 +336 +38 +0 +244 +42 +493 +0 +50 +406 +406 +406 +24 +4433 +4433 +4433 +0 +3909 +3909 +3909 +4589 +4589 +4589 +68 +46 +1666 +21 +1 +2479 +113 +1 +230 +2832 +2832 +2832 +46 +1150 +1150 +1150 +4666 +4666 +4666 +32 +364 +0 +0 +178 +109 +96 +2 +2282 +2282 +2282 +48 +717 +3080 +32 +78 +1937 +1937 +1937 +1 +96 +186 +607 +80 +4985 +4985 +4985 +281 +254 +1 +168 +2 +88 +2476 +2476 +2476 +32 +20 +4782 +4782 +4782 +2482 +193 +698 +791 +791 +791 +243 +122 +173 +270 +980 +612 +574 +21 +1432 +27 +30 +23 +5 +24 +105 +3778 +3778 +3778 +147 +118 +1697 +1697 +1697 +32 +1466 +26 +1548 +1078 +1078 +1078 +1561 +3757 +3757 +3757 +0 +109 +252 +125 +110 +58 +216 +237 +0 +119 +1826 +1748 +0 +75 +6 +321 +61 +285 +28 +78 +587 +46 +1349 +328 +295 +879 +273 +71 +224 +21 +270 +27 +0 +246 +3173 +32 +2142 +129 +3805 +392 +290 +39 +394 +28 +0 +0 +53 +0 +32 +94 +1710 +0 +101 +111 +242 +1 +3507 +3507 +3507 +34 +1427 +1427 +1427 +3863 +3863 +3863 +1 +601 +215 +981 +981 +981 +0 +48 +0 +21 +249 +249 +249 +0 +286 +38 +1754 +1404 +1404 +1404 +3 +27 +1740 +1740 +1740 +323 +30 +134 +118 +202 +2390 +384 +365 +60 +78 +31 +73 +1813 +3616 +3616 +3616 +735 +15 +0 +3827 +3827 +3827 +562 +1821 +640 +1016 +0 +21 +2 +1 +0 +33 +95 +21 +1758 +3208 +1 +0 +1 +0 +587 +0 +365 +4456 +4456 +4456 +3253 +51 +247 +918 +50 +3298 +3298 +3298 +461 +3827 +1 +3590 +3590 +3590 +1 +1471 +370 +4839 +4839 +4839 +32 +42 +32 +356 +3515 +14 +4 +0 +0 +1042 +5 +1 +0 +14 +20 +1 +33 +727 +3 +27 +41 +146 +0 +1159 +1824 +1 +20 +1442 +1442 +1442 +0 +212 +2303 +2303 +2303 +3875 +636 +0 +0 +29 +1 +2 +36 +1402 +1402 +1402 +118 +673 +4732 +4732 +4732 +36 +61 +1064 +33 +708 +125 +3 +319 +1013 +1 +1 +373 +373 +373 +180 +362 +1 +21 +1324 +380 +123 +123 +123 +1 +106 +2500 +804 +646 +91 +575 +229 +309 +0 +215 +33 +3609 +36 +771 +38 +4978 +4978 +4978 +477 +30 +24 +0 +1457 +1457 +1457 +31 +2264 +0 +4 +1 +0 +885 +3 +722 +303 +539 +122 +31 +95 +36 +254 +345 +5 +0 +0 +13 +1 +34 +1306 +1468 +808 +808 +808 +0 +543 +77 +415 +4656 +4656 +4656 +374 +1189 +30 +2303 +2303 +2303 +214 +22 +26 +160 +25 +4694 +21 +25 +27 +20 +1 +406 +0 +21 +6 +30 +368 +1 +26 +4161 +4161 +4161 +1 +33 +835 +146 +3269 +3269 +3269 +0 +2 +35 +33 +0 +0 +23 +13 +0 +1581 +302 +4763 +4763 +4763 +4794 +4794 +4794 +24 +365 +1 +2 +266 +30 +4327 +4327 +4327 +29 +146 +3234 +35 +5 +156 +1 +1 +1 +369 +22 +641 +2 +3482 +3482 +3482 +25 +30 +4684 +4684 +4684 +2 +436 +0 +62 +48 +1 +6 +1 +0 +37 +2564 +2564 +2564 +0 +4775 +4775 +4775 +26 +1220 +1220 +1220 +3993 +3993 +3993 +2193 +2563 +0 +156 +22 +0 +3 +926 +2047 +2047 +2047 +364 +3829 +3829 +3829 +53 +27 +1063 +2056 +40 +208 +0 +2111 +157 +20 +266 +34 +0 +88 +819 +7 +433 +3895 +3895 +3895 +39 +27 +90 +3 +41 +111 +30 +2828 +2828 +2828 +12 +464 +729 +729 +729 +417 +408 +0 +25 +1514 +35 +0 +415 +35 +4389 +4389 +4389 +55 +99 +4845 +4845 +4845 +3980 +52 +901 +0 +408 +4894 +4894 +4894 +59 +756 +46 +4822 +4822 +4822 +35 +1512 +155 +58 +2232 +447 +1 +246 +32 +38 +514 +50 +1100 +0 +745 +225 +225 +225 +33 +41 +37 +47 +20 +2 +1097 +32 +0 +59 +31 +447 +24 +37 +58 +36 +333 +4429 +4429 +4429 +248 +1497 +477 +63 +21 +0 +34 +0 +477 +0 +30 +23 +22 +145 +4791 +4791 +4791 +0 +31 +3129 +3129 +3129 +2477 +2477 +2477 +2191 +2191 +2191 +2 +31 +79 +36 +243 +120 +54 +1975 +1975 +1975 +34 +948 +948 +948 +0 +1975 +1975 +1975 +54 +239 +44 +857 +119 +0 +222 +58 +58 +58 +483 +1940 \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/data/xnotdate.json b/priv/static/metrics-graphics-3.0-alpha3/examples/data/xnotdate.json new file mode 100644 index 0000000..989a08a --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/data/xnotdate.json @@ -0,0 +1,34 @@ +[ + { + "males": 50, + "females": 12 + }, + { + "males": 95, + "females": 66 + }, + { + "males": 143, + "females": 89 + }, + { + "males": 198, + "females": 105 + }, + { + "males": 244, + "females": 533 + }, + { + "males": 277, + "females": 175 + }, + { + "males": 344, + "females": 401 + }, + { + "males": 441, + "females": 1299 + } +] diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/examples.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/examples.htm new file mode 100644 index 0000000..1219425 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/examples.htm @@ -0,0 +1,113 @@ + + + + + MetricsGraphics.js - Examples + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/images/divider.png b/priv/static/metrics-graphics-3.0-alpha3/examples/images/divider.png new file mode 100644 index 0000000..9647b67 Binary files /dev/null and b/priv/static/metrics-graphics-3.0-alpha3/examples/images/divider.png differ diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/images/logo.svg b/priv/static/metrics-graphics-3.0-alpha3/examples/images/logo.svg new file mode 100644 index 0000000..c847025 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/images/logo.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/index.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/index.htm new file mode 100644 index 0000000..e4c1ed0 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/index.htm @@ -0,0 +1,269 @@ + + + + + MetricsGraphics.js - a library based on D3.js, optimized for visualizing and laying out time-series data + + + + + + + + + + + + + + + + + + + + Fork me on GitHub + +
+
+ + + +
+

MetricsGraphics.js is a library built on top of + D3 that is optimized for visualizing and + laying out time-series data. It provides a simple way to produce common types of + graphics in a principled, consistent and responsive way. The library + currently supports line charts, scatterplots, histograms, bar charts and data + tables as well as features like rug plots and basic linear regression.

+
+ + +
+
+ +
+
+ +
MG.data_graphic({
+    title: "Downloads",
+    description: "This graphic shows a time-series of downloads.",
+    data: [{'date':new Date('2014-11-01'),'value':12},
+           {'date':new Date('2014-11-02'),'value':18}],
+    width: 600,
+    height: 250,
+    target: '#downloads',
+    x_accessor: 'date',
+    y_accessor: 'value',
+})
+ +
+
+ +
+

The API is simple. All that's needed to create a graphic is to specify a few default parameters and then, if desired, override one or more of the optional parameters on offer. We don't maintain state. To update a graphic, one would call MG.data_graphic on the same target element.

+

The library is data-source agnostic. While it provides a number of convenience functions and options that allow for graphics to better handle things like missing observations, it doesn't care where the data comes from.

+

The library makes it easy to construct narratives by providing a layout template based on Bootstrap. Take a look at the examples to see that in action.

+

MetricsGraphics.js takes the misery out of creating beautiful interactive graphics. Read our blog post for more details.

+ +

A bit about the library's design philosophy

+

MetricsGraphics.js is an opinionated library that aims to take the mystery and complication out of presenting simple data. It offers only line charts, scatterplots, bar charts, histograms and data tables, while maintaining a wide variety of options for each, and elevates the layout and explanation of these graphics to the same level of priority as the graphics themselves. The emergent philosophy is one of efficiency and practicality - by following the standards embodied by the library, you will make beautiful, concise and impactful presentations and dashboards.

+ +

Creating your first graphic

+

Here's a quick tutorial to get you started. Say that we have some data on a scholarly topic like UFO sightings. We decide that we're interested in creating a line chart of yearly sightings.

+

We create a JSON file called data/ufo-sightings.json based on the original dataset, where we aggregate yearly sightings. The data doesn't have to be JSON of course, but that will mean less work later on.

+

The next thing we do is load the data:

+ +
d3.json('data/ufo-sightings.json', function(data) {
+})
+ +

MG.data_graphic expects the data object to be an array of objects, which is already the case for us. That's good. It also needs dates to be timestamps if they're in a format like yyyy-mm-dd. We've got aggregated yearly data, so we don't need to worry about that. Otherwise, we'd add a line like this one.

+ +
d3.json('data/ufo-sightings.json', function(data) {
+    data = MG.convert.date(data, 'year');
+})
+ +

Finally, we create the graphic and place it in the element specified in target.

+ +
d3.json('data/ufo-sightings.json', function(data) {
+    MG.data_graphic({
+        title: "UFO Sightings",
+        description: "Yearly UFO sightings from the year 1945 to 2010.",
+        data: data,
+        width: 650,
+        height: 150,
+        target: '#ufo-sightings',
+        x_accessor: 'year',
+        y_accessor: 'sightings',
+        markers: [{'year': 1964, 'label': '"The Creeping Terror" released'}]
+    })
+})
+ +

And this is what we end up with. In this example, we're adding a marker to draw attention to a particular data point. This is optional of course.

+
+

It's as easy as that. If for whatever reason we decide to update the data in the graphic, we call MG.data_graphic with the updated data object on the same target element. The library will gracefully transition the existing plot to the new one. It's ridiculously easy to modify every aspect of the graphic by setting one or more of the available options.

+ +

Still not convinced?

+

We've set up an interactive version of this example that you can play around with. You don't need to download anything. Check it out.

+

Take the library out for a spin, file bugs and don't forget to star the project on Github!

+
+ + + + + + + + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/interactive-demo.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/interactive-demo.htm new file mode 100644 index 0000000..f87f060 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/interactive-demo.htm @@ -0,0 +1,236 @@ + + + + + MetricsGraphics.js - a library based on D3.js, optimized for visualizing and laying out time-series data + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ +
+

MetricsGraphics.js is a library built on top of + D3 that is optimized for visualizing and + laying out time-series data. It provides a simple way to produce common + types of graphics in a principled, consistent and responsive way. The + library currently supports line charts, scatterplots and histograms as + well as features like rug plots and basic linear regression.

+ +

This demo allows you to play around with the library without having to + download it. Try doubling the number of sightings in, say, 1995 and see + how that affects the graphic. Or how about changing any of the options in + MG.data_graphic? Or perhaps change the chart type to a scatterplot by + setting chart_type:'point', switching the x and y + accessors and increasing the height? The data object is set to the + contents of the Data text area. Errors are logged to the console.

+
+
+ +
+
+
Data
+
+ JavaScript See Full List of Options + +
+
+
+
+ +
+
+
+
+
+ + + + + + + diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/highlight.pack.js b/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/highlight.pack.js new file mode 100644 index 0000000..470e125 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/highlight.pack.js @@ -0,0 +1 @@ +var hljs=new function(){function e(e){return e.replace(/&/gm,"&").replace(//gm,">")}function t(e){return e.nodeName.toLowerCase()}function n(e,t){var n=e&&e.exec(t);return n&&0==n.index}function r(e){var t=(e.className+" "+(e.parentNode?e.parentNode.className:"")).split(/\s+/);return t=t.map(function(e){return e.replace(/^lang(uage)?-/,"")}),t.filter(function(e){return m(e)||/no(-?)highlight/.test(e)})[0]}function i(e,t){var n={};for(var r in e)n[r]=e[r];if(t)for(var r in t)n[r]=t[r];return n}function a(e){var n=[];return function r(e,i){for(var a=e.firstChild;a;a=a.nextSibling)3==a.nodeType?i+=a.nodeValue.length:1==a.nodeType&&(n.push({event:"start",offset:i,node:a}),i=r(a,i),t(a).match(/br|hr|img|input/)||n.push({event:"stop",offset:i,node:a}));return i}(e,0),n}function s(n,r,i){function a(){return n.length&&r.length?n[0].offset!=r[0].offset?n[0].offset"}function o(e){l+=""}function c(e){("start"==e.event?s:o)(e.node)}for(var u=0,l="",f=[];n.length||r.length;){var h=a();if(l+=e(i.substr(u,h[0].offset-u)),u=h[0].offset,h==n){f.reverse().forEach(o);do c(h.splice(0,1)[0]),h=a();while(h==n&&h.length&&h[0].offset==u);f.reverse().forEach(s)}else"start"==h[0].event?f.push(h[0].node):f.pop(),c(h.splice(0,1)[0])}return l+e(i.substr(u))}function o(e){function t(e){return e&&e.source||e}function n(n,r){return RegExp(t(n),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,s){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var o={},c=function(t,n){e.cI&&(n=n.toLowerCase()),n.split(" ").forEach(function(e){var n=e.split("|");o[n[0]]=[t,n[1]?Number(n[1]):1]})};"string"==typeof a.k?c("keyword",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=o}a.lR=n(a.l||/\b[A-Za-z0-9_]+\b/,!0),s&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=n(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=n(a.e)),a.tE=t(a.e)||"",a.eW&&s.tE&&(a.tE+=(a.e?"|":"")+s.tE)),a.i&&(a.iR=n(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var u=[];a.c.forEach(function(e){e.v?e.v.forEach(function(t){u.push(i(e,t))}):u.push("self"==e?a:e)}),a.c=u,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,s);var l=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(t).filter(Boolean);a.t=l.length?n(l.join("|"),!0):{exec:function(){return null}}}}r(e)}function c(t,r,i,a){function s(e,t){for(var r=0;r";return a+=e+'">',a+t+s}function p(){if(!w.k)return e(B);var t="",n=0;w.lR.lastIndex=0;for(var r=w.lR.exec(B);r;){t+=e(B.substr(n,r.index-n));var i=h(w,r);i?(y+=i[1],t+=g(i[0],e(r[0]))):t+=e(r[0]),n=w.lR.lastIndex,r=w.lR.exec(B)}return t+e(B.substr(n))}function v(){if(w.sL&&!E[w.sL])return e(B);var t=w.sL?c(w.sL,B,!0,L[w.sL]):u(B);return w.r>0&&(y+=t.r),"continuous"==w.subLanguageMode&&(L[w.sL]=t.top),g(t.language,t.value,!1,!0)}function b(){return void 0!==w.sL?v():p()}function d(t,n){var r=t.cN?g(t.cN,"",!0):"";t.rB?(M+=r,B=""):t.eB?(M+=e(n)+r,B=""):(M+=r,B=n),w=Object.create(t,{parent:{value:w}})}function R(t,n){if(B+=t,void 0===n)return M+=b(),0;var r=s(n,w);if(r)return M+=b(),d(r,n),r.rB?0:n.length;var i=l(w,n);if(i){var a=w;a.rE||a.eE||(B+=n),M+=b();do w.cN&&(M+=""),y+=w.r,w=w.parent;while(w!=i.parent);return a.eE&&(M+=e(n)),B="",i.starts&&d(i.starts,""),a.rE?0:n.length}if(f(n,w))throw new Error('Illegal lexeme "'+n+'" for mode "'+(w.cN||"")+'"');return B+=n,n.length||1}var x=m(t);if(!x)throw new Error('Unknown language: "'+t+'"');o(x);for(var w=a||x,L={},M="",k=w;k!=x;k=k.parent)k.cN&&(M=g(k.cN,"",!0)+M);var B="",y=0;try{for(var C,I,j=0;;){if(w.t.lastIndex=j,C=w.t.exec(r),!C)break;I=R(r.substr(j,C.index-j),C[0]),j=C.index+I}R(r.substr(j));for(var k=w;k.parent;k=k.parent)k.cN&&(M+="");return{r:y,value:M,language:t,top:w}}catch(A){if(-1!=A.message.indexOf("Illegal"))return{r:0,value:e(r)};throw A}}function u(t,n){n=n||N.languages||Object.keys(E);var r={r:0,value:e(t)},i=r;return n.forEach(function(e){if(m(e)){var n=c(e,t,!1);n.language=e,n.r>i.r&&(i=n),n.r>r.r&&(i=r,r=n)}}),i.language&&(r.second_best=i),r}function l(e){return N.tabReplace&&(e=e.replace(/^((<[^>]+>|\t)+)/gm,function(e,t){return t.replace(/\t/g,N.tabReplace)})),N.useBR&&(e=e.replace(/\n/g,"
")),e}function f(e,t,n){var r=t?R[t]:n,i=[e.trim()];return e.match(/(\s|^)hljs(\s|$)/)||i.push("hljs"),r&&i.push(r),i.join(" ").trim()}function h(e){var t=r(e);if(!/no(-?)highlight/.test(t)){var n;N.useBR?(n=document.createElementNS("http://www.w3.org/1999/xhtml","div"),n.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):n=e;var i=n.textContent,o=t?c(t,i,!0):u(i),h=a(n);if(h.length){var g=document.createElementNS("http://www.w3.org/1999/xhtml","div");g.innerHTML=o.value,o.value=s(h,a(g),i)}o.value=l(o.value),e.innerHTML=o.value,e.className=f(e.className,t,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function g(e){N=i(N,e)}function p(){if(!p.called){p.called=!0;var e=document.querySelectorAll("pre code");Array.prototype.forEach.call(e,h)}}function v(){addEventListener("DOMContentLoaded",p,!1),addEventListener("load",p,!1)}function b(e,t){var n=E[e]=t(this);n.aliases&&n.aliases.forEach(function(t){R[t]=e})}function d(){return Object.keys(E)}function m(e){return E[e]||E[R[e]]}var N={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},E={},R={};this.highlight=c,this.highlightAuto=u,this.fixMarkup=l,this.highlightBlock=h,this.configure=g,this.initHighlighting=p,this.initHighlightingOnLoad=v,this.registerLanguage=b,this.listLanguages=d,this.getLanguage=m,this.inherit=i,this.IR="[a-zA-Z][a-zA-Z0-9_]*",this.UIR="[a-zA-Z_][a-zA-Z0-9_]*",this.NR="\\b\\d+(\\.\\d+)?",this.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",this.BNR="\\b(0b[01]+)",this.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",this.BE={b:"\\\\[\\s\\S]",r:0},this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE]},this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE]},this.PWM={b:/\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such)\b/},this.CLCM={cN:"comment",b:"//",e:"$",c:[this.PWM]},this.CBCM={cN:"comment",b:"/\\*",e:"\\*/",c:[this.PWM]},this.HCM={cN:"comment",b:"#",e:"$",c:[this.PWM]},this.NM={cN:"number",b:this.NR,r:0},this.CNM={cN:"number",b:this.CNR,r:0},this.BNM={cN:"number",b:this.BNR,r:0},this.CSSNM={cN:"number",b:this.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},this.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[this.BE,{b:/\[/,e:/\]/,r:0,c:[this.BE]}]},this.TM={cN:"title",b:this.IR,r:0},this.UTM={cN:"title",b:this.UIR,r:0}};hljs.registerLanguage("javascript",function(r){return{aliases:["js"],k:{keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document"},c:[{cN:"pi",b:/^\s*('|")use strict('|")/,r:10},r.ASM,r.QSM,r.CLCM,r.CBCM,r.CNM,{b:"("+r.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[r.CLCM,r.CBCM,r.RM,{b:/;/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[r.inherit(r.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,c:[r.CLCM,r.CBCM],i:/["'\(]/}],i:/\[|%/},{b:/\$[(.]/},{b:"\\."+r.IR,r:0}]}});hljs.registerLanguage("http",function(){return{i:"\\S",c:[{cN:"status",b:"^HTTP/[0-9\\.]+",e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{cN:"request",b:"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{cN:"string",e:"$"}},{b:"\\n\\n",starts:{sL:"",eW:!0}}]}});hljs.registerLanguage("json",function(e){var t={literal:"true false null"},i=[e.QSM,e.CNM],l={cN:"value",e:",",eW:!0,eE:!0,c:i,k:t},c={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:!0,eE:!0,c:[e.BE],i:"\\n",starts:l}],i:"\\S"},n={b:"\\[",e:"\\]",c:[e.inherit(l,{cN:null})],i:"\\S"};return i.splice(i.length,0,c,n),{c:i,k:t,i:"\\S"}});hljs.registerLanguage("xml",function(){var t="[A-Za-z0-9\\._:-]+",e={b:/<\?(php)?(?!\w)/,e:/\?>/,sL:"php",subLanguageMode:"continuous"},c={eW:!0,i:/]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xsl","plist"],cI:!0,c:[{cN:"doctype",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},{cN:"comment",b:"",r:10},{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"|$)",e:">",k:{title:"style"},c:[c],starts:{e:"",rE:!0,sL:"css"}},{cN:"tag",b:"|$)",e:">",k:{title:"script"},c:[c],starts:{e:"",rE:!0,sL:"javascript"}},e,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"",c:[{cN:"title",b:/[^ \/><\n\t]+/,r:0},c]}]}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",a={cN:"function",b:c+"\\(",rB:!0,eE:!0,e:"\\("};return{cI:!0,i:"[=/|']",c:[e.CBCM,{cN:"id",b:"\\#[A-Za-z0-9_-]+"},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"pseudo",b:":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\\\"\\']+"},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:"tag",b:c,r:0},{cN:"rules",b:"{",e:"}",i:"[^\\s]",r:0,c:[e.CBCM,{cN:"rule",b:"[^\\s]",rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:!0,i:"[^\\s]",starts:{cN:"value",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]}]}]}}); \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/mode-javascript.js b/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/mode-javascript.js new file mode 100755 index 0000000..a80f564 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/mode-javascript.js @@ -0,0 +1 @@ +define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){this.$rules={start:[{token:"comment.doc.tag",regex:"@[\\w\\d_]+"},{token:"comment.doc.tag",regex:"\\bTODO\\b"},{defaultToken:"comment.doc"}]}};r.inherits(s,i),s.getStartRule=function(e){return{token:"comment.doc",regex:"\\/\\*(?=\\*)",next:e}},s.getEndRule=function(e){return{token:"comment.doc",regex:"\\*\\/",next:e}},t.DocCommentHighlightRules=s}),define("ace/mode/javascript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./doc_comment_highlight_rules").DocCommentHighlightRules,s=e("./text_highlight_rules").TextHighlightRules,o=function(e){var t=this.createKeywordMapper({"variable.language":"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|Namespace|QName|XML|XMLList|ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|SyntaxError|TypeError|URIError|decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|isNaN|parseFloat|parseInt|JSON|Math|this|arguments|prototype|window|document",keyword:"const|yield|import|get|set|break|case|catch|continue|default|delete|do|else|finally|for|function|if|in|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|__parent__|__count__|escape|unescape|with|__proto__|class|enum|extends|super|export|implements|private|public|interface|package|protected|static","storage.type":"const|let|var|function","constant.language":"null|Infinity|NaN|undefined","support.function":"alert","constant.language.boolean":"true|false"},"identifier"),n="case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void",r="[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*\\b",s="\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|[0-2][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)";this.$rules={no_regex:[{token:"comment",regex:"\\/\\/",next:"line_comment"},i.getStartRule("doc-start"),{token:"comment",regex:/\/\*/,next:"comment"},{token:"string",regex:"'(?=.)",next:"qstring"},{token:"string",regex:'"(?=.)',next:"qqstring"},{token:"constant.numeric",regex:/0[xX][0-9a-fA-F]+\b/},{token:"constant.numeric",regex:/[+-]?\d+(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?\b/},{token:["storage.type","punctuation.operator","support.function","punctuation.operator","entity.name.function","text","keyword.operator"],regex:"("+r+")(\\.)(prototype)(\\.)("+r+")(\\s*)(=)",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+r+")(\\.)("+r+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+r+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","entity.name.function","text","paren.lparen"],regex:"("+r+")(\\.)("+r+")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","text","entity.name.function","text","paren.lparen"],regex:"(function)(\\s+)("+r+")(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","punctuation.operator","text","storage.type","text","paren.lparen"],regex:"("+r+")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["text","text","storage.type","text","paren.lparen"],regex:"(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:"keyword",regex:"(?:"+n+")\\b",next:"start"},{token:["punctuation.operator","support.function"],regex:/(\.)(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/},{token:["punctuation.operator","support.function.dom"],regex:/(\.)(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/},{token:["punctuation.operator","support.constant"],regex:/(\.)(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/},{token:["support.constant"],regex:/that\b/},{token:["storage.type","punctuation.operator","support.function.firebug"],regex:/(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/},{token:t,regex:r},{token:"keyword.operator",regex:/--|\+\+|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\|\||\?\:|[!$%&*+\-~\/^]=?/,next:"start"},{token:"punctuation.operator",regex:/[?:,;.]/,next:"start"},{token:"paren.lparen",regex:/[\[({]/,next:"start"},{token:"paren.rparen",regex:/[\])}]/},{token:"comment",regex:/^#!.*$/}],start:[i.getStartRule("doc-start"),{token:"comment",regex:"\\/\\*",next:"comment_regex_allowed"},{token:"comment",regex:"\\/\\/",next:"line_comment_regex_allowed"},{token:"string.regexp",regex:"\\/",next:"regex"},{token:"text",regex:"\\s+|^$",next:"start"},{token:"empty",regex:"",next:"no_regex"}],regex:[{token:"regexp.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"string.regexp",regex:"/[sxngimy]*",next:"no_regex"},{token:"invalid",regex:/\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/},{token:"constant.language.escape",regex:/\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/},{token:"constant.language.delimiter",regex:/\|/},{token:"constant.language.escape",regex:/\[\^?/,next:"regex_character_class"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp"}],regex_character_class:[{token:"regexp.charclass.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"constant.language.escape",regex:"]",next:"regex"},{token:"constant.language.escape",regex:"-"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp.charachterclass"}],function_arguments:[{token:"variable.parameter",regex:r},{token:"punctuation.operator",regex:"[, ]+"},{token:"punctuation.operator",regex:"$"},{token:"empty",regex:"",next:"no_regex"}],comment_regex_allowed:[{token:"comment",regex:"\\*\\/",next:"start"},{defaultToken:"comment"}],comment:[{token:"comment",regex:"\\*\\/",next:"no_regex"},{defaultToken:"comment"}],line_comment_regex_allowed:[{token:"comment",regex:"$|^",next:"start"},{defaultToken:"comment"}],line_comment:[{token:"comment",regex:"$|^",next:"no_regex"},{defaultToken:"comment"}],qqstring:[{token:"constant.language.escape",regex:s},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"no_regex"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:s},{token:"string",regex:"\\\\$",next:"qstring"},{token:"string",regex:"'|$",next:"no_regex"},{defaultToken:"string"}]},(!e||!e.noES6)&&this.$rules.no_regex.unshift({regex:"[{}]",onMatch:function(e,t,n){this.next=e=="{"?this.nextState:"";if(e=="{"&&n.length)return n.unshift("start",t),"paren";if(e=="}"&&n.length){n.shift(),this.next=n.shift();if(this.next.indexOf("string")!=-1)return"paren.quasi.end"}return e=="{"?"paren.lparen":"paren.rparen"},nextState:"start"},{token:"string.quasi.start",regex:/`/,push:[{token:"constant.language.escape",regex:s},{token:"paren.quasi.start",regex:/\${/,push:"start"},{token:"string.quasi.end",regex:/`/,next:"pop"},{defaultToken:"string.quasi"}]}),this.embedRules(i,"doc-",[i.getEndRule("no_regex")]),this.normalizeRules()};r.inherits(o,s),t.JavaScriptHighlightRules=o}),define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../range").Range,i=function(){};(function(){this.checkOutdent=function(e,t){return/^\s+$/.test(e)?/^\s*\}/.test(t):!1},this.autoOutdent=function(e,t){var n=e.getLine(t),i=n.match(/^(\s*\})/);if(!i)return 0;var s=i[1].length,o=e.findMatchingBracket({row:t,column:s});if(!o||o.row==t)return 0;var u=this.$getIndent(e.getLine(o.row));e.replace(new r(t,0,t,s-1),u)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(i.prototype),t.MatchingBraceOutdent=i}),define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,o=e("../../lib/lang"),u=["text","paren.rparen","punctuation.operator"],a=["text","paren.rparen","punctuation.operator","comment"],f,l={},c=function(e){var t=-1;e.multiSelect&&(t=e.selection.id,l.rangeCount!=e.multiSelect.rangeCount&&(l={rangeCount:e.multiSelect.rangeCount}));if(l[t])return f=l[t];f=l[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},h=function(){this.add("braces","insertion",function(e,t,n,r,i){var s=n.getCursorPosition(),u=r.doc.getLine(s.row);if(i=="{"){c(n);var a=n.getSelectionRange(),l=r.doc.getTextRange(a);if(l!==""&&l!=="{"&&n.getWrapBehavioursEnabled())return{text:"{"+l+"}",selection:!1};if(h.isSaneInsertion(n,r))return/[\]\}\)]/.test(u[s.column])||n.inMultiSelectMode?(h.recordAutoInsert(n,r,"}"),{text:"{}",selection:[1,1]}):(h.recordMaybeInsert(n,r,"{"),{text:"{",selection:[1,1]})}else if(i=="}"){c(n);var p=u.substring(s.column,s.column+1);if(p=="}"){var d=r.$findOpeningBracket("}",{column:s.column+1,row:s.row});if(d!==null&&h.isAutoInsertedClosing(s,u,i))return h.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if(i=="\n"||i=="\r\n"){c(n);var v="";h.isMaybeInsertedClosing(s,u)&&(v=o.stringRepeat("}",f.maybeInsertedBrackets),h.clearMaybeInsertedClosing());var p=u.substring(s.column,s.column+1);if(p==="}"){var m=r.findMatchingBracket({row:s.row,column:s.column+1},"}");if(!m)return null;var g=this.$getIndent(r.getLine(m.row))}else{if(!v){h.clearMaybeInsertedClosing();return}var g=this.$getIndent(u)}var y=g+r.getTabString();return{text:"\n"+y+"\n"+g+v,selection:[1,y.length,1,y.length]}}h.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="{"){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.end.column,i.end.column+1);if(u=="}")return i.end.column++,i;f.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if(i=="("){c(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return{text:"("+o+")",selection:!1};if(h.isSaneInsertion(n,r))return h.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(i==")"){c(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f==")"){var l=r.$findOpeningBracket(")",{column:u.column+1,row:u.row});if(l!==null&&h.isAutoInsertedClosing(u,a,i))return h.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="("){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==")")return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if(i=="["){c(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return{text:"["+o+"]",selection:!1};if(h.isSaneInsertion(n,r))return h.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if(i=="]"){c(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f=="]"){var l=r.$findOpeningBracket("]",{column:u.column+1,row:u.row});if(l!==null&&h.isAutoInsertedClosing(u,a,i))return h.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="["){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u=="]")return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){if(i=='"'||i=="'"){c(n);var s=i,o=n.getSelectionRange(),u=r.doc.getTextRange(o);if(u!==""&&u!=="'"&&u!='"'&&n.getWrapBehavioursEnabled())return{text:s+u+s,selection:!1};var a=n.getCursorPosition(),f=r.doc.getLine(a.row),l=f.substring(a.column-1,a.column);if(l=="\\")return null;var p=r.getTokens(o.start.row),d=0,v,m=-1;for(var g=0;go.start.column)break;d+=p[g].value.length}if(!v||m<0&&v.type!=="comment"&&(v.type!=="string"||o.start.column!==v.value.length+d-1&&v.value.lastIndexOf(s)===v.value.length-1)){if(!h.isSaneInsertion(n,r))return;return{text:s+s,selection:[1,1]}}if(v&&v.type==="string"){var y=f.substring(a.column,a.column+1);if(y==s)return{text:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&(s=='"'||s=="'")){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==s)return i.end.column++,i}})};h.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new s(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",u)){var i=new s(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",u))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",a)},h.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},h.recordAutoInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isAutoInsertedClosing(r,i,f.autoInsertedLineEnd[0])||(f.autoInsertedBrackets=0),f.autoInsertedRow=r.row,f.autoInsertedLineEnd=n+i.substr(r.column),f.autoInsertedBrackets++},h.recordMaybeInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isMaybeInsertedClosing(r,i)||(f.maybeInsertedBrackets=0),f.maybeInsertedRow=r.row,f.maybeInsertedLineStart=i.substr(0,r.column)+n,f.maybeInsertedLineEnd=i.substr(r.column),f.maybeInsertedBrackets++},h.isAutoInsertedClosing=function(e,t,n){return f.autoInsertedBrackets>0&&e.row===f.autoInsertedRow&&n===f.autoInsertedLineEnd[0]&&t.substr(e.column)===f.autoInsertedLineEnd},h.isMaybeInsertedClosing=function(e,t){return f.maybeInsertedBrackets>0&&e.row===f.maybeInsertedRow&&t.substr(e.column)===f.maybeInsertedLineEnd&&t.substr(0,e.column)==f.maybeInsertedLineStart},h.popAutoInsertedClosing=function(){f.autoInsertedLineEnd=f.autoInsertedLineEnd.substr(1),f.autoInsertedBrackets--},h.clearMaybeInsertedClosing=function(){f&&(f.maybeInsertedBrackets=0,f.maybeInsertedRow=-1)},r.inherits(h,i),t.CstyleBehaviour=h}),define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../../range").Range,s=e("./fold_mode").FoldMode,o=t.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};r.inherits(o,s),function(){this.foldingStartMarker=/(\{|\[)[^\}\]]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{]*(\}|\])|^[\s\*]*(\*\/)/,this.getFoldWidgetRange=function(e,t,n,r){var i=e.getLine(n),s=i.match(this.foldingStartMarker);if(s){var o=s.index;if(s[1])return this.openingBracketBlock(e,s[1],n,o);var u=e.getCommentFoldRange(n,o+s[0].length,1);return u&&!u.isMultiLine()&&(r?u=this.getSectionRange(e,n):t!="all"&&(u=null)),u}if(t==="markbegin")return;var s=i.match(this.foldingStopMarker);if(s){var o=s.index+s[0].length;return s[1]?this.closingBracketBlock(e,s[1],n,o):e.getCommentFoldRange(n,o,-1)}},this.getSectionRange=function(e,t){var n=e.getLine(t),r=n.search(/\S/),s=t,o=n.length;t+=1;var u=t,a=e.getLength();while(++tf)break;var l=this.getFoldWidgetRange(e,"all",t);if(l){if(l.start.row<=s)break;if(l.isMultiLine())t=l.end.row;else if(r==f)break}u=t}return new i(s,o,u,e.getLine(u).length)}}.call(o.prototype)}),define("ace/mode/javascript",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/javascript_highlight_rules","ace/mode/matching_brace_outdent","ace/range","ace/worker/worker_client","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./javascript_highlight_rules").JavaScriptHighlightRules,o=e("./matching_brace_outdent").MatchingBraceOutdent,u=e("../range").Range,a=e("../worker/worker_client").WorkerClient,f=e("./behaviour/cstyle").CstyleBehaviour,l=e("./folding/cstyle").FoldMode,c=function(){this.HighlightRules=s,this.$outdent=new o,this.$behaviour=new f,this.foldingRules=new l};r.inherits(c,i),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),i=this.getTokenizer().getLineTokens(t,e),s=i.tokens,o=i.state;if(s.length&&s[s.length-1].type=="comment")return r;if(e=="start"||e=="no_regex"){var u=t.match(/^.*(?:\bcase\b.*\:|[\{\(\[])\s*$/);u&&(r+=n)}else if(e=="doc-start"){if(o=="start"||o=="no_regex")return"";var u=t.match(/^\s*(\/?)\*/);u&&(u[1]&&(r+=" "),r+="* ")}return r},this.checkOutdent=function(e,t,n){return this.$outdent.checkOutdent(t,n)},this.autoOutdent=function(e,t,n){this.$outdent.autoOutdent(t,n)},this.createWorker=function(e){var t=new a(["ace"],"ace/mode/javascript_worker","JavaScriptWorker");return t.attachToDocument(e.getDocument()),t.on("jslint",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/javascript"}.call(c.prototype),t.Mode=c}) \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/worker-javascript.js b/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/worker-javascript.js new file mode 100755 index 0000000..f4935e8 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/examples/js/lib/worker-javascript.js @@ -0,0 +1 @@ +"no use strict";(function(e){if(typeof e.window!="undefined"&&e.document)return;e.console=function(){var e=Array.prototype.slice.call(arguments,0);postMessage({type:"log",data:e})},e.console.error=e.console.warn=e.console.log=e.console.trace=e.console,e.window=e,e.ace=e,e.onerror=function(e,t,n,r,i){postMessage({type:"error",data:{message:e,file:t,line:n,col:r,stack:i.stack}})},e.normalizeModule=function(t,n){if(n.indexOf("!")!==-1){var r=n.split("!");return e.normalizeModule(t,r[0])+"!"+e.normalizeModule(t,r[1])}if(n.charAt(0)=="."){var i=t.split("/").slice(0,-1).join("/");n=(i?i+"/":"")+n;while(n.indexOf(".")!==-1&&s!=n){var s=n;n=n.replace(/^\.\//,"").replace(/\/\.\//,"/").replace(/[^\/]+\/\.\.\//,"")}}return n},e.require=function(t,n){n||(n=t,t=null);if(!n.charAt)throw new Error("worker.js require() accepts only (parentId, id) as arguments");n=e.normalizeModule(t,n);var r=e.require.modules[n];if(r)return r.initialized||(r.initialized=!0,r.exports=r.factory().exports),r.exports;var i=n.split("/");if(!e.require.tlns)return console.log("unable to load "+n);i[0]=e.require.tlns[i[0]]||i[0];var s=i.join("/")+".js";return e.require.id=n,importScripts(s),e.require(t,n)},e.require.modules={},e.require.tlns={},e.define=function(t,n,r){arguments.length==2?(r=n,typeof t!="string"&&(n=t,t=e.require.id)):arguments.length==1&&(r=t,n=[],t=e.require.id);if(typeof r!="function"){e.require.modules[t]={exports:r,initialized:!0};return}n.length||(n=["require","exports","module"]);var i=function(n){return e.require(t,n)};e.require.modules[t]={exports:{},factory:function(){var e=this,t=r.apply(this,n.map(function(t){switch(t){case"require":return i;case"exports":return e.exports;case"module":return e;default:return i(t)}}));return t&&(e.exports=t),e}}},e.define.amd={},e.initBaseUrls=function(t){require.tlns=t},e.initSender=function(){var n=e.require("ace/lib/event_emitter").EventEmitter,r=e.require("ace/lib/oop"),i=function(){};return function(){r.implement(this,n),this.callback=function(e,t){postMessage({type:"call",id:t,data:e})},this.emit=function(e,t){postMessage({type:"event",name:e,data:t})}}.call(i.prototype),new i};var t=e.main=null,n=e.sender=null;e.onmessage=function(r){var i=r.data;if(i.command){if(!t[i.command])throw new Error("Unknown command:"+i.command);t[i.command].apply(t,i.args)}else if(i.init){initBaseUrls(i.tlns),require("ace/lib/es5-shim"),n=e.sender=initSender();var s=require(i.module)[i.classname];t=e.main=new s(n)}else i.event&&n&&n._signal(i.event,i.data)}})(this),define("ace/lib/oop",["require","exports","module"],function(e,t,n){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var n in t)e[n]=t[n];return e},t.implement=function(e,n){t.mixin(e,n)}}),define("ace/lib/event_emitter",["require","exports","module"],function(e,t,n){"use strict";var r={},i=function(){this.propagationStopped=!0},s=function(){this.defaultPrevented=!0};r._emit=r._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var n=this._eventRegistry[e]||[],r=this._defaultHandlers[e];if(!n.length&&!r)return;if(typeof t!="object"||!t)t={};t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=i),t.preventDefault||(t.preventDefault=s),n=n.slice();for(var o=0;o ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return this.compare(e,t)==0},this.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),t==1?(t=this.compare(r.row,r.column),t==1?2:t==0?1:0):t==-1?-2:(t=this.compare(r.row,r.column),t==-1?-1:t==1?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return this.comparePoint(e.start)==0&&this.comparePoint(e.end)==0},this.intersects=function(e){var t=this.compareRange(e);return t==-1||t==0||t==1},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){typeof e=="object"?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){typeof e=="object"?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)||this.isStart(e,t)?!1:!0:!1},this.insideStart=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)?!1:!0:!1},this.insideEnd=function(e,t){return this.compare(e,t)==0?this.isStart(e,t)?!1:!0:!1},this.compare=function(e,t){return!this.isMultiLine()&&e===this.start.row?tthis.end.column?1:0:ethis.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var n={row:t+1,column:0};else if(this.end.rowt)var r={row:t+1,column:0};else if(this.start.rowthis.row)return;if(n.start.row==this.row&&n.start.column>this.column)return;var r=this.row,i=this.column,s=n.start,o=n.end;if(t.action==="insertText")if(s.row===r&&s.column<=i){if(s.column!==i||!this.$insertRight)s.row===o.row?i+=o.column-s.column:(i-=s.column,r+=o.row-s.row)}else s.row!==o.row&&s.row=i?i=s.column:i=Math.max(0,i-(o.column-s.column)):s.row!==o.row&&s.row=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n}}).call(s.prototype)}),define("ace/document",["require","exports","module","ace/lib/oop","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=e("./range").Range,o=e("./anchor").Anchor,u=function(e){this.$lines=[],e.length===0?this.$lines=[""]:Array.isArray(e)?this._insertLines(0,e):this.insert({row:0,column:0},e)};(function(){r.implement(this,i),this.setValue=function(e){var t=this.getLength();this.remove(new s(0,0,t,this.getLine(t-1).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new o(this,e,t)},"aaa".split(/a/).length===0?this.$split=function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:this.$split=function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){if(this.$newLineMode===e)return;this.$newLineMode=e,this._signal("changeNewLineMode")},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return e=="\r\n"||e=="\r"||e=="\n"},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){if(e.start.row==e.end.row)return this.getLine(e.start.row).substring(e.start.column,e.end.column);var t=this.getLines(e.start.row,e.end.row);t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;return e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column)),t.join(this.getNewLineCharacter())},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):e.row<0&&(e.row=0),e},this.insert=function(e,t){if(!t||t.length===0)return e;e=this.$clipPosition(e),this.getLength()<=1&&this.$detectNewLine(t);var n=this.$split(t),r=n.splice(0,1)[0],i=n.length==0?null:n.splice(n.length-1,1)[0];return e=this.insertInLine(e,r),i!==null&&(e=this.insertNewLine(e),e=this._insertLines(e.row,n),e=this.insertInLine(e,i||"")),e},this.insertLines=function(e,t){return e>=this.getLength()?this.insert({row:e,column:0},"\n"+t.join("\n")):this._insertLines(Math.max(e,0),t)},this._insertLines=function(e,t){if(t.length==0)return{row:e,column:0};while(t.length>61440){var n=this._insertLines(e,t.slice(0,61440));t=t.slice(61440),e=n.row}var r=[e,0];r.push.apply(r,t),this.$lines.splice.apply(this.$lines,r);var i=new s(e,0,e+t.length,0),o={action:"insertLines",range:i,lines:t};return this._signal("change",{data:o}),i.end},this.insertNewLine=function(e){e=this.$clipPosition(e);var t=this.$lines[e.row]||"";this.$lines[e.row]=t.substring(0,e.column),this.$lines.splice(e.row+1,0,t.substring(e.column,t.length));var n={row:e.row+1,column:0},r={action:"insertText",range:s.fromPoints(e,n),text:this.getNewLineCharacter()};return this._signal("change",{data:r}),n},this.insertInLine=function(e,t){if(t.length==0)return e;var n=this.$lines[e.row]||"";this.$lines[e.row]=n.substring(0,e.column)+t+n.substring(e.column);var r={row:e.row,column:e.column+t.length},i={action:"insertText",range:s.fromPoints(e,r),text:t};return this._signal("change",{data:i}),r},this.remove=function(e){e instanceof s||(e=s.fromPoints(e.start,e.end)),e.start=this.$clipPosition(e.start),e.end=this.$clipPosition(e.end);if(e.isEmpty())return e.start;var t=e.start.row,n=e.end.row;if(e.isMultiLine()){var r=e.start.column==0?t:t+1,i=n-1;e.end.column>0&&this.removeInLine(n,0,e.end.column),i>=r&&this._removeLines(r,i),r!=t&&(this.removeInLine(t,e.start.column,this.getLine(t).length),this.removeNewLine(e.start.row))}else this.removeInLine(t,e.start.column,e.end.column);return e.start},this.removeInLine=function(e,t,n){if(t==n)return;var r=new s(e,t,e,n),i=this.getLine(e),o=i.substring(t,n),u=i.substring(0,t)+i.substring(n,i.length);this.$lines.splice(e,1,u);var a={action:"removeText",range:r,text:o};return this._signal("change",{data:a}),r.start},this.removeLines=function(e,t){return e<0||t>=this.getLength()?this.remove(new s(e,0,t+1,0)):this._removeLines(e,t)},this._removeLines=function(e,t){var n=new s(e,0,t+1,0),r=this.$lines.splice(e,t-e+1),i={action:"removeLines",range:n,nl:this.getNewLineCharacter(),lines:r};return this._signal("change",{data:i}),r},this.removeNewLine=function(e){var t=this.getLine(e),n=this.getLine(e+1),r=new s(e,t.length,e+1,0),i=t+n;this.$lines.splice(e,2,i);var o={action:"removeText",range:r,text:this.getNewLineCharacter()};this._signal("change",{data:o})},this.replace=function(e,t){e instanceof s||(e=s.fromPoints(e.start,e.end));if(t.length==0&&e.isEmpty())return e.start;if(t==this.getTextRange(e))return e.end;this.remove(e);if(t)var n=this.insert(e.start,t);else n=e.start;return n},this.applyDeltas=function(e){for(var t=0;t=0;t--){var n=e[t],r=s.fromPoints(n.range.start,n.range.end);n.action=="insertLines"?this._removeLines(r.start.row,r.end.row-1):n.action=="insertText"?this.remove(r):n.action=="removeLines"?this._insertLines(r.start.row,n.lines):n.action=="removeText"&&this.insert(r.start,n.text)}},this.indexToPosition=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length;for(var i=t||0,s=n.length;i0){t&1&&(n+=e);if(t>>=1)e+=e}return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){var t=[];for(var n=0,r=e.length;n=65&&i<=90||i===95||i>=97&&i<=122;var s=[];for(var i=0;i<128;i++)s[i]=r[i]||i>=48&&i<=57;t.exports={asciiIdentifierStartTable:r,asciiIdentifierPartTable:s}},{}],2:[function(e,t,n){(function(){var e=this,r=e._,i={},s=Array.prototype,o=Object.prototype,u=Function.prototype,a=s.push,f=s.slice,l=s.concat,c=o.toString,h=o.hasOwnProperty,p=s.forEach,d=s.map,v=s.reduce,m=s.reduceRight,g=s.filter,y=s.every,b=s.some,w=s.indexOf,E=s.lastIndexOf,S=Array.isArray,x=Object.keys,T=u.bind,N=function(e){if(e instanceof N)return e;if(!(this instanceof N))return new N(e);this._wrapped=e};typeof n!="undefined"?(typeof t!="undefined"&&t.exports&&(n=t.exports=N),n._=N):e._=N,N.VERSION="1.6.0";var C=N.each=N.forEach=function(e,t,n){if(e==null)return e;if(p&&e.forEach===p)e.forEach(t,n);else if(e.length===+e.length){for(var r=0,s=e.length;r2;e==null&&(e=[]);if(v&&e.reduce===v)return r&&(t=N.bind(t,r)),i?e.reduce(t,n):e.reduce(t);C(e,function(e,s,o){i?n=t.call(r,n,e,s,o):(n=e,i=!0)});if(!i)throw new TypeError(k);return n},N.reduceRight=N.foldr=function(e,t,n,r){var i=arguments.length>2;e==null&&(e=[]);if(m&&e.reduceRight===m)return r&&(t=N.bind(t,r)),i?e.reduceRight(t,n):e.reduceRight(t);var s=e.length;if(s!==+s){var o=N.keys(e);s=o.length}C(e,function(u,a,f){a=o?o[--s]:--s,i?n=t.call(r,n,e[a],a,f):(n=e[a],i=!0)});if(!i)throw new TypeError(k);return n},N.find=N.detect=function(e,t,n){var r;return L(e,function(e,i,s){if(t.call(n,e,i,s))return r=e,!0}),r},N.filter=N.select=function(e,t,n){var r=[];return e==null?r:g&&e.filter===g?e.filter(t,n):(C(e,function(e,i,s){t.call(n,e,i,s)&&r.push(e)}),r)},N.reject=function(e,t,n){return N.filter(e,function(e,r,i){return!t.call(n,e,r,i)},n)},N.every=N.all=function(e,t,n){t||(t=N.identity);var r=!0;return e==null?r:y&&e.every===y?e.every(t,n):(C(e,function(e,s,o){if(!(r=r&&t.call(n,e,s,o)))return i}),!!r)};var L=N.some=N.any=function(e,t,n){t||(t=N.identity);var r=!1;return e==null?r:b&&e.some===b?e.some(t,n):(C(e,function(e,s,o){if(r||(r=t.call(n,e,s,o)))return i}),!!r)};N.contains=N.include=function(e,t){return e==null?!1:w&&e.indexOf===w?e.indexOf(t)!=-1:L(e,function(e){return e===t})},N.invoke=function(e,t){var n=f.call(arguments,2),r=N.isFunction(t);return N.map(e,function(e){return(r?t:e[t]).apply(e,n)})},N.pluck=function(e,t){return N.map(e,N.property(t))},N.where=function(e,t){return N.filter(e,N.matches(t))},N.findWhere=function(e,t){return N.find(e,N.matches(t))},N.max=function(e,t,n){if(!t&&N.isArray(e)&&e[0]===+e[0]&&e.length<65535)return Math.max.apply(Math,e);var r=-Infinity,i=-Infinity;return C(e,function(e,s,o){var u=t?t.call(n,e,s,o):e;u>i&&(r=e,i=u)}),r},N.min=function(e,t,n){if(!t&&N.isArray(e)&&e[0]===+e[0]&&e.length<65535)return Math.min.apply(Math,e);var r=Infinity,i=Infinity;return C(e,function(e,s,o){var u=t?t.call(n,e,s,o):e;ur||n===void 0)return 1;if(n>>1;n.call(r,e[u])=0;n--)t=[e[n].apply(this,t)];return t[0]}},N.after=function(e,t){return function(){if(--e<1)return t.apply(this,arguments)}},N.keys=function(e){if(!N.isObject(e))return[];if(x)return x(e);var t=[];for(var n in e)N.has(e,n)&&t.push(n);return t},N.values=function(e){var t=N.keys(e),n=t.length,r=new Array(n);for(var i=0;i":">",'"':""","'":"'"}};P.unescape=N.invert(P.escape);var H={escape:new RegExp("["+N.keys(P.escape).join("")+"]","g"),unescape:new RegExp("("+N.keys(P.unescape).join("|")+")","g")};N.each(["escape","unescape"],function(e){N[e]=function(t){return t==null?"":(""+t).replace(H[e],function(t){return P[e][t]})}}),N.result=function(e,t){if(e==null)return void 0;var n=e[t];return N.isFunction(n)?n.call(e):n},N.mixin=function(e){C(N.functions(e),function(t){var n=N[t]=e[t];N.prototype[t]=function(){var e=[this._wrapped];return a.apply(e,arguments),q.call(this,n.apply(N,e))}})};var B=0;N.uniqueId=function(e){var t=++B+"";return e?e+t:t},N.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var j=/(.)^/,F={"'":"'","\\":"\\","\r":"r","\n":"n"," ":"t","\u2028":"u2028","\u2029":"u2029"},I=/\\|'|\r|\n|\t|\u2028|\u2029/g;N.template=function(e,t,n){var r;n=N.defaults({},n,N.templateSettings);var i=new RegExp([(n.escape||j).source,(n.interpolate||j).source,(n.evaluate||j).source].join("|")+"|$","g"),s=0,o="__p+='";e.replace(i,function(t,n,r,i,u){return o+=e.slice(s,u).replace(I,function(e){return"\\"+F[e]}),n&&(o+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'"),r&&(o+="'+\n((__t=("+r+"))==null?'':__t)+\n'"),i&&(o+="';\n"+i+"\n__p+='"),s=u+t.length,t}),o+="';\n",n.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{r=new Function(n.variable||"obj","_",o)}catch(u){throw u.source=o,u}if(t)return r(t,N);var a=function(e){return r.call(this,e,N)};return a.source="function("+(n.variable||"obj")+"){\n"+o+"}",a},N.chain=function(e){return N(e).chain()};var q=function(e){return this._chain?N(e).chain():e};N.mixin(N),C(["pop","push","reverse","shift","sort","splice","unshift"],function(e){var t=s[e];N.prototype[e]=function(){var n=this._wrapped;return t.apply(n,arguments),(e=="shift"||e=="splice")&&n.length===0&&delete n[0],q.call(this,n)}}),C(["concat","join","slice"],function(e){var t=s[e];N.prototype[e]=function(){return q.call(this,t.apply(this._wrapped,arguments))}}),N.extend(N.prototype,{chain:function(){return this._chain=!0,this},value:function(){return this._wrapped}}),typeof define=="function"&&define.amd&&define("underscore",[],function(){return N})}).call(this)},{}],3:[function(e,t,n){var r=e("underscore"),i=e("events"),s=e("./vars.js"),o=e("./messages.js"),u=e("./lex.js").Lexer,a=e("./reg.js"),f=e("./state.js").state,l=e("./style.js"),c=function(){"use strict";function I(e,t){return e=e.trim(),/^[+-]W\d{3}$/g.test(e)?!0:p[e]===undefined&&h[e]===undefined&&t.type!=="jslint"&&!m[e]?(G("E001",t,e),!1):!0}function q(e){return Object.prototype.toString.call(e)==="[object String]"}function R(e,t){return e?!e.identifier||e.value!==t?!1:!0:!1}function U(e){if(!e.reserved)return!1;var t=e.meta;if(t&&t.isFutureReservedWord&&f.option.inES5()){if(!t.es5)return!1;if(t.strictOnly&&!f.option.strict&&!f.directive["use strict"])return!1;if(e.isProperty)return!1}return!0}function z(e,t){return e.replace(/\{([^{}]*)\}/g,function(e,n){var r=t[n];return typeof r=="string"||typeof r=="number"?r:e})}function W(e,t){Object.keys(t).forEach(function(n){if(r.has(c.blacklist,n))return;e[n]=t[n]})}function X(){f.option.esnext&&W(M,s.newEcmaIdentifiers),f.option.couch&&W(M,s.couch),f.option.qunit&&W(M,s.qunit),f.option.rhino&&W(M,s.rhino),f.option.shelljs&&(W(M,s.shelljs),W(M,s.node)),f.option.typed&&W(M,s.typed),f.option.phantom&&W(M,s.phantom),f.option.prototypejs&&W(M,s.prototypejs),f.option.node&&(W(M,s.node),W(M,s.typed)),f.option.devel&&W(M,s.devel),f.option.dojo&&W(M,s.dojo),f.option.browser&&(W(M,s.browser),W(M,s.typed)),f.option.nonstandard&&W(M,s.nonstandard),f.option.jasmine&&W(M,s.jasmine),f.option.jquery&&W(M,s.jquery),f.option.mootools&&W(M,s.mootools),f.option.worker&&W(M,s.worker),f.option.wsh&&W(M,s.wsh),f.option.globalstrict&&f.option.strict!==!1&&(f.option.strict=!0),f.option.yui&&W(M,s.yui),f.option.mocha&&W(M,s.mocha),f.option.inMoz=function(e){return f.option.moz},f.option.inESNext=function(e){return f.option.moz||f.option.esnext},f.option.inES5=function(){return!f.option.es3},f.option.inES3=function(e){return e?!f.option.moz&&!f.option.esnext&&f.option.es3:f.option.es3}}function V(e,t,n){var r=Math.floor(t/f.lines.length*100),i=o.errors[e].desc;throw{name:"JSHintError",line:t,character:n,message:i+" ("+r+"% scanned).",raw:i,code:e}}function $(e,t,n,r){return c.undefs.push([e,t,n,r])}function J(){var e=f.ignoredLines;if(r.isEmpty(e))return;c.errors=r.reject(c.errors,function(t){return e[t.line]})}function K(e,t,n,r,i,s){var u,a,l,h;if(/^W\d{3}$/.test(e)){if(f.ignored[e])return;h=o.warnings[e]}else/E\d{3}/.test(e)?h=o.errors[e]:/I\d{3}/.test(e)&&(h=o.info[e]);return t=t||f.tokens.next,t.id==="(end)"&&(t=f.tokens.curr),a=t.line||0,u=t.from||0,l={id:"(error)",raw:h.desc,code:h.code,evidence:f.lines[a-1]||"",line:a,character:u,scope:c.scope,a:n,b:r,c:i,d:s},l.reason=z(h.desc,l),c.errors.push(l),J(),c.errors.length>=f.option.maxerr&&V("E043",a,u),l}function Q(e,t,n,r,i,s,o){return K(e,{line:t,from:n},r,i,s,o)}function G(e,t,n,r,i,s){K(e,t,n,r,i,s)}function Y(e,t,n,r,i,s,o){return G(e,{line:t,from:n},r,i,s,o)}function Z(e,t){var n;return n={id:"(internal)",elem:e,value:t},c.internals.push(n),n}function et(e,t){t=t||{};var n=t.type,i=t.token,s=t.islet;n==="exception"&&r.has(w["(context)"],e)&&w[e]!==!0&&!f.option.node&&K("W002",f.tokens.next,e),r.has(w,e)&&!w["(global)"]&&(w[e]===!0?f.option.latedef&&(f.option.latedef===!0&&r.contains([w[e],n],"unction")||!r.contains([w[e],n],"unction"))&&K("W003",f.tokens.next,e):((!f.option.shadow||r.contains(["inner","outer"],f.option.shadow))&&n!=="exception"||w["(blockscope)"].getlabel(e))&&K("W004",f.tokens.next,e)),w["(context)"]&&r.has(w["(context)"],e)&&n!=="function"&&f.option.shadow==="outer"&&K("W123",f.tokens.next,e),s?w["(blockscope)"].current.add(e,n,f.tokens.curr):(w["(blockscope)"].shadow(e),w[e]=n,i&&(w["(tokens)"][e]=i),Xt(w,e,{unused:t.unused||!1}),w["(global)"]?(S[e]=w,r.has(x,e)&&(f.option.latedef&&(f.option.latedef===!0&&r.contains([w[e],n],"unction")||!r.contains([w[e],n],"unction"))&&K("W003",f.tokens.next,e),delete x[e])):D[e]=w)}function tt(){var e=f.tokens.next,t=e.body.match(/(-\s+)?[^\s,:]+(?:\s*:\s*(-\s+)?[^\s,]+)?/g)||[],n={};if(e.type==="globals"){t.forEach(function(e){e=e.split(":");var t=(e[0]||"").trim(),r=(e[1]||"").trim();t.charAt(0)==="-"?(t=t.slice(1),r=!1,c.blacklist[t]=t,delete M[t]):n[t]=r==="true"}),W(M,n);for(var i in n)r.has(n,i)&&(g[i]=e)}e.type==="exported"&&t.forEach(function(e){y[e]=!0}),e.type==="members"&&(A=A||{},t.forEach(function(e){var t=e.charAt(0),n=e.charAt(e.length-1);t===n&&(t==='"'||t==="'")&&(e=e.substr(1,e.length-2).replace('\\"','"')),A[e]=!1}));var s=["maxstatements","maxparams","maxdepth","maxcomplexity","maxerr","maxlen","indent"];if(e.type==="jshint"||e.type==="jslint")t.forEach(function(t){t=t.split(":");var n=(t[0]||"").trim(),r=(t[1]||"").trim();if(!I(n,e))return;if(s.indexOf(n)>=0){if(r!=="false"){r=+r;if(typeof r!="number"||!isFinite(r)||r<=0||Math.floor(r)!==r){G("E032",e,t[1].trim());return}f.option[n]=r}else f.option[n]=n==="indent"?4:!1;return}if(n==="validthis"){if(w["(global)"])return void G("E009");if(r!=="true"&&r!=="false")return void G("E002",e);f.option.validthis=r==="true";return}if(n==="quotmark"){switch(r){case"true":case"false":f.option.quotmark=r==="true";break;case"double":case"single":f.option.quotmark=r;break;default:G("E002",e)}return}if(n==="shadow"){switch(r){case"true":f.option.shadow=!0;break;case"outer":f.option.shadow="outer";break;case"false":case"inner":f.option.shadow="inner";break;default:G("E002",e)}return}if(n==="unused"){switch(r){case"true":f.option.unused=!0;break;case"false":f.option.unused=!1;break;case"vars":case"strict":f.option.unused=r;break;default:G("E002",e)}return}if(n==="latedef"){switch(r){case"true":f.option.latedef=!0;break;case"false":f.option.latedef=!1;break;case"nofunc":f.option.latedef="nofunc";break;default:G("E002",e)}return}if(n==="ignore"){switch(r){case"start":f.ignoreLinterErrors=!0;break;case"end":f.ignoreLinterErrors=!1;break;case"line":f.ignoredLines[e.line]=!0,J();break;default:G("E002",e)}return}var i=/^([+-])(W\d{3})$/g.exec(n);if(i){f.ignored[i[2]]=i[1]==="-";return}var o;if(r==="true"||r==="false"){e.type==="jslint"?(o=v[n]||n,f.option[o]=r==="true",d[o]!==undefined&&(f.option[o]=!f.option[o])):f.option[n]=r==="true",n==="newcap"&&(f.option["(explicitNewcap)"]=!0);return}G("E002",e)}),X()}function nt(e){var t=e||0,n=0,r;while(n<=t)r=C[n],r||(r=C[n]=k.token()),n+=1;return r}function rt(t,n){switch(f.tokens.curr.id){case"(number)":f.tokens.next.id==="."&&K("W005",f.tokens.curr);break;case"-":(f.tokens.next.id==="-"||f.tokens.next.id==="--")&&K("W006");break;case"+":(f.tokens.next.id==="+"||f.tokens.next.id==="++")&&K("W007")}if(f.tokens.curr.type==="(string)"||f.tokens.curr.identifier)e=f.tokens.curr.value;t&&f.tokens.next.id!==t&&(n?f.tokens.next.id==="(end)"?G("E019",n,n.id):G("E020",f.tokens.next,t,n.id,n.line,f.tokens.next.value):(f.tokens.next.type!=="(identifier)"||f.tokens.next.value!==t)&&K("W116",f.tokens.next,t,f.tokens.next.value)),f.tokens.prev=f.tokens.curr,f.tokens.curr=f.tokens.next;for(;;){f.tokens.next=C.shift()||k.token(),f.tokens.next||V("E041",f.tokens.curr.line);if(f.tokens.next.id==="(end)"||f.tokens.next.id==="(error)")return;f.tokens.next.check&&f.tokens.next.check();if(f.tokens.next.isSpecial)tt();else if(f.tokens.next.id!=="(endline)")break}}function it(e){return e.infix||!e.identifier&&!!e.led}function st(){var e=f.tokens.curr,t=f.tokens.next;return t.id===";"||t.id==="}"||t.id===":"?!0:it(t)===it(e)||e.id==="yield"&&f.option.inMoz(!0)?e.line!==t.line:!1}function ot(t,n){var i,s=!1,o=!1,u=!1;!n&&f.tokens.next.value==="let"&&nt(0).value==="("&&(f.option.inMoz(!0)||K("W118",f.tokens.next,"let expressions"),u=!0,w["(blockscope)"].stack(),rt("let"),rt("("),f.syntax.let.fud.call(f.syntax.let.fud,!1),rt(")")),f.tokens.next.id==="(end)"&&G("E006",f.tokens.curr);var a=f.option.asi&&f.tokens.prev.line="a"&&t<="z"||t>="A"&&t<="Z")e.identifier=e.reserved=!0;return e}function mt(e,t){var n=ct(e,150);return vt(n),n.nud=typeof t=="function"?t:function(){this.right=ot(150),this.arity="unary";if(this.id==="++"||this.id==="--")f.option.plusplus?K("W016",this,this.id):this.right&&(!this.right.identifier||U(this.right))&&this.right.id!=="."&&this.right.id!=="["&&K("W017",this);return this},n}function gt(e,t){var n=ht(e);return n.type=e,n.nud=t,n}function yt(e,t){var n=gt(e,t);return n.identifier=!0,n.reserved=!0,n}function bt(e,t){var n=gt(e,t&&t.nud||function(){return this});return t=t||{},t.isFutureReservedWord=!0,n.value=e,n.identifier=!0,n.reserved=!0,n.meta=t,n}function wt(e,t){return yt(e,function(){return typeof t=="function"&&t(this),this})}function Et(e,t,n,r){var i=ct(e,n);return vt(i),i.infix=!0,i.led=function(i){return r||ut(f.tokens.prev,f.tokens.curr),e==="in"&&i.id==="!"&&K("W018",i,"!"),typeof t=="function"?t(i,this):(this.left=i,this.right=ot(n),this)},i}function St(e){var t=ct(e,42);return t.led=function(e){return f.option.inESNext()||K("W104",f.tokens.curr,"arrow function syntax (=>)"),ut(f.tokens.prev,f.tokens.curr),this.left=e,this.right=Jt(undefined,undefined,!1,e),this},t}function xt(e,t){var n=ct(e,100);return n.led=function(e){ut(f.tokens.prev,f.tokens.curr);var n=ot(100);return R(e,"NaN")||R(n,"NaN")?K("W019",this):t&&t.apply(this,[e,n]),(!e||!n)&&V("E041",f.tokens.curr.line),e.id==="!"&&K("W018",e,"!"),n.id==="!"&&K("W018",n,"!"),this.left=e,this.right=n,this},n}function Tt(e){return e&&(e.type==="(number)"&&+e.value===0||e.type==="(string)"&&e.value===""||e.type==="null"&&!f.option.eqnull||e.type==="true"||e.type==="false"||e.type==="undefined")}function Nt(e,t){if(f.option.notypeof)return!1;if(!e||!t)return!1;var n=["undefined","object","boolean","number","string","function","xml","object","unknown"];return t.type==="(identifier)"&&t.value==="typeof"&&e.type==="(string)"?!r.contains(n,e.value):!1}function Ct(e){function n(e){if(typeof e!="object")return;return e.right==="prototype"?e:n(e.left)}function r(e){while(!e.identifier&&typeof e.left=="object")e=e.left;if(e.identifier&&t.indexOf(e.value)>=0)return e.value}var t=["Array","ArrayBuffer","Boolean","Collator","DataView","Date","DateTimeFormat","Error","EvalError","Float32Array","Float64Array","Function","Infinity","Intl","Int16Array","Int32Array","Int8Array","Iterator","Number","NumberFormat","Object","RangeError","ReferenceError","RegExp","StopIteration","String","SyntaxError","TypeError","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray","URIError"],i=n(e);if(i)return r(i)}function kt(e,t,n){var r=Et(e,typeof t=="function"?t:function(e,t){t.left=e;if(e){if(f.option.freeze){var n=Ct(e);n&&K("W121",e,n)}M[e.value]===!1&&D[e.value]["(global)"]===!0?K("W020",e):e["function"]&&K("W021",e,e.value),w[e.value]==="const"&&G("E013",e,e.value);if(e.id===".")return e.left?e.left.value==="arguments"&&!f.directive["use strict"]&&K("E031",t):K("E031",t),t.right=ot(10),t;if(e.id==="[")return f.tokens.curr.left.first?f.tokens.curr.left.first.forEach(function(e){e&&w[e.value]==="const"&&G("E013",e,e.value)}):e.left?e.left.value==="arguments"&&!f.directive["use strict"]&&K("E031",t):K("E031",t),t.right=ot(10),t;if(e.identifier&&!U(e))return w[e.value]==="exception"&&K("W022",e),t.right=ot(10),t;e===f.syntax["function"]&&K("W023",f.tokens.curr)}G("E031",t)},n);return r.exps=!0,r.assign=!0,r}function Lt(e,t,n){var r=ct(e,n);return vt(r),r.led=typeof t=="function"?t:function(e){return f.option.bitwise&&K("W016",this,this.id),this.left=e,this.right=ot(n),this},r}function At(e){return kt(e,function(e,t){f.option.bitwise&&K("W016",t,t.id);if(e)return e.id==="."||e.id==="["||e.identifier&&!U(e)?(ot(10),t):(e===f.syntax["function"]&&K("W023",f.tokens.curr),t);G("E031",t)},20)}function Ot(e){var t=ct(e,150);return t.led=function(e){return f.option.plusplus?K("W016",this,this.id):(!e.identifier||U(e))&&e.id!=="."&&e.id!=="["&&K("W017",this),this.left=e,this},t}function Mt(e,t){if(!f.tokens.next.identifier)return;rt();var n=f.tokens.curr,r=f.tokens.curr.value;return U(n)?t&&f.option.inES5()?r:e&&r==="undefined"?r:(K("W024",f.tokens.curr,f.tokens.curr.id),r):r}function _t(e,t){var n=Mt(e,t);if(n)return n;f.tokens.curr.id==="function"&&f.tokens.next.id==="("?K("W025"):G("E030",f.tokens.next,f.tokens.next.value)}function Dt(e){var t=0,n;if(f.tokens.next.id!==";"||O)return;for(;;){do n=nt(t),t+=1;while(n.id!="(end)"&&n.id==="(comment)");if(n.reach)return;if(n.id!=="(endline)"){if(n.id==="function"){f.option.latedef===!0&&K("W026",n);break}K("W027",n,n.value,e);break}}}function Pt(){f.tokens.next.id!==";"?f.option.asi||(!f.option.lastsemic||f.tokens.next.id!=="}"||f.tokens.next.line!==f.tokens.curr.line)&&Q("W033",f.tokens.curr.line,f.tokens.curr.character):rt(";")}function Ht(){var e,t=N,n,i=D,s=f.tokens.next;if(s.id===";"){rt(";");return}var o=U(s);o&&s.meta&&s.meta.isFutureReservedWord&&nt().id===":"&&(K("W024",s,s.id),o=!1);if(s.value==="module"&&s.type==="(identifier)"&&nt().type==="(identifier)"){f.option.inESNext()||K("W119",f.tokens.curr,"module"),rt("module");var u=_t();et(u,{type:"unused",token:f.tokens.curr}),rt("from"),rt("(string)"),Pt();return}if(r.has(["[","{"],s.value)&&on().isDestAssign){f.option.inESNext()||K("W104",f.tokens.curr,"destructuring expression"),e=Yt(),e.forEach(function(e){$(w,"W117",e.token,e.id)}),rt("="),Zt(e,ot(10,!0)),rt(";");return}s.identifier&&!o&&nt().id===":"&&(rt(),rt(":"),D=Object.create(i),et(s.value,{type:"label"}),!f.tokens.next.labelled&&f.tokens.next.value!=="{"&&K("W028",f.tokens.next,s.value,f.tokens.next.value),f.tokens.next.label=s.value,s=f.tokens.next);if(s.id==="{"){var a=w["(verb)"]==="case"&&f.tokens.curr.value===":";Ft(!0,!0,!1,!1,a);return}return n=ot(0,!0),n&&(!n.identifier||n.value!=="function")&&n.type!=="(punctuator)"&&!f.directive["use strict"]&&f.option.globalstrict&&f.option.strict&&K("E007"),s.block||(!f.option.expr&&(!n||!n.exps)?K("W030",f.tokens.curr):f.option.nonew&&n&&n.left&&n.id==="("&&n.left.id==="new"&&K("W031",s),Pt()),N=t,D=i,n}function Bt(e){var t=[],n;while(!f.tokens.next.reach&&f.tokens.next.id!=="(end)")f.tokens.next.id===";"?(n=nt(),(!n||n.id!=="("&&n.id!=="[")&&K("W032"),rt(";")):t.push(Ht(e===f.tokens.next.line));return t}function jt(){var e,t,n;for(;;){if(f.tokens.next.id==="(string)"){t=nt(0);if(t.id==="(endline)"){e=1;do n=nt(e),e+=1;while(n.id==="(endline)");if(n.id!==";"){if(n.id!=="(string)"&&n.id!=="(number)"&&n.id!=="(regexp)"&&n.identifier!==!0&&n.id!=="}")break;K("W033",f.tokens.next)}else t=n}else if(t.id==="}")K("W033",t);else if(t.id!==";")break;rt(),f.directive[f.tokens.curr.value]&&K("W034",f.tokens.curr,f.tokens.curr.value),f.tokens.curr.value==="use strict"&&(f.option["(explicitNewcap)"]||(f.option.newcap=!0),f.option.undef=!0),f.directive[f.tokens.curr.value]=!0,t.id===";"&&rt(";");continue}break}}function Ft(e,t,n,i,s){var o,u=T,a=N,l,c=D,h,p,d;T=e;if(!e||!f.option.funcscope)D=Object.create(D);h=f.tokens.next;var v=w["(metrics)"];v.nestedBlockDepth+=1,v.verifyMaxNestedBlockDepthPerFunction();if(f.tokens.next.id==="{"){rt("{"),w["(blockscope)"].stack(),p=f.tokens.curr.line;if(f.tokens.next.id!=="}"){N+=f.option.indent;while(!e&&f.tokens.next.from>N)N+=f.option.indent;if(n){l={};for(d in f.directive)r.has(f.directive,d)&&(l[d]=f.directive[d]);jt(),f.option.strict&&w["(context)"]["(global)"]&&!l["use strict"]&&!f.directive["use strict"]&&K("E007")}o=Bt(p),v.statementCount+=o.length,n&&(f.directive=l),N-=f.option.indent}rt("}",h),w["(blockscope)"].unstack(),N=a}else if(!e)if(n){l={},t&&!i&&!f.option.inMoz(!0)&&G("W118",f.tokens.curr,"function closure expressions");if(!t)for(d in f.directive)r.has(f.directive,d)&&(l[d]=f.directive[d]);ot(10),f.option.strict&&w["(context)"]["(global)"]&&!l["use strict"]&&!f.directive["use strict"]&&K("E007")}else G("E021",f.tokens.next,"{",f.tokens.next.value);else w["(nolet)"]=!0,(!t||f.option.curly)&&K("W116",f.tokens.next,"{",f.tokens.next.value),O=!0,N+=f.option.indent,o=[Ht()],N-=f.option.indent,O=!1,delete w["(nolet)"];switch(w["(verb)"]){case"break":case"continue":case"return":case"throw":if(s)break;default:w["(verb)"]=null}if(!e||!f.option.funcscope)D=c;return T=u,e&&f.option.noempty&&(!o||o.length===0)&&K("W035"),v.nestedBlockDepth-=1,o}function It(e){A&&typeof A[e]!="boolean"&&K("W036",f.tokens.curr,e),typeof L[e]=="number"?L[e]+=1:L[e]=1}function qt(e){var t=e.value,n=Object.getOwnPropertyDescriptor(x,t);n?n.value.push(e.line):x[t]=[e.line]}function Ut(){var e={};e.exps=!0,w["(comparray)"].stack();var t=!1;return f.tokens.next.value!=="for"&&(t=!0,f.option.inMoz(!0)||K("W116",f.tokens.next,"for",f.tokens.next.value),w["(comparray)"].setState("use"),e.right=ot(10)),rt("for"),f.tokens.next.value==="each"&&(rt("each"),f.option.inMoz(!0)||K("W118",f.tokens.curr,"for each")),rt("("),w["(comparray)"].setState("define"),e.left=ot(130),r.contains(["in","of"],f.tokens.next.value)?rt():G("E045",f.tokens.curr),w["(comparray)"].setState("generate"),ot(10),rt(")"),f.tokens.next.value==="if"&&(rt("if"),rt("("),w["(comparray)"].setState("filter"),e.filter=ot(10),rt(")")),t||(w["(comparray)"].setState("use"),e.right=ot(10)),rt("]"),w["(comparray)"].unstack(),e}function zt(){var e=Mt(!1,!0);return e||(f.tokens.next.id==="(string)"?(e=f.tokens.next.value,rt()):f.tokens.next.id==="(number)"&&(e=f.tokens.next.value.toString(),rt())),e==="hasOwnProperty"&&K("W001"),e}function Wt(e){var t,n,i=[],s,o=[],u,a=!1;if(e){if(Array.isArray(e)){for(var l in e){t=e[l];if(t.value==="..."){f.option.inESNext()||K("W104",t,"spread/rest operator");continue}t.value!==","&&(i.push(t.value),et(t.value,{type:"unused",token:t}))}return i}if(e.identifier===!0)return et(e.value,{type:"unused",token:e}),[e]}n=f.tokens.next,rt("(");if(f.tokens.next.id===")"){rt(")");return}for(;;){if(r.contains(["{","["],f.tokens.next.id)){o=Yt();for(u in o)u=o[u],u.id&&(i.push(u.id),et(u.id,{type:"unused",token:u.token}))}else f.tokens.next.value==="..."?(f.option.inESNext()||K("W104",f.tokens.next,"spread/rest operator"),rt("..."),s=_t(!0),i.push(s),et(s,{type:"unused",token:f.tokens.curr})):(s=_t(!0),i.push(s),et(s,{type:"unused",token:f.tokens.curr}));a&&f.tokens.next.id!=="="&&G("E051",f.tokens.current),f.tokens.next.id==="="&&(f.option.inESNext()||K("W119",f.tokens.next,"default parameters"),rt("="),a=!0,ot(10));if(f.tokens.next.id!==",")return rt(")",n),i;lt()}}function Xt(e,t,n){e["(properties)"][t]||(e["(properties)"][t]={unused:!1}),r.extend(e["(properties)"][t],n)}function Vt(e,t,n){return e["(properties)"][t]?e["(properties)"][t][n]||null:null}function $t(e,t,n,i){var s={"(name)":e,"(breakage)":0,"(loopage)":0,"(scope)":n,"(tokens)":{},"(properties)":{},"(catch)":!1,"(global)":!1,"(line)":null,"(character)":null,"(metrics)":null,"(statement)":null,"(context)":null,"(blockscope)":null,"(comparray)":null,"(generator)":null,"(params)":null};return t&&r.extend(s,{"(line)":t.line,"(character)":t.character,"(metrics)":Kt(t)}),r.extend(s,i),s["(context)"]&&(s["(blockscope)"]=s["(context)"]["(blockscope)"],s["(comparray)"]=s["(context)"]["(comparray)"]),s}function Jt(t,n,i,s){var o,u=f.option,a=f.ignored,l=D;return f.option=Object.create(f.option),f.ignored=Object.create(f.ignored),D=Object.create(D),w=$t(t||'"'+e+'"',f.tokens.next,D,{"(statement)":n,"(context)":w,"(generator)":i?!0:null}),o=w,f.tokens.curr.funct=w,E.push(w),t&&et(t,{type:"function"}),w["(params)"]=Wt(s),w["(metrics)"].verifyMaxParametersPerFunction(w["(params)"]),c.undefs=r.filter(c.undefs,function(e){return!r.contains(r.union(s),e[2])}),Ft(!1,!0,!0,s?!0:!1),!f.option.noyield&&i&&w["(generator)"]!=="yielded"&&K("W124",f.tokens.curr),w["(metrics)"].verifyMaxStatementsPerFunction(),w["(metrics)"].verifyMaxComplexityPerFunction(),w["(unusedOption)"]=f.option.unused,D=l,f.option=u,f.ignored=a,w["(last)"]=f.tokens.curr.line,w["(lastcharacter)"]=f.tokens.curr.character,r.map(Object.keys(w),function(e){if(e[0]==="(")return;w["(blockscope)"].unshadow(e)}),w=w["(context)"],o}function Kt(e){return{statementCount:0,nestedBlockDepth:-1,ComplexityCount:1,verifyMaxStatementsPerFunction:function(){f.option.maxstatements&&this.statementCount>f.option.maxstatements&&K("W071",e,this.statementCount)},verifyMaxParametersPerFunction:function(t){t=t||[],f.option.maxparams&&t.length>f.option.maxparams&&K("W072",e,t.length)},verifyMaxNestedBlockDepthPerFunction:function(){f.option.maxdepth&&this.nestedBlockDepth>0&&this.nestedBlockDepth===f.option.maxdepth+1&&K("W073",null,this.nestedBlockDepth)},verifyMaxComplexityPerFunction:function(){var t=f.option.maxcomplexity,n=this.ComplexityCount;t&&n>t&&K("W074",e,n)}}}function Qt(){w["(metrics)"].ComplexityCount+=1}function Gt(e){var t,n;e&&(t=e.id,n=e.paren,t===","&&(e=e.exprs[e.exprs.length-1])&&(t=e.id,n=n||e.paren));switch(t){case"=":case"+=":case"-=":case"*=":case"%=":case"&=":case"|=":case"^=":case"/=":!n&&!f.option.boss&&K("W084")}}function Yt(){var e,t,n=[];f.option.inESNext()||K("W104",f.tokens.curr,"destructuring expression");var i=function(){var e;if(r.contains(["[","{"],f.tokens.next.value)){t=Yt();for(var s in t)s=t[s],n.push({id:s.id,token:s.token})}else f.tokens.next.value===","?n.push({id:null,token:f.tokens.curr}):f.tokens.next.value==="("?(rt("("),i(),rt(")")):(e=_t(),e&&n.push({id:e,token:f.tokens.curr}))};if(f.tokens.next.value==="["){rt("["),i();while(f.tokens.next.value!=="]")rt(","),i();rt("]")}else if(f.tokens.next.value==="{"){rt("{"),e=_t(),f.tokens.next.value===":"?(rt(":"),i()):n.push({id:e,token:f.tokens.curr});while(f.tokens.next.value!=="}")rt(","),e=_t(),f.tokens.next.value===":"?(rt(":"),i()):n.push({id:e,token:f.tokens.curr});rt("}")}return n}function Zt(e,t){var n=t.first;if(!n)return;r.zip(e,Array.isArray(n)?n:[n]).forEach(function(e){var t=e[0],n=e[1];t&&n?t.first=n:t&&t.first&&!n&&K("W080",t.first,t.first.value)})}function rn(e){return f.option.inESNext()||K("W104",f.tokens.curr,"class"),e?(this.name=_t(),et(this.name,{type:"unused",token:f.tokens.curr})):f.tokens.next.identifier&&f.tokens.next.value!=="extends"&&(this.name=_t()),sn(this),this}function sn(e){var t=f.directive["use strict"];f.tokens.next.value==="extends"&&(rt("extends"),e.heritage=ot(10)),f.directive["use strict"]=!0,rt("{"),e.body=f.syntax["{"].nud(!0),f.directive["use strict"]=t}function un(){var e=on();e.notJson?(!f.option.inESNext()&&e.isDestAssign&&K("W104",f.tokens.curr,"destructuring assignment"),Bt()):(f.option.laxbreak=!0,f.jsonMode=!0,fn())}function fn(){function e(){var e={},t=f.tokens.next;rt("{");if(f.tokens.next.id!=="}")for(;;){if(f.tokens.next.id==="(end)")G("E026",f.tokens.next,t.line);else{if(f.tokens.next.id==="}"){K("W094",f.tokens.curr);break}f.tokens.next.id===","?G("E028",f.tokens.next):f.tokens.next.id!=="(string)"&&K("W095",f.tokens.next,f.tokens.next.value)}e[f.tokens.next.value]===!0?K("W075",f.tokens.next,f.tokens.next.value):f.tokens.next.value==="__proto__"&&!f.option.proto||f.tokens.next.value==="__iterator__"&&!f.option.iterator?K("W096",f.tokens.next,f.tokens.next.value):e[f.tokens.next.value]=!0,rt(),rt(":"),fn();if(f.tokens.next.id!==",")break;rt(",")}rt("}")}function t(){var e=f.tokens.next;rt("[");if(f.tokens.next.id!=="]")for(;;){if(f.tokens.next.id==="(end)")G("E027",f.tokens.next,e.line);else{if(f.tokens.next.id==="]"){K("W094",f.tokens.curr);break}f.tokens.next.id===","&&G("E028",f.tokens.next)}fn();if(f.tokens.next.id!==",")break;rt(",")}rt("]")}switch(f.tokens.next.id){case"{":e();break;case"[":t();break;case"true":case"false":case"null":case"(number)":case"(string)":rt();break;case"-":rt("-"),rt("(number)");break;default:G("E003",f.tokens.next)}}var e,t,n={"<":!0,"<=":!0,"==":!0,"===":!0,"!==":!0,"!=":!0,">":!0,">=":!0,"+":!0,"-":!0,"*":!0,"/":!0,"%":!0},h={asi:!0,bitwise:!0,boss:!0,browser:!0,camelcase:!0,couch:!0,curly:!0,debug:!0,devel:!0,dojo:!0,eqeqeq:!0,eqnull:!0,notypeof:!0,es3:!0,es5:!0,esnext:!0,moz:!0,evil:!0,expr:!0,forin:!0,funcscope:!0,globalstrict:!0,immed:!0,iterator:!0,jasmine:!0,jquery:!0,lastsemic:!0,laxbreak:!0,laxcomma:!0,loopfunc:!0,mootools:!0,multistr:!0,freeze:!0,newcap:!0,noarg:!0,node:!0,noempty:!0,nonbsp:!0,nonew:!0,nonstandard:!0,phantom:!0,plusplus:!0,proto:!0,prototypejs:!0,qunit:!0,rhino:!0,shelljs:!0,typed:!0,undef:!0,scripturl:!0,strict:!0,sub:!0,supernew:!0,validthis:!0,withstmt:!0,worker:!0,wsh:!0,yui:!0,mocha:!0,noyield:!0,onecase:!0,regexp:!0,regexdash:!0},p={maxlen:!1,indent:!1,maxerr:!1,predef:!1,globals:!1,quotmark:!1,scope:!1,maxstatements:!1,maxdepth:!1,maxparams:!1,maxcomplexity:!1,shadow:!1,unused:!0,latedef:!1,ignore:!1},d={bitwise:!0,forin:!0,newcap:!0,plusplus:!0,regexp:!0,undef:!0,eqeqeq:!0,strict:!0},v={eqeq:"eqeqeq",windows:"wsh",sloppy:"strict"},m={nomen:!0,onevar:!0,passfail:!0,white:!0,gcl:!0,smarttabs:!0,trailing:!0},g,y,b=["closure","exception","global","label","outer","unused","var"],w,E,S,x,T,N,C,k,L,A,O,M,D,P,H,B,j=[],F=new i.EventEmitter;gt("(number)",function(){return this}),gt("(string)",function(){return this}),gt("(template)",function(){return this}),f.syntax["(identifier)"]={type:"(identifier)",lbp:0,identifier:!0,nud:function(){var t=this.value,n=D[t],r,i;typeof n=="function"?n=undefined:!w["(blockscope)"].current.has(t)&&typeof n=="boolean"&&(r=w,w=E[0],et(t,{type:"var"}),n=w,w=r),i=w["(blockscope)"].getlabel(t);if(w===n||i)switch(i?i[t]["(type)"]:w[t]){case"unused":i?i[t]["(type)"]="var":w[t]="var";break;case"unction":i?i[t]["(type)"]="function":w[t]="function",this["function"]=!0;break;case"const":Xt(w,t,{unused:!1});break;case"function":this["function"]=!0;break;case"label":K("W037",f.tokens.curr,t)}else if(w["(global)"])typeof M[t]!="boolean"&&(e!=="typeof"&&e!=="delete"||f.tokens.next&&(f.tokens.next.value==="."||f.tokens.next.value==="["))&&(w["(comparray)"].check(t)||$(w,"W117",f.tokens.curr,t)),qt(f.tokens.curr);else switch(w[t]){case"closure":case"function":case"var":case"unused":K("W038",f.tokens.curr,t);break;case"label":K("W037",f.tokens.curr,t);break;case"outer":case"global":break;default:if(n===!0)w[t]=!0;else if(n===null)K("W039",f.tokens.curr,t),qt(f.tokens.curr);else if(typeof n!="object")(e!=="typeof"&&e!=="delete"||f.tokens.next&&(f.tokens.next.value==="."||f.tokens.next.value==="["))&&$(w,"W117",f.tokens.curr,t),w[t]=!0,qt(f.tokens.curr);else switch(n[t]){case"function":case"unction":this["function"]=!0,n[t]="closure",w[t]=n["(global)"]?"global":"outer";break;case"var":case"unused":n[t]="closure",w[t]=n["(global)"]?"global":"outer";break;case"const":Xt(n,t,{unused:!1});break;case"closure":w[t]=n["(global)"]?"global":"outer";break;case"label":K("W037",f.tokens.curr,t)}}return this},led:function(){G("E033",f.tokens.next,f.tokens.next.value)}},gt("(regexp)",function(){return this}),ht("(endline)"),ht("(begin)"),ht("(end)").reach=!0,ht("(error)").reach=!0,ht("}").reach=!0,ht(")"),ht("]"),ht('"').reach=!0,ht("'").reach=!0,ht(";"),ht(":").reach=!0,ht("#"),yt("else"),yt("case").reach=!0,yt("catch"),yt("default").reach=!0,yt("finally"),wt("arguments",function(e){f.directive["use strict"]&&w["(global)"]&&K("E008",e)}),wt("eval"),wt("false"),wt("Infinity"),wt("null"),wt("this",function(e){f.directive["use strict"]&&!f.option.validthis&&(w["(statement)"]&&w["(name)"].charAt(0)>"Z"||w["(global)"])&&K("W040",e)}),wt("true"),wt("undefined"),kt("=","assign",20),kt("+=","assignadd",20),kt("-=","assignsub",20),kt("*=","assignmult",20),kt("/=","assigndiv",20).nud=function(){G("E014")},kt("%=","assignmod",20),At("&=","assignbitand",20),At("|=","assignbitor",20),At("^=","assignbitxor",20),At("<<=","assignshiftleft",20),At(">>=","assignshiftright",20),At(">>>=","assignshiftrightunsigned",20),Et(",",function(e,t){var n;t.exprs=[e];if(!lt({peek:!0}))return t;for(;;){if(!(n=ot(10)))break;t.exprs.push(n);if(f.tokens.next.value!==","||!lt())break}return t},10,!0),Et("?",function(e,t){return Qt(),t.left=e,t.right=ot(10),rt(":"),t["else"]=ot(10),t},30);var Rt=40;Et("||",function(e,t){return Qt(),t.left=e,t.right=ot(Rt),t},Rt),Et("&&","and",50),Lt("|","bitor",70),Lt("^","bitxor",80),Lt("&","bitand",90),xt("==",function(e,t){var n=f.option.eqnull&&(e.value==="null"||t.value==="null");switch(!0){case!n&&f.option.eqeqeq:this.from=this.character,K("W116",this,"===","==");break;case Tt(e):K("W041",this,"===",e.value);break;case Tt(t):K("W041",this,"===",t.value);break;case Nt(t,e):K("W122",this,t.value);break;case Nt(e,t):K("W122",this,e.value)}return this}),xt("===",function(e,t){return Nt(t,e)?K("W122",this,t.value):Nt(e,t)&&K("W122",this,e.value),this}),xt("!=",function(e,t){var n=f.option.eqnull&&(e.value==="null"||t.value==="null");return!n&&f.option.eqeqeq?(this.from=this.character,K("W116",this,"!==","!=")):Tt(e)?K("W041",this,"!==",e.value):Tt(t)?K("W041",this,"!==",t.value):Nt(t,e)?K("W122",this,t.value):Nt(e,t)&&K("W122",this,e.value),this}),xt("!==",function(e,t){return Nt(t,e)?K("W122",this,t.value):Nt(e,t)&&K("W122",this,e.value),this}),xt("<"),xt(">"),xt("<="),xt(">="),Lt("<<","shiftleft",120),Lt(">>","shiftright",120),Lt(">>>","shiftrightunsigned",120),Et("in","in",120),Et("instanceof","instanceof",120),Et("+",function(e,t){var n=ot(130);return e&&n&&e.id==="(string)"&&n.id==="(string)"?(e.value+=n.value,e.character=n.character,!f.option.scripturl&&a.javascriptURL.test(e.value)&&K("W050",e),e):(t.left=e,t.right=n,t)},130),mt("+","num"),mt("+++",function(){return K("W007"),this.right=ot(150),this.arity="unary",this}),Et("+++",function(e){return K("W007"),this.left=e,this.right=ot(130),this},130),Et("-","sub",130),mt("-","neg"),mt("---",function(){return K("W006"),this.right=ot(150),this.arity="unary",this}),Et("---",function(e){return K("W006"),this.left=e,this.right=ot(130),this},130),Et("*","mult",140),Et("/","div",140),Et("%","mod",140),Ot("++","postinc"),mt("++","preinc"),f.syntax["++"].exps=!0,Ot("--","postdec"),mt("--","predec"),f.syntax["--"].exps=!0,mt("delete",function(){var e=ot(10);return(!e||e.id!=="."&&e.id!=="[")&&K("W051"),this.first=e,this}).exps=!0,mt("~",function(){return f.option.bitwise&&K("W052",this,"~"),ot(150),this}),mt("...",function(){return f.option.inESNext()||K("W104",this,"spread/rest operator"),f.tokens.next.identifier||G("E030",f.tokens.next,f.tokens.next.value),ot(150),this}),mt("!",function(){return this.right=ot(150),this.arity="unary",this.right||V("E041",this.line||0),n[this.right.id]===!0&&K("W018",this,"!"),this}),mt("typeof","typeof"),mt("new",function(){var e=ot(155),t;if(e&&e.id!=="function")if(e.identifier){e["new"]=!0;switch(e.value){case"Number":case"String":case"Boolean":case"Math":case"JSON":K("W053",f.tokens.prev,e.value);break;case"Function":f.option.evil||K("W054");break;case"Date":case"RegExp":case"this":break;default:e.id!=="function"&&(t=e.value.substr(0,1),f.option.newcap&&(t<"A"||t>"Z")&&!r.has(S,e.value)&&K("W055",f.tokens.curr))}}else e.id!=="."&&e.id!=="["&&e.id!=="("&&K("W056",f.tokens.curr);else f.option.supernew||K("W057",this);return f.tokens.next.id!=="("&&!f.option.supernew&&K("W058",f.tokens.curr,f.tokens.curr.value),this.first=e,this}),f.syntax["new"].exps=!0,mt("void").exps=!0,Et(".",function(e,t){var n=_t(!1,!0);return typeof n=="string"&&It(n),t.left=e,t.right=n,n&&n==="hasOwnProperty"&&f.tokens.next.value==="="&&K("W001"),!e||e.value!=="arguments"||n!=="callee"&&n!=="caller"?!f.option.evil&&e&&e.value==="document"&&(n==="write"||n==="writeln")&&K("W060",e):f.option.noarg?K("W059",e,n):f.directive["use strict"]&&G("E008"),!f.option.evil&&(n==="eval"||n==="execScript")&&K("W061"),t},160,!0),Et("(",function(e,t){f.option.immed&&e&&!e.immed&&e.id==="function"&&K("W062");var n=0,r=[];e&&e.type==="(identifier)"&&e.value.match(/^[A-Z]([A-Z0-9_$]*[a-z][A-Za-z0-9_$]*)?$/)&&"Number String Boolean Date Object Error".indexOf(e.value)===-1&&(e.value==="Math"?K("W063",e):f.option.newcap&&K("W064",e));if(f.tokens.next.id!==")")for(;;){r[r.length]=ot(10),n+=1;if(f.tokens.next.id!==",")break;lt()}return rt(")"),typeof e=="object"&&(f.option.inES3()&&e.value==="parseInt"&&n===1&&K("W065",f.tokens.curr),f.option.evil||(e.value==="eval"||e.value==="Function"||e.value==="execScript"?(K("W061",e),r[0]&&[0].id==="(string)"&&Z(e,r[0].value)):!r[0]||r[0].id!=="(string)"||e.value!=="setTimeout"&&e.value!=="setInterval"?r[0]&&r[0].id==="(string)"&&e.value==="."&&e.left.value==="window"&&(e.right==="setTimeout"||e.right==="setInterval")&&(K("W066",e),Z(e,r[0].value)):(K("W066",e),Z(e,r[0].value))),!e.identifier&&e.id!=="."&&e.id!=="["&&e.id!=="("&&e.id!=="&&"&&e.id!=="||"&&e.id!=="?"&&K("W067",e)),t.left=e,t},155,!0).exps=!0,mt("(",function(){var e,t=[],n,i,s=0,o,u=1;do n=nt(s),n.value==="("?u+=1:n.value===")"&&(u-=1),s+=1,i=nt(s);while((u!==0||n.value!==")")&&i.value!=="=>"&&i.value!==";"&&i.type!=="(end)");f.tokens.next.id==="function"&&(f.tokens.next.immed=!0);var a=[];if(f.tokens.next.id!==")")for(;;){if(i.value==="=>"&&r.contains(["{","["],f.tokens.next.value)){e=f.tokens.next,e.left=Yt(),t.push(e);for(var l in e.left)a.push(e.left[l].token)}else a.push(ot(10));if(f.tokens.next.id!==",")break;lt()}rt(")",this),f.option.immed&&a[0]&&a[0].id==="function"&&f.tokens.next.id!=="("&&(f.tokens.next.id!=="."||nt().value!=="call"&&nt().value!=="apply")&&K("W068",this);if(f.tokens.next.value==="=>")return a;if(!a.length)return;return a.length>1?(o=Object.create(f.syntax[","]),o.exprs=a):o=a[0],o&&(o.paren=!0),o}),St("=>"),Et("[",function(e,t){var n=ot(10),r;return n&&n.type==="(string)"&&(!f.option.evil&&(n.value==="eval"||n.value==="execScript")&&K("W061",t),It(n.value),!f.option.sub&&a.identifier.test(n.value)&&(r=f.syntax[n.value],(!r||!U(r))&&K("W069",f.tokens.prev,n.value))),rt("]",t),n&&n.value==="hasOwnProperty"&&f.tokens.next.value==="="&&K("W001"),t.left=e,t.right=n,t},160,!0),mt("[",function(){var e=on(!0);if(e.isCompArray)return f.option.inESNext()||K("W119",f.tokens.curr,"array comprehension"),Ut();e.isDestAssign&&!f.option.inESNext()&&K("W104",f.tokens.curr,"destructuring assignment");var t=f.tokens.curr.line!==f.tokens.next.line;this.first=[],t&&(N+=f.option.indent,f.tokens.next.from===N+f.option.indent&&(N+=f.option.indent));while(f.tokens.next.id!=="(end)"){while(f.tokens.next.id===",")f.option.inES5()||K("W070"),rt(",");if(f.tokens.next.id==="]")break;this.first.push(ot(10));if(f.tokens.next.id!==",")break;lt({allowTrailing:!0});if(f.tokens.next.id==="]"&&!f.option.inES5(!0)){K("W070",f.tokens.curr);break}}return t&&(N-=f.option.indent),rt("]",this),this},160),function(e){e.nud=function(e){function c(e,t){a[e]&&r.has(a,e)?K("W075",f.tokens.next,i):a[e]={},a[e].basic=!0,a[e].basictkn=t}function h(e,t){a[e]&&r.has(a,e)?(a[e].basic||a[e].setter)&&K("W075",f.tokens.next,i):a[e]={},a[e].setter=!0,a[e].setterToken=t}function p(e){a[e]&&r.has(a,e)?(a[e].basic||a[e].getter)&&K("W075",f.tokens.next,i):a[e]={},a[e].getter=!0,a[e].getterToken=f.tokens.curr}var t,n,i,s,o,u,a={},l="";t=f.tokens.curr.line!==f.tokens.next.line,t&&(N+=f.option.indent,f.tokens.next.from===N+f.option.indent&&(N+=f.option.indent));for(;;){if(f.tokens.next.id==="}")break;e&&f.tokens.next.value==="static"&&(rt("static"),l="static ");if(f.tokens.next.value==="get"&&nt().id!==":")rt("get"),f.option.inES5(!e)||G("E034"),i=zt(),!i&&!f.option.inESNext()&&G("E035"),e&&i==="constructor"&&G("E049",f.tokens.next,"class getter method",i),i&&p(l+i),o=f.tokens.next,n=Jt(),s=n["(params)"],i&&s&&K("W076",o,s[0],i);else if(f.tokens.next.value==="set"&&nt().id!==":")rt("set"),f.option.inES5(!e)||G("E034"),i=zt(),!i&&!f.option.inESNext()&&G("E035"),e&&i==="constructor"&&G("E049",f.tokens.next,"class setter method",i),i&&h(l+i,f.tokens.next),o=f.tokens.next,n=Jt(),s=n["(params)"],i&&(!s||s.length!==1)&&K("W077",o,i);else{u=!1,f.tokens.next.value==="*"&&f.tokens.next.type==="(punctuator)"&&(f.option.inESNext()||K("W104",f.tokens.next,"generator functions"),rt("*"),u=!0),i=zt(),c(l+i,f.tokens.next);if(typeof i!="string")break;f.tokens.next.value==="("?(f.option.inESNext()||K("W104",f.tokens.curr,"concise methods"),Jt(i,undefined,u)):e||(rt(":"),ot(10))}e&&i==="prototype"&&G("E049",f.tokens.next,"class method",i),It(i);if(e){l="";continue}if(f.tokens.next.id!==",")break;lt({allowTrailing:!0,property:!0}),f.tokens.next.id===","?K("W070",f.tokens.curr):f.tokens.next.id==="}"&&!f.option.inES5(!0)&&K("W070",f.tokens.curr)}t&&(N-=f.option.indent),rt("}",this);if(f.option.inES5())for(var d in a)r.has(a,d)&&a[d].setter&&!a[d].getter&&K("W078",a[d].setterToken);return this},e.fud=function(){G("E036",f.tokens.curr)}}(ht("{"));var en=pt("const",function(e){var t,n,i;f.option.inESNext()||K("W104",f.tokens.curr,"const"),this.first=[];for(;;){var s=[];r.contains(["{","["],f.tokens.next.value)?(t=Yt(),i=!1):(t=[{id:_t(),token:f.tokens.curr}],i=!0);for(var o in t)t.hasOwnProperty(o)&&(o=t[o],w[o.id]==="const"&&K("E011",null,o.id),w["(global)"]&&M[o.id]===!1&&K("W079",o.token,o.id),o.id&&(et(o.id,{token:o.token,type:"const",unused:!0}),s.push(o.token)));if(e)break;this.first=this.first.concat(s),f.tokens.next.id!=="="&&K("E012",f.tokens.curr,f.tokens.curr.value),f.tokens.next.id==="="&&(rt("="),f.tokens.next.id==="undefined"&&K("W080",f.tokens.prev,f.tokens.prev.value),nt(0).id==="="&&f.tokens.next.identifier&&K("W120",f.tokens.next,f.tokens.next.value),n=ot(10),i?t[0].first=n:Zt(s,n));if(f.tokens.next.id!==",")break;lt()}return this});en.exps=!0;var tn=pt("var",function(e){var t,n,i;this.first=[];for(;;){var s=[];r.contains(["{","["],f.tokens.next.value)?(t=Yt(),n=!1):(t=[{id:_t(),token:f.tokens.curr}],n=!0);for(var o in t)t.hasOwnProperty(o)&&(o=t[o],f.option.inESNext()&&w[o.id]==="const"&&K("E011",null,o.id),w["(global)"]&&M[o.id]===!1&&K("W079",o.token,o.id),o.id&&(et(o.id,{type:"unused",token:o.token}),s.push(o.token)));if(e)break;this.first=this.first.concat(s),f.tokens.next.id==="="&&(rt("="),f.tokens.next.id==="undefined"&&K("W080",f.tokens.prev,f.tokens.prev.value),nt(0).id==="="&&f.tokens.next.identifier&&K("W120",f.tokens.next,f.tokens.next.value),i=ot(10),n?t[0].first=i:Zt(s,i));if(f.tokens.next.id!==",")break;lt()}return this});tn.exps=!0;var nn=pt("let",function(e){var t,n,i,s;f.option.inESNext()||K("W104",f.tokens.curr,"let"),f.tokens.next.value==="("?(f.option.inMoz(!0)||K("W118",f.tokens.next,"let block"),rt("("),w["(blockscope)"].stack(),s=!0):w["(nolet)"]&&G("E048",f.tokens.curr),this.first=[];for(;;){var o=[];r.contains(["{","["],f.tokens.next.value)?(t=Yt(),n=!1):(t=[{id:_t(),token:f.tokens.curr.value}],n=!0);for(var u in t)t.hasOwnProperty(u)&&(u=t[u],f.option.inESNext()&&w[u.id]==="const"&&K("E011",null,u.id),w["(global)"]&&M[u.id]===!1&&K("W079",u.token,u.id),u.id&&!w["(nolet)"]&&(et(u.id,{type:"unused",token:u.token,islet:!0}),o.push(u.token)));if(e)break;this.first=this.first.concat(o),f.tokens.next.id==="="&&(rt("="),f.tokens.next.id==="undefined"&&K("W080",f.tokens.prev,f.tokens.prev.value),nt(0).id==="="&&f.tokens.next.identifier&&K("W120",f.tokens.next,f.tokens.next.value),i=ot(10),n?t[0].first=i:Zt(o,i));if(f.tokens.next.id!==",")break;lt()}return s&&(rt(")"),Ft(!0,!0),this.block=!0,w["(blockscope)"].unstack()),this});nn.exps=!0,dt("class",function(){return rn.call(this,!0)}),dt("function",function(){var e=!1;f.tokens.next.value==="*"&&(rt("*"),f.option.inESNext(!0)?e=!0:K("W119",f.tokens.curr,"function*")),T&&K("W082",f.tokens.curr);var t=_t();return w[t]==="const"&&K("E011",null,t),et(t,{type:"unction",token:f.tokens.curr}),Jt(t,{statement:!0},e),f.tokens.next.id==="("&&f.tokens.next.line===f.tokens.curr.line&&G("E039"),this}),mt("function",function(){var e=!1;f.tokens.next.value==="*"&&(f.option.inESNext()||K("W119",f.tokens.curr,"function*"),rt("*"),e=!0);var t=Mt();return Jt(t,undefined,e),!f.option.loopfunc&&w["(loopage)"]&&K("W083"),this}),dt("if",function(){var e=f.tokens.next;return Qt(),f.condition=!0,rt("("),Gt(ot(0)),rt(")",e),f.condition=!1,Ft(!0,!0),f.tokens.next.id==="else"&&(rt("else"),f.tokens.next.id==="if"||f.tokens.next.id==="switch"?Ht(!0):Ft(!0,!0)),this}),dt("try",function(){function t(){var e=D,t;rt("catch"),rt("("),D=Object.create(e),t=f.tokens.next.value,f.tokens.next.type!=="(identifier)"&&(t=null,K("E030",f.tokens.next,t)),rt(),w=$t("(catch)",f.tokens.next,D,{"(context)":w,"(breakage)":w["(breakage)"],"(loopage)":w["(loopage)"],"(statement)":!1,"(catch)":!0}),t&&et(t,{type:"exception"}),f.tokens.next.value==="if"&&(f.option.inMoz(!0)||K("W118",f.tokens.curr,"catch filter"),rt("if"),ot(0)),rt(")"),f.tokens.curr.funct=w,E.push(w),Ft(!1),D=e,w["(last)"]=f.tokens.curr.line,w["(lastcharacter)"]=f.tokens.curr.character,w=w["(context)"]}var e;Ft(!0);while(f.tokens.next.id==="catch")Qt(),e&&!f.option.inMoz(!0)&&K("W118",f.tokens.next,"multiple catch blocks"),t(),e=!0;if(f.tokens.next.id==="finally"){rt("finally"),Ft(!0);return}return e||G("E021",f.tokens.next,"catch",f.tokens.next.value),this}),dt("while",function(){var e=f.tokens.next;return w["(breakage)"]+=1,w["(loopage)"]+=1,Qt(),rt("("),Gt(ot(0)),rt(")",e),Ft(!0,!0),w["(breakage)"]-=1,w["(loopage)"]-=1,this}).labelled=!0,dt("with",function(){var e=f.tokens.next;return f.directive["use strict"]?G("E010",f.tokens.curr):f.option.withstmt||K("W085",f.tokens.curr),rt("("),ot(0),rt(")",e),Ft(!0,!0),this}),dt("switch",function(){var e=f.tokens.next,t=!1,n=!1;w["(breakage)"]+=1,rt("("),Gt(ot(0)),rt(")",e),e=f.tokens.next,rt("{"),f.tokens.next.from===N&&(n=!0),n||(N+=f.option.indent),this.cases=[];for(;;)switch(f.tokens.next.id){case"case":switch(w["(verb)"]){case"yield":case"break":case"case":case"continue":case"return":case"switch":case"throw":break;default:a.fallsThrough.test(f.lines[f.tokens.next.line-2])||K("W086",f.tokens.curr,"case")}rt("case"),this.cases.push(ot(0)),Qt(),t=!0,rt(":"),w["(verb)"]="case";break;case"default":switch(w["(verb)"]){case"yield":case"break":case"continue":case"return":case"throw":break;default:this.cases.length&&(a.fallsThrough.test(f.lines[f.tokens.next.line-2])||K("W086",f.tokens.curr,"default"))}rt("default"),t=!0,rt(":");break;case"}":n||(N-=f.option.indent),rt("}",e),w["(breakage)"]-=1,w["(verb)"]=undefined;return;case"(end)":G("E023",f.tokens.next,"}");return;default:N+=f.option.indent;if(t)switch(f.tokens.curr.id){case",":G("E040");return;case":":t=!1,Bt();break;default:G("E025",f.tokens.curr);return}else{if(f.tokens.curr.id!==":"){G("E021",f.tokens.next,"case",f.tokens.next.value);return}rt(":"),G("E024",f.tokens.curr,":"),Bt()}N-=f.option.indent}}).labelled=!0,pt("debugger",function(){return f.option.debug||K("W087",this),this}).exps=!0,function(){var e=pt("do",function(){w["(breakage)"]+=1,w["(loopage)"]+=1,Qt(),this.first=Ft(!0,!0),rt("while");var e=f.tokens.next;return rt("("),Gt(ot(0)),rt(")",e),w["(breakage)"]-=1,w["(loopage)"]-=1,this});e.labelled=!0,e.exps=!0}(),dt("for",function(){var e,t=f.tokens.next,n=!1,i=null;t.value==="each"&&(i=t,rt("each"),f.option.inMoz(!0)||K("W118",f.tokens.curr,"for each")),w["(breakage)"]+=1,w["(loopage)"]+=1,Qt(),rt("(");var s,o=0,u=["in","of"];do s=nt(o),++o;while(!r.contains(u,s.value)&&s.value!==";"&&s.type!=="(end)");if(r.contains(u,s.value)){!f.option.inESNext()&&s.value==="of"&&G("W104",s,"for of");if(f.tokens.next.id==="var")rt("var"),f.syntax["var"].fud.call(f.syntax["var"].fud,!0);else if(f.tokens.next.id==="let")rt("let"),n=!0,w["(blockscope)"].stack(),f.syntax.let.fud.call(f.syntax.let.fud,!0);else if(!f.tokens.next.identifier)G("E030",f.tokens.next,f.tokens.next.type),rt();else{switch(w[f.tokens.next.value]){case"unused":w[f.tokens.next.value]="var";break;case"var":break;default:w["(blockscope)"].getlabel(f.tokens.next.value)||K("W088",f.tokens.next,f.tokens.next.value)}rt()}rt(s.value),ot(20),rt(")",t),e=Ft(!0,!0),f.option.forin&&e&&(e.length>1||typeof e[0]!="object"||e[0].value!=="if")&&K("W089",this),w["(breakage)"]-=1,w["(loopage)"]-=1}else{i&&G("E045",i);if(f.tokens.next.id!==";")if(f.tokens.next.id==="var")rt("var"),f.syntax["var"].fud.call(f.syntax["var"].fud);else if(f.tokens.next.id==="let")rt("let"),n=!0,w["(blockscope)"].stack(),f.syntax.let.fud.call(f.syntax.let.fud);else for(;;){ot(0,"for");if(f.tokens.next.id!==",")break;lt()}at(f.tokens.curr),rt(";"),f.tokens.next.id!==";"&&Gt(ot(0)),at(f.tokens.curr),rt(";"),f.tokens.next.id===";"&&G("E021",f.tokens.next,")",";");if(f.tokens.next.id!==")")for(;;){ot(0,"for");if(f.tokens.next.id!==",")break;lt()}rt(")",t),Ft(!0,!0),w["(breakage)"]-=1,w["(loopage)"]-=1}return n&&w["(blockscope)"].unstack(),this}).labelled=!0,pt("break",function(){var e=f.tokens.next.value;return w["(breakage)"]===0&&K("W052",f.tokens.next,this.value),f.option.asi||at(this),f.tokens.next.id!==";"&&!f.tokens.next.reach&&f.tokens.curr.line===f.tokens.next.line&&(w[e]!=="label"?K("W090",f.tokens.next,e):D[e]!==w&&K("W091",f.tokens.next,e),this.first=f.tokens.next,rt()),Dt("break"),this}).exps=!0,pt("continue",function(){var e=f.tokens.next.value;return w["(breakage)"]===0&&K("W052",f.tokens.next,this.value),f.option.asi||at(this),f.tokens.next.id!==";"&&!f.tokens.next.reach?f.tokens.curr.line===f.tokens.next.line&&(w[e]!=="label"?K("W090",f.tokens.next,e):D[e]!==w&&K("W091",f.tokens.next,e),this.first=f.tokens.next,rt()):w["(loopage)"]||K("W052",f.tokens.next,this.value),Dt("continue"),this}).exps=!0,pt("return",function(){return this.line===f.tokens.next.line?f.tokens.next.id!==";"&&!f.tokens.next.reach&&(this.first=ot(0),this.first&&this.first.type==="(punctuator)"&&this.first.value==="="&&!this.first.paren&&!f.option.boss&&Q("W093",this.first.line,this.first.character)):f.tokens.next.type==="(punctuator)"&&["[","{","+","-"].indexOf(f.tokens.next.value)>-1&&at(this),Dt("return"),this}).exps=!0,function(e){e.exps=!0,e.lbp=25}(mt("yield",function(){var e=f.tokens.prev;return f.option.inESNext(!0)&&!w["(generator)"]?("(catch)"!==w["(name)"]||!w["(context)"]["(generator)"])&&G("E046",f.tokens.curr,"yield"):f.option.inESNext()||K("W104",f.tokens.curr,"yield"),w["(generator)"]="yielded",this.line===f.tokens.next.line||!f.option.inMoz(!0)?(f.tokens.next.id!==";"&&!f.tokens.next.reach&&f.tokens.next.nud&&(ut(f.tokens.curr,f.tokens.next),this.first=ot(10),this.first.type==="(punctuator)"&&this.first.value==="="&&!this.first.paren&&!f.option.boss&&Q("W093",this.first.line,this.first.character)),f.option.inMoz(!0)&&f.tokens.next.id!==")"&&(e.lbp>30||!e.assign&&!st()||e.id==="yield")&&G("E050",this)):f.option.asi||at(this),this})),pt("throw",function(){return at(this),this.first=ot(20),Dt("throw"),this}).exps=!0,pt("import",function(){f.option.inESNext()||K("W119",f.tokens.curr,"import");if(f.tokens.next.type==="(string)")return rt("(string)"),this;if(f.tokens.next.identifier)this.name=_t(),et(this.name,{type:"unused",token:f.tokens.curr});else{rt("{");for(;;){if(f.tokens.next.value==="}"){rt("}");break}var e;f.tokens.next.type==="default"?(e="default",rt("default")):e=_t(),f.tokens.next.value==="as"&&(rt("as"),e=_t()),et(e,{type:"unused",token:f.tokens.curr});if(f.tokens.next.value!==","){if(f.tokens.next.value==="}"){rt("}");break}G("E024",f.tokens.next,f.tokens.next.value);break}rt(",")}}return rt("from"),rt("(string)"),this}).exps=!0,pt("export",function(){f.option.inESNext()||K("W119",f.tokens.curr,"export");if(f.tokens.next.type==="default"){rt("default");if(f.tokens.next.id==="function"||f.tokens.next.id==="class")this.block=!0;return this.exportee=ot(10),this}if(f.tokens.next.value==="{"){rt("{");for(;;){y[_t()]=!0;if(f.tokens.next.value!==","){if(f.tokens.next.value==="}"){rt("}");break}G("E024",f.tokens.next,f.tokens.next.value);break}rt(",")}return this}return f.tokens.next.id==="var"?(rt("var"),y[f.tokens.next.value]=!0,f.syntax["var"].fud.call(f.syntax["var"].fud)):f.tokens.next.id==="let"?(rt("let"),y[f.tokens.next.value]=!0,f.syntax.let.fud.call(f.syntax.let.fud)):f.tokens.next.id==="const"?(rt("const"),y[f.tokens.next.value]=!0,f.syntax["const"].fud.call(f.syntax["const"].fud)):f.tokens.next.id==="function"?(this.block=!0,rt("function"),y[f.tokens.next.value]=!0,f.syntax["function"].fud()):f.tokens.next.id==="class"?(this.block=!0,rt("class"),y[f.tokens.next.value]=!0,f.syntax["class"].fud()):G("E024",f.tokens.next,f.tokens.next.value),this}).exps=!0,bt("abstract"),bt("boolean"),bt("byte"),bt("char"),bt("class",{es5:!0,nud:rn}),bt("double"),bt("enum",{es5:!0}),bt("export",{es5:!0}),bt("extends",{es5:!0}),bt("final"),bt("float"),bt("goto"),bt("implements",{es5:!0,strictOnly:!0}),bt("import",{es5:!0}),bt("int"),bt("interface",{es5:!0,strictOnly:!0}),bt("long"),bt("native"),bt("package",{es5:!0,strictOnly:!0}),bt("private",{es5:!0,strictOnly:!0}),bt("protected",{es5:!0,strictOnly:!0}),bt("public",{es5:!0,strictOnly:!0}),bt("short"),bt("static",{es5:!0,strictOnly:!0}),bt("super",{es5:!0}),bt("synchronized"),bt("transient"),bt("volatile");var on=function(){var e,t,n=-1,i=0,s={};r.contains(["[","{"],f.tokens.curr.value)&&(i+=1);do{e=n===-1?f.tokens.next:nt(n),t=nt(n+1),n+=1,r.contains(["[","{"],e.value)?i+=1:r.contains(["]","}"],e.value)&&(i-=1);if(e.identifier&&e.value==="for"&&i===1){s.isCompArray=!0,s.notJson=!0;break}if(r.contains(["}","]"],e.value)&&t.value==="="&&i===0){s.isDestAssign=!0,s.notJson=!0;break}e.value===";"&&(s.isBlock=!0,s.notJson=!0)}while(i>0&&e.id!=="(end)"&&n<15);return s},an=function(){function i(e){var t=n.variables.filter(function(t){if(t.value===e)return t.undef=!1,e}).length;return t!==0}function s(e){var t=n.variables.filter(function(t){if(t.value===e&&!t.undef)return t.unused===!0&&(t.unused=!1),e}).length;return t===0}var e=function(){this.mode="use",this.variables=[]},t=[],n;return{stack:function(){n=new e,t.push(n)},unstack:function(){n.variables.filter(function(e){e.unused&&K("W098",e.token,e.value),e.undef&&$(e.funct,"W117",e.token,e.value)}),t.splice(-1,1),n=t[t.length-1]},setState:function(e){r.contains(["use","define","generate","filter"],e)&&(n.mode=e)},check:function(e){if(!n)return;return n&&n.mode==="use"?(s(e)&&n.variables.push({funct:w,token:f.tokens.curr,value:e,undef:!0,unused:!1}),!0):n&&n.mode==="define"?(i(e)||n.variables.push({funct:w,token:f.tokens.curr,value:e,undef:!1,unused:!0}),!0):n&&n.mode==="generate"?($(w,"W117",f.tokens.curr,e),!0):n&&n.mode==="filter"?(s(e)&&$(w,"W117",f.tokens.curr,e),!0):!1}}},ln=function(){function n(){for(var t in e)if(e[t]["(type)"]==="unused"&&f.option.unused){var n=e[t]["(token)"],r=n.line,i=n.character;Q("W098",r,i,t)}}var e={},t=[e];return{stack:function(){e={},t.push(e)},unstack:function(){n(),t.splice(t.length-1,1),e=r.last(t)},getlabel:function(e){for(var n=t.length-1;n>=0;--n)if(r.has(t[n],e)&&!t[n][e]["(shadowed)"])return t[n]},shadow:function(e){for(var n=t.length-1;n>=0;n--)r.has(t[n],e)&&(t[n][e]["(shadowed)"]=!0)},unshadow:function(e){for(var n=t.length-1;n>=0;n--)r.has(t[n],e)&&(t[n][e]["(shadowed)"]=!1)},current:{has:function(t){return r.has(e,t)},add:function(t,n,r){e[t]={"(type)":n,"(token)":r,"(shadowed)":!1}}}}},cn=function(e,n,i){function v(e,t){if(!e)return;!Array.isArray(e)&&typeof e=="object"&&(e=Object.keys(e)),e.forEach(t)}var o,a,l,h,p={},d={};n=r.clone(n),f.reset(),n&&n.scope?c.scope=n.scope:(c.errors=[],c.undefs=[],c.internals=[],c.blacklist={},c.scope="(main)"),M=Object.create(null),W(M,s.ecmaIdentifiers),W(M,s.reservedVars),W(M,i||{}),g=Object.create(null),y=Object.create(null);if(n){v(n.predef||null,function(e){var t,r;e[0]==="-"?(t=e.slice(1),c.blacklist[t]=t):(r=Object.getOwnPropertyDescriptor(n.predef,e),M[e]=r?r.value:!1)}),v(n.exported||null,function(e){y[e]=!0}),delete n.predef,delete n.exported,h=Object.keys(n);for(l=0;l0&&(e.implieds=t),B.length>0&&(e.urls=B),l=Object.keys(D),l.length>0&&(e.globals=l);for(o=1;o0&&(e.unused=H),n=[];for(a in L)if(typeof L[a]=="number"){e.member=L;break}return e},cn.jshint=cn,cn}();typeof n=="object"&&n&&(n.JSHINT=c)},{"./lex.js":4,"./messages.js":5,"./reg.js":6,"./state.js":7,"./style.js":8,"./vars.js":9,events:10,underscore:2}],4:[function(e,t,n){"use strict";function c(){var e=[];return{push:function(t){e.push(t)},check:function(){for(var t=0;t"&&t===">"&&n===">"&&r==="="?{type:l.Punctuator,value:">>>="}:e==="="&&t==="="&&n==="="?{type:l.Punctuator,value:"==="}:e==="!"&&t==="="&&n==="="?{type:l.Punctuator,value:"!=="}:e===">"&&t===">"&&n===">"?{type:l.Punctuator,value:">>>"}:e==="<"&&t==="<"&&n==="="?{type:l.Punctuator,value:"<<="}:e===">"&&t===">"&&n==="="?{type:l.Punctuator,value:">>="}:e==="="&&t===">"?{type:l.Punctuator,value:e+t}:e===t&&"+-<>&|".indexOf(e)>=0?{type:l.Punctuator,value:e+t}:"<>=!+-*%&|^".indexOf(e)>=0?t==="="?{type:l.Punctuator,value:e+t}:{type:l.Punctuator,value:e}:e==="/"?t==="="&&/\/=(?!(\S*\/[gim]?))/.test(this.input)?{type:l.Punctuator,value:"/="}:{type:l.Punctuator,value:"/"}:null},scanComments:function(){function s(e,t,n){var r=["jshint","jslint","members","member","globals","global","exported"],i=!1,s=e+t,o="plain";return n=n||{},n.isMultiline&&(s+="*/"),r.forEach(function(n){if(i)return;if(e==="//"&&n!=="jshint")return;t.substr(0,n.length)===n&&(i=!0,e+=n,t=t.substr(n.length)),!i&&t.charAt(0)===" "&&t.substr(1,n.length)===n&&(i=!0,e=e+" "+n,t=t.substr(n.length+1));if(!i)return;switch(n){case"member":o="members";break;case"global":o="globals";break;default:o=n}}),{type:l.Comment,commentType:o,value:s,body:t,isSpecial:i,isMultiline:n.isMultiline||!1,isMalformed:n.isMalformed||!1}}var e=this.peek(),t=this.peek(1),n=this.input.substr(2),r=this.line,i=this.char;if(e==="*"&&t==="/")return this.trigger("error",{code:"E018",line:r,character:i}),this.skip(2),null;if(e!=="/"||t!=="*"&&t!=="/")return null;if(t==="/")return this.skip(this.input.length),s("//",n);var o="";if(t==="*"){this.inComment=!0,this.skip(2);while(this.peek()!=="*"||this.peek(1)!=="/")if(this.peek()===""){o+="\n";if(!this.nextLine())return this.trigger("error",{code:"E017",line:r,character:i}),this.inComment=!1,s("/*",o,{isMultiline:!0,isMalformed:!0})}else o+=this.peek(),this.skip();return this.skip(2),this.inComment=!1,s("/*",o,{isMultiline:!0})}},scanKeyword:function(){var e=/^[a-zA-Z_$][a-zA-Z0-9_$]*/.exec(this.input),t=["if","in","do","var","for","new","try","let","this","else","case","void","with","enum","while","break","catch","throw","const","yield","class","super","return","typeof","delete","switch","export","import","default","finally","extends","function","continue","debugger","instanceof"];return e&&t.indexOf(e[0])>=0?{type:l.Keyword,value:e[0]}:null},scanIdentifier:function(){function i(e){return e>256}function s(e){return e>256}function o(e){return/^[0-9a-fA-F]$/.test(e)}var e="",t=0,n,r,u=function(){t+=1;if(this.peek(t)!=="u")return null;var e=this.peek(t+1),n=this.peek(t+2),r=this.peek(t+3),i=this.peek(t+4),u;return o(e)&&o(n)&&o(r)&&o(i)?(u=parseInt(e+n+r+i,16),f[u]||s(u)?(t+=5,"\\u"+e+n+r+i):null):null}.bind(this),c=function(){var e=this.peek(t),n=e.charCodeAt(0);return n===92?u():n<128?a[n]?(t+=1,e):null:i(n)?(t+=1,e):null}.bind(this),h=function(){var e=this.peek(t),n=e.charCodeAt(0);return n===92?u():n<128?f[n]?(t+=1,e):null:s(n)?(t+=1,e):null}.bind(this);r=c();if(r===null)return null;e=r;for(;;){r=h();if(r===null)break;e+=r}switch(e){case"true":case"false":n=l.BooleanLiteral;break;case"null":n=l.NullLiteral;break;default:n=l.Identifier}return{type:n,value:e}},scanNumericLiteral:function(){function s(e){return/^[0-9]$/.test(e)}function o(e){return/^[0-7]$/.test(e)}function u(e){return/^[0-9a-fA-F]$/.test(e)}function a(e){return e==="$"||e==="_"||e==="\\"||e>="a"&&e<="z"||e>="A"&&e<="Z"}var e=0,t="",n=this.input.length,r=this.peek(e),i;if(r!=="."&&!s(r))return null;if(r!=="."){t=this.peek(e),e+=1,r=this.peek(e);if(t==="0"){if(r==="x"||r==="X"){e+=1,t+=r;while(e"]});if(u==="\\"){this.skip(),u=this.peek();switch(u){case"'":this.triggerAsync("warning",{code:"W114",line:this.line,character:this.char,data:["\\'"]},e,function(){return o.jsonMode});break;case"b":u="\\b";break;case"f":u="\\f";break;case"n":u="\\n";break;case"r":u="\\r";break;case"t":u="\\t";break;case"0":u="\\0";var f=parseInt(this.peek(1),10);this.triggerAsync("warning",{code:"W115",line:this.line,character:this.char},e,function(){return f>=0&&f<=7&&o.directive["use strict"]});break;case"u":u=String.fromCharCode(parseInt(this.input.substr(1,4),16)),a=5;break;case"v":this.triggerAsync("warning",{code:"W114",line:this.line,character:this.char,data:["\\v"]},e,function(){return o.jsonMode}),u=" ";break;case"x":var c=parseInt(this.input.substr(1,2),16);this.triggerAsync("warning",{code:"W114",line:this.line,character:this.char,data:["\\x-"]},e,function(){return o.jsonMode}),u=String.fromCharCode(c),a=3;break;case"\\":u="\\\\";break;case'"':u='\\"';break;case"/":break;case"":s=!0,u="";break;case"!":if(n.slice(n.length-2)==="<")break;default:this.trigger("warning",{code:"W044",line:this.line,character:this.char})}}n+=u,this.skip(a)}return this.skip(),{type:l.StringLiteral,value:n,isUnclosed:!1,quote:t}},scanRegExp:function(){var e=0,t=this.input.length,n=this.peek(),r=n,i="",s=[],o=!1,u=!1,a,f=function(){n<" "&&(o=!0,this.trigger("warning",{code:"W048",line:this.line,character:this.char})),n==="<"&&(o=!0,this.trigger("warning",{code:"W049",line:this.line,character:this.char,data:[n]}))}.bind(this);if(!this.prereg||n!=="/")return null;e+=1,a=!1;while(e=this.getLines().length)return!1;this.input=this.getLines()[this.line],this.line+=1,this.char=1,this.from=1;var t=this.input.trim(),n=function(){return r.some(arguments,function(e){return t.indexOf(e)===0})},i=function(){return r.some(arguments,function(e){return t.indexOf(e,t.length-e.length)!==-1})};o.ignoreLinterErrors===!0&&!n("/*","//")&&!i("*/")&&(this.input=""),e=this.scanNonBreakingSpaces(),e>=0&&this.trigger("warning",{code:"W125",line:this.line,character:e+1}),this.input=this.input.replace(/\t/g,o.tab),e=this.scanUnsafeChars(),e>=0&&this.trigger("warning",{code:"W100",line:this.line,character:e});if(o.option.maxlen&&o.option.maxlen-1&&!n.name.match(/^[A-Z0-9_]*$/)&&e.warn("W106",{line:n.line,"char":n.from,data:[n.name]})}),e.on("String",function(n){var r=e.getOption("quotmark"),i;if(!r)return;r==="single"&&n.quote!=="'"&&(i="W109"),r==="double"&&n.quote!=='"'&&(i="W108"),r===!0&&(e.getCache("quotmark")||e.setCache("quotmark",n.quote),e.getCache("quotmark")!==n.quote&&(i="W110")),i&&e.warn(i,{line:n.line,"char":n.char})}),e.on("Number",function(n){n.value.charAt(0)==="."&&e.warn("W008",{line:n.line,"char":n.char,data:[n.value]}),n.value.substr(n.value.length-1)==="."&&e.warn("W047",{line:n.line,"char":n.char,data:[n.value]}),/^00+/.test(n.value)&&e.warn("W046",{line:n.line,"char":n.char,data:[n.value]})}),e.on("String",function(n){var r=/^(?:javascript|jscript|ecmascript|vbscript|livescript)\s*:/i;if(e.getOption("scripturl"))return;r.test(n.value)&&e.warn("W107",{line:n.line,"char":n.char})})}},{}],9:[function(e,t,n){"use strict";n.reservedVars={arguments:!1,NaN:!1},n.ecmaIdentifiers={Array:!1,Boolean:!1,Date:!1,decodeURI:!1,decodeURIComponent:!1,encodeURI:!1,encodeURIComponent:!1,Error:!1,eval:!1,EvalError:!1,Function:!1,hasOwnProperty:!1,isFinite:!1,isNaN:!1,JSON:!1,Math:!1,Number:!1,Object:!1,parseInt:!1,parseFloat:!1,RangeError:!1,ReferenceError:!1,RegExp:!1,String:!1,SyntaxError:!1,TypeError:!1,URIError:!1},n.newEcmaIdentifiers={Set:!1,Map:!1,WeakMap:!1,WeakSet:!1,Proxy:!1,Promise:!1},n.browser={Audio:!1,Blob:!1,addEventListener:!1,applicationCache:!1,atob:!1,blur:!1,btoa:!1,CanvasGradient:!1,CanvasPattern:!1,CanvasRenderingContext2D:!1,clearInterval:!1,clearTimeout:!1,close:!1,closed:!1,CustomEvent:!1,DOMParser:!1,defaultStatus:!1,document:!1,Element:!1,ElementTimeControl:!1,event:!1,FileReader:!1,FormData:!1,focus:!1,frames:!1,getComputedStyle:!1,HTMLElement:!1,HTMLAnchorElement:!1,HTMLBaseElement:!1,HTMLBlockquoteElement:!1,HTMLBodyElement:!1,HTMLBRElement:!1,HTMLButtonElement:!1,HTMLCanvasElement:!1,HTMLDirectoryElement:!1,HTMLDivElement:!1,HTMLDListElement:!1,HTMLFieldSetElement:!1,HTMLFontElement:!1,HTMLFormElement:!1,HTMLFrameElement:!1,HTMLFrameSetElement:!1,HTMLHeadElement:!1,HTMLHeadingElement:!1,HTMLHRElement:!1,HTMLHtmlElement:!1,HTMLIFrameElement:!1,HTMLImageElement:!1,HTMLInputElement:!1,HTMLIsIndexElement:!1,HTMLLabelElement:!1,HTMLLayerElement:!1,HTMLLegendElement:!1,HTMLLIElement:!1,HTMLLinkElement:!1,HTMLMapElement:!1,HTMLMenuElement:!1,HTMLMetaElement:!1,HTMLModElement:!1,HTMLObjectElement:!1,HTMLOListElement:!1,HTMLOptGroupElement:!1,HTMLOptionElement:!1,HTMLParagraphElement:!1,HTMLParamElement:!1,HTMLPreElement:!1,HTMLQuoteElement:!1,HTMLScriptElement:!1,HTMLSelectElement:!1,HTMLStyleElement:!1,HTMLTableCaptionElement:!1,HTMLTableCellElement:!1,HTMLTableColElement:!1,HTMLTableElement:!1,HTMLTableRowElement:!1,HTMLTableSectionElement:!1,HTMLTextAreaElement:!1,HTMLTitleElement:!1,HTMLUListElement:!1,HTMLVideoElement:!1,history:!1,Image:!1,length:!1,localStorage:!1,location:!1,matchMedia:!1,MessageChannel:!1,MessageEvent:!1,MessagePort:!1,MouseEvent:!1,moveBy:!1,moveTo:!1,MutationObserver:!1,name:!1,Node:!1,NodeFilter:!1,NodeList:!1,navigator:!1,onbeforeunload:!0,onblur:!0,onerror:!0,onfocus:!0,onload:!0,onresize:!0,onunload:!0,open:!1,openDatabase:!1,opener:!1,Option:!1,parent:!1,print:!1,removeEventListener:!1,resizeBy:!1,resizeTo:!1,screen:!1,scroll:!1,scrollBy:!1,scrollTo:!1,sessionStorage:!1,setInterval:!1,setTimeout:!1,SharedWorker:!1,status:!1,SVGAElement:!1,SVGAltGlyphDefElement:!1,SVGAltGlyphElement:!1,SVGAltGlyphItemElement:!1,SVGAngle:!1,SVGAnimateColorElement:!1,SVGAnimateElement:!1,SVGAnimateMotionElement:!1,SVGAnimateTransformElement:!1,SVGAnimatedAngle:!1,SVGAnimatedBoolean:!1,SVGAnimatedEnumeration:!1,SVGAnimatedInteger:!1,SVGAnimatedLength:!1,SVGAnimatedLengthList:!1,SVGAnimatedNumber:!1,SVGAnimatedNumberList:!1,SVGAnimatedPathData:!1,SVGAnimatedPoints:!1,SVGAnimatedPreserveAspectRatio:!1,SVGAnimatedRect:!1,SVGAnimatedString:!1,SVGAnimatedTransformList:!1,SVGAnimationElement:!1,SVGCSSRule:!1,SVGCircleElement:!1,SVGClipPathElement:!1,SVGColor:!1,SVGColorProfileElement:!1,SVGColorProfileRule:!1,SVGComponentTransferFunctionElement:!1,SVGCursorElement:!1,SVGDefsElement:!1,SVGDescElement:!1,SVGDocument:!1,SVGElement:!1,SVGElementInstance:!1,SVGElementInstanceList:!1,SVGEllipseElement:!1,SVGExternalResourcesRequired:!1,SVGFEBlendElement:!1,SVGFEColorMatrixElement:!1,SVGFEComponentTransferElement:!1,SVGFECompositeElement:!1,SVGFEConvolveMatrixElement:!1,SVGFEDiffuseLightingElement:!1,SVGFEDisplacementMapElement:!1,SVGFEDistantLightElement:!1,SVGFEFloodElement:!1,SVGFEFuncAElement:!1,SVGFEFuncBElement:!1,SVGFEFuncGElement:!1,SVGFEFuncRElement:!1,SVGFEGaussianBlurElement:!1,SVGFEImageElement:!1,SVGFEMergeElement:!1,SVGFEMergeNodeElement:!1,SVGFEMorphologyElement:!1,SVGFEOffsetElement:!1,SVGFEPointLightElement:!1,SVGFESpecularLightingElement:!1,SVGFESpotLightElement:!1,SVGFETileElement:!1,SVGFETurbulenceElement:!1,SVGFilterElement:!1,SVGFilterPrimitiveStandardAttributes:!1,SVGFitToViewBox:!1,SVGFontElement:!1,SVGFontFaceElement:!1,SVGFontFaceFormatElement:!1,SVGFontFaceNameElement:!1,SVGFontFaceSrcElement:!1,SVGFontFaceUriElement:!1,SVGForeignObjectElement:!1,SVGGElement:!1,SVGGlyphElement:!1,SVGGlyphRefElement:!1,SVGGradientElement:!1,SVGHKernElement:!1,SVGICCColor:!1,SVGImageElement:!1,SVGLangSpace:!1,SVGLength:!1,SVGLengthList:!1,SVGLineElement:!1,SVGLinearGradientElement:!1,SVGLocatable:!1,SVGMPathElement:!1,SVGMarkerElement:!1,SVGMaskElement:!1,SVGMatrix:!1,SVGMetadataElement:!1,SVGMissingGlyphElement:!1,SVGNumber:!1,SVGNumberList:!1,SVGPaint:!1,SVGPathElement:!1,SVGPathSeg:!1,SVGPathSegArcAbs:!1,SVGPathSegArcRel:!1,SVGPathSegClosePath:!1,SVGPathSegCurvetoCubicAbs:!1,SVGPathSegCurvetoCubicRel:!1,SVGPathSegCurvetoCubicSmoothAbs:!1,SVGPathSegCurvetoCubicSmoothRel:!1,SVGPathSegCurvetoQuadraticAbs:!1,SVGPathSegCurvetoQuadraticRel:!1,SVGPathSegCurvetoQuadraticSmoothAbs:!1,SVGPathSegCurvetoQuadraticSmoothRel:!1,SVGPathSegLinetoAbs:!1,SVGPathSegLinetoHorizontalAbs:!1,SVGPathSegLinetoHorizontalRel:!1,SVGPathSegLinetoRel:!1,SVGPathSegLinetoVerticalAbs:!1,SVGPathSegLinetoVerticalRel:!1,SVGPathSegList:!1,SVGPathSegMovetoAbs:!1,SVGPathSegMovetoRel:!1,SVGPatternElement:!1,SVGPoint:!1,SVGPointList:!1,SVGPolygonElement:!1,SVGPolylineElement:!1,SVGPreserveAspectRatio:!1,SVGRadialGradientElement:!1,SVGRect:!1,SVGRectElement:!1,SVGRenderingIntent:!1,SVGSVGElement:!1,SVGScriptElement:!1,SVGSetElement:!1,SVGStopElement:!1,SVGStringList:!1,SVGStylable:!1,SVGStyleElement:!1,SVGSwitchElement:!1,SVGSymbolElement:!1,SVGTRefElement:!1,SVGTSpanElement:!1,SVGTests:!1,SVGTextContentElement:!1,SVGTextElement:!1,SVGTextPathElement:!1,SVGTextPositioningElement:!1,SVGTitleElement:!1,SVGTransform:!1,SVGTransformList:!1,SVGTransformable:!1,SVGURIReference:!1,SVGUnitTypes:!1,SVGUseElement:!1,SVGVKernElement:!1,SVGViewElement:!1,SVGViewSpec:!1,SVGZoomAndPan:!1,TimeEvent:!1,top:!1,URL:!1,WebSocket:!1,window:!1,Worker:!1,XMLHttpRequest:!1,XMLSerializer:!1,XPathEvaluator:!1,XPathException:!1,XPathExpression:!1,XPathNamespace:!1,XPathNSResolver:!1,XPathResult:!1},n.devel={alert:!1,confirm:!1,console:!1,Debug:!1,opera:!1,prompt:!1},n.worker={importScripts:!0,postMessage:!0,self:!0},n.nonstandard={escape:!1,unescape:!1},n.couch={require:!1,respond:!1,getRow:!1,emit:!1,send:!1,start:!1,sum:!1,log:!1,exports:!1,module:!1,provides:!1},n.node={__filename:!1,__dirname:!1,GLOBAL:!1,global:!1,module:!1,require:!1,Buffer:!0,console:!0,exports:!0,process:!0,setTimeout:!0,clearTimeout:!0,setInterval:!0,clearInterval:!0,setImmediate:!0,clearImmediate:!0},n.phantom={phantom:!0,require:!0,WebPage:!0,console:!0,exports:!0},n.qunit={asyncTest:!1,deepEqual:!1,equal:!1,expect:!1,module:!1,notDeepEqual:!1,notEqual:!1,notPropEqual:!1,notStrictEqual:!1,ok:!1,propEqual:!1,QUnit:!1,raises:!1,start:!1,stop:!1,strictEqual:!1,test:!1,"throws":!1},n.rhino={defineClass:!1,deserialize:!1,gc:!1,help:!1,importClass:!1,importPackage:!1,java:!1,load:!1,loadClass:!1,Packages:!1,print:!1,quit:!1,readFile:!1,readUrl:!1,runCommand:!1,seal:!1,serialize:!1,spawn:!1,sync:!1,toint32:!1,version:!1},n.shelljs={target:!1,echo:!1,exit:!1,cd:!1,pwd:!1,ls:!1,find:!1,cp:!1,rm:!1,mv:!1,mkdir:!1,test:!1,cat:!1,sed:!1,grep:!1,which:!1,dirs:!1,pushd:!1,popd:!1,env:!1,exec:!1,chmod:!1,config:!1,error:!1,tempdir:!1},n.typed={ArrayBuffer:!1,ArrayBufferView:!1,DataView:!1,Float32Array:!1,Float64Array:!1,Int16Array:!1,Int32Array:!1,Int8Array:!1,Uint16Array:!1,Uint32Array:!1,Uint8Array:!1,Uint8ClampedArray:!1},n.wsh={ActiveXObject:!0,Enumerator:!0,GetObject:!0,ScriptEngine:!0,ScriptEngineBuildVersion:!0,ScriptEngineMajorVersion:!0,ScriptEngineMinorVersion:!0,VBArray:!0,WSH:!0,WScript:!0,XDomainRequest:!0},n.dojo={dojo:!1,dijit:!1,dojox:!1,define:!1,require:!1},n.jquery={$:!1,jQuery:!1},n.mootools={$:!1,$$:!1,Asset:!1,Browser:!1,Chain:!1,Class:!1,Color:!1,Cookie:!1,Core:!1,Document:!1,DomReady:!1,DOMEvent:!1,DOMReady:!1,Drag:!1,Element:!1,Elements:!1,Event:!1,Events:!1,Fx:!1,Group:!1,Hash:!1,HtmlTable:!1,IFrame:!1,IframeShim:!1,InputValidator:!1,instanceOf:!1,Keyboard:!1,Locale:!1,Mask:!1,MooTools:!1,Native:!1,Options:!1,OverText:!1,Request:!1,Scroller:!1,Slick:!1,Slider:!1,Sortables:!1,Spinner:!1,Swiff:!1,Tips:!1,Type:!1,typeOf:!1,URI:!1,Window:!1},n.prototypejs={$:!1,$$:!1,$A:!1,$F:!1,$H:!1,$R:!1,$break:!1,$continue:!1,$w:!1,Abstract:!1,Ajax:!1,Class:!1,Enumerable:!1,Element:!1,Event:!1,Field:!1,Form:!1,Hash:!1,Insertion:!1,ObjectRange:!1,PeriodicalExecuter:!1,Position:!1,Prototype:!1,Selector:!1,Template:!1,Toggle:!1,Try:!1,Autocompleter:!1,Builder:!1,Control:!1,Draggable:!1,Draggables:!1,Droppables:!1,Effect:!1,Sortable:!1,SortableObserver:!1,Sound:!1,Scriptaculous:!1},n.yui={YUI:!1,Y:!1,YUI_config:!1},n.mocha={describe:!1,it:!1,before:!1,after:!1,beforeEach:!1,afterEach:!1,suite:!1,test:!1,setup:!1,teardown:!1},n.jasmine={jasmine:!1,describe:!1,it:!1,xit:!1,beforeEach:!1,afterEach:!1,setFixtures:!1,loadFixtures:!1,spyOn:!1,expect:!1,runs:!1,waitsFor:!1,waits:!1}},{}],10:[function(e,t,n){function r(){this._events=this._events||{},this._maxListeners=this._maxListeners||undefined}function i(e){return typeof e=="function"}function s(e){return typeof e=="number"}function o(e){return typeof e=="object"&&e!==null}function u(e){return e===void 0}t.exports=r,r.EventEmitter=r,r.prototype._events=undefined,r.prototype._maxListeners=undefined,r.defaultMaxListeners=10,r.prototype.setMaxListeners=function(e){if(!s(e)||e<0||isNaN(e))throw TypeError("n must be a positive number");return this._maxListeners=e,this},r.prototype.emit=function(e){var t,n,r,s,a,f;this._events||(this._events={});if(e==="error")if(!this._events.error||o(this._events.error)&&!this._events.error.length)throw t=arguments[1],t instanceof Error?t:TypeError('Uncaught, unspecified "error" event.');n=this._events[e];if(u(n))return!1;if(i(n))switch(arguments.length){case 1:n.call(this);break;case 2:n.call(this,arguments[1]);break;case 3:n.call(this,arguments[1],arguments[2]);break;default:r=arguments.length,s=new Array(r-1);for(a=1;a0&&this._events[e].length>n&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),console.trace())}return this},r.prototype.on=r.prototype.addListener,r.prototype.once=function(e,t){function r(){this.removeListener(e,r),n||(n=!0,t.apply(this,arguments))}if(!i(t))throw TypeError("listener must be a function");var n=!1;return r.listener=t,this.on(e,r),this},r.prototype.removeListener=function(e,t){var n,r,s,u;if(!i(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;n=this._events[e],s=n.length,r=-1;if(n===t||i(n.listener)&&n.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(o(n)){for(u=s;u-->0;)if(n[u]===t||n[u].listener&&n[u].listener===t){r=u;break}if(r<0)return this;n.length===1?(n.length=0,delete this._events[e]):n.splice(r,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},r.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return arguments.length===0?this._events={}:this._events[e]&&delete this._events[e],this;if(arguments.length===0){for(t in this._events){if(t==="removeListener")continue;this.removeAllListeners(t)}return this.removeAllListeners("removeListener"),this._events={},this}n=this._events[e];if(i(n))this.removeListener(e,n);else while(n.length)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},r.prototype.listeners=function(e){var t;return!this._events||!this._events[e]?t=[]:i(this._events[e])?t=[this._events[e]]:t=this._events[e].slice(),t},r.listenerCount=function(e,t){var n;return!e._events||!e._events[t]?n=0:i(e._events[t])?n=1:n=e._events[t].length,n}},{}]},{},[3])(3)}),define("ace/mode/javascript_worker",["require","exports","module","ace/lib/oop","ace/worker/mirror","ace/mode/javascript/jshint"],function(require,exports,module){"use strict";function startRegex(e){return RegExp("^("+e.join("|")+")")}var oop=require("../lib/oop"),Mirror=require("../worker/mirror").Mirror,lint=require("./javascript/jshint").JSHINT,disabledWarningsRe=startRegex(["Bad for in variable '(.+)'.",'Missing "use strict"']),errorsRe=startRegex(["Unexpected","Expected ","Confusing (plus|minus)","\\{a\\} unterminated regular expression","Unclosed ","Unmatched ","Unbegun comment","Bad invocation","Missing space after","Missing operator at"]),infoRe=startRegex(["Expected an assignment","Bad escapement of EOL","Unexpected comma","Unexpected space","Missing radix parameter.","A leading decimal point can","\\['{a}'\\] is better written in dot notation.","'{a}' used out of scope"]),JavaScriptWorker=exports.JavaScriptWorker=function(e){Mirror.call(this,e),this.setTimeout(500),this.setOptions()};oop.inherits(JavaScriptWorker,Mirror),function(){this.setOptions=function(e){this.options=e||{esnext:!0,moz:!0,devel:!0,browser:!0,node:!0,laxcomma:!0,laxbreak:!0,lastsemic:!0,onevar:!1,passfail:!1,maxerr:100,expr:!0,multistr:!0,globalstrict:!0},this.doc.getValue()&&this.deferredUpdate.schedule(100)},this.changeOptions=function(e){oop.mixin(this.options,e),this.doc.getValue()&&this.deferredUpdate.schedule(100)},this.isValidJS=function(str){try{eval("throw 0;"+str)}catch(e){if(e===0)return!0}return!1},this.onUpdate=function(){var e=this.doc.getValue();e=e.replace(/^#!.*\n/,"\n");if(!e){this.sender.emit("jslint",[]);return}var t=[],n=this.isValidJS(e)?"warning":"error";lint(e,this.options);var r=lint.errors,i=!1;for(var s=0;s0||-1)*Math.floor(Math.abs(e))),e}function B(e){var t=typeof e;return e===null||t==="undefined"||t==="boolean"||t==="number"||t==="string"}function j(e){var t,n,r;if(B(e))return e;n=e.valueOf;if(typeof n=="function"){t=n.call(e);if(B(t))return t}r=e.toString;if(typeof r=="function"){t=r.call(e);if(B(t))return t}throw new TypeError}Function.prototype.bind||(Function.prototype.bind=function(t){var n=this;if(typeof n!="function")throw new TypeError("Function.prototype.bind called on incompatible "+n);var i=u.call(arguments,1),s=function(){if(this instanceof s){var e=n.apply(this,i.concat(u.call(arguments)));return Object(e)===e?e:this}return n.apply(t,i.concat(u.call(arguments)))};return n.prototype&&(r.prototype=n.prototype,s.prototype=new r,r.prototype=null),s});var i=Function.prototype.call,s=Array.prototype,o=Object.prototype,u=s.slice,a=i.bind(o.toString),f=i.bind(o.hasOwnProperty),l,c,h,p,d;if(d=f(o,"__defineGetter__"))l=i.bind(o.__defineGetter__),c=i.bind(o.__defineSetter__),h=i.bind(o.__lookupGetter__),p=i.bind(o.__lookupSetter__);if([1,2].splice(0).length!=2)if(!function(){function e(e){var t=new Array(e+2);return t[0]=t[1]=0,t}var t=[],n;t.splice.apply(t,e(20)),t.splice.apply(t,e(26)),n=t.length,t.splice(5,0,"XXX"),n+1==t.length;if(n+1==t.length)return!0}())Array.prototype.splice=function(e,t){var n=this.length;e>0?e>n&&(e=n):e==void 0?e=0:e<0&&(e=Math.max(n+e,0)),e+ta)for(h=l;h--;)this[f+h]=this[a+h];if(s&&e===c)this.length=c,this.push.apply(this,i);else{this.length=c+s;for(h=0;h>>0;if(a(t)!="[object Function]")throw new TypeError;while(++s>>0,s=Array(i),o=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var u=0;u>>0,s=[],o,u=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var f=0;f>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduce of empty array with no initial value");var s=0,o;if(arguments.length>=2)o=arguments[1];else do{if(s in r){o=r[s++];break}if(++s>=i)throw new TypeError("reduce of empty array with no initial value")}while(!0);for(;s>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduceRight of empty array with no initial value");var s,o=i-1;if(arguments.length>=2)s=arguments[1];else do{if(o in r){s=r[o--];break}if(--o<0)throw new TypeError("reduceRight of empty array with no initial value")}while(!0);do o in this&&(s=t.call(void 0,s,r[o],o,n));while(o--);return s});if(!Array.prototype.indexOf||[0,1].indexOf(1,2)!=-1)Array.prototype.indexOf=function(t){var n=g&&a(this)=="[object String]"?this.split(""):F(this),r=n.length>>>0;if(!r)return-1;var i=0;arguments.length>1&&(i=H(arguments[1])),i=i>=0?i:Math.max(0,r+i);for(;i>>0;if(!r)return-1;var i=r-1;arguments.length>1&&(i=Math.min(i,H(arguments[1]))),i=i>=0?i:r-Math.abs(i);for(;i>=0;i--)if(i in n&&t===n[i])return i;return-1};Object.getPrototypeOf||(Object.getPrototypeOf=function(t){return t.__proto__||(t.constructor?t.constructor.prototype:o)});if(!Object.getOwnPropertyDescriptor){var y="Object.getOwnPropertyDescriptor called on a non-object: ";Object.getOwnPropertyDescriptor=function(t,n){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(y+t);if(!f(t,n))return;var r,i,s;r={enumerable:!0,configurable:!0};if(d){var u=t.__proto__;t.__proto__=o;var i=h(t,n),s=p(t,n);t.__proto__=u;if(i||s)return i&&(r.get=i),s&&(r.set=s),r}return r.value=t[n],r}}Object.getOwnPropertyNames||(Object.getOwnPropertyNames=function(t){return Object.keys(t)});if(!Object.create){var b;Object.prototype.__proto__===null?b=function(){return{__proto__:null}}:b=function(){var e={};for(var t in e)e[t]=null;return e.constructor=e.hasOwnProperty=e.propertyIsEnumerable=e.isPrototypeOf=e.toLocaleString=e.toString=e.valueOf=e.__proto__=null,e},Object.create=function(t,n){var r;if(t===null)r=b();else{if(typeof t!="object")throw new TypeError("typeof prototype["+typeof t+"] != 'object'");var i=function(){};i.prototype=t,r=new i,r.__proto__=t}return n!==void 0&&Object.defineProperties(r,n),r}}if(Object.defineProperty){var E=w({}),S=typeof document=="undefined"||w(document.createElement("div"));if(!E||!S)var x=Object.defineProperty}if(!Object.defineProperty||x){var T="Property description must be an object: ",N="Object.defineProperty called on non-object: ",C="getters & setters can not be defined on this javascript engine";Object.defineProperty=function(t,n,r){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(N+t);if(typeof r!="object"&&typeof r!="function"||r===null)throw new TypeError(T+r);if(x)try{return x.call(Object,t,n,r)}catch(i){}if(f(r,"value"))if(d&&(h(t,n)||p(t,n))){var s=t.__proto__;t.__proto__=o,delete t[n],t[n]=r.value,t.__proto__=s}else t[n]=r.value;else{if(!d)throw new TypeError(C);f(r,"get")&&l(t,n,r.get),f(r,"set")&&c(t,n,r.set)}return t}}Object.defineProperties||(Object.defineProperties=function(t,n){for(var r in n)f(n,r)&&Object.defineProperty(t,r,n[r]);return t}),Object.seal||(Object.seal=function(t){return t}),Object.freeze||(Object.freeze=function(t){return t});try{Object.freeze(function(){})}catch(k){Object.freeze=function(t){return function(n){return typeof n=="function"?n:t(n)}}(Object.freeze)}Object.preventExtensions||(Object.preventExtensions=function(t){return t}),Object.isSealed||(Object.isSealed=function(t){return!1}),Object.isFrozen||(Object.isFrozen=function(t){return!1}),Object.isExtensible||(Object.isExtensible=function(t){if(Object(t)===t)throw new TypeError;var n="";while(f(t,n))n+="?";t[n]=!0;var r=f(t,n);return delete t[n],r});if(!Object.keys){var L=!0,A=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],O=A.length;for(var M in{toString:null})L=!1;Object.keys=function I(e){if(typeof e!="object"&&typeof e!="function"||e===null)throw new TypeError("Object.keys called on a non-object");var I=[];for(var t in e)f(e,t)&&I.push(t);if(L)for(var n=0,r=O;n src + path)) + .pipe(concat({path: 'metricsgraphics.js'})) + .pipe(babel({ + presets: ['env'] + })) + .pipe(umd( + { + dependencies:function() { + return [{ + name: 'd3', + amd: 'd3', + cjs: 'd3', + global: 'd3', + param: 'd3' + }]; + }, + exports: function() { + return "MG"; + }, + namespace: function() { + return "MG"; + } + } + )) + .pipe(gulp.dest(dist)) + .pipe(rename('metricsgraphics.min.js')) + .pipe(uglify()) + .pipe(gulp.dest(dist)); +}); + +// Check source js files with jshint +gulp.task('jshint', function () { + return gulp.src(jsFiles.map(fname => `src/js/${fname}`)) + .pipe(jshint()) + .pipe(jshint.reporter('default')) + .pipe(jshint.reporter('fail')) +}); + +// Run test suite server (testem') +gulp.task('test', function() { + return gulp.src(['']) + .pipe(testem({ + configFile: 'testem.json' + })); +}); + + +// Development server tasks +// NOTE: these paths will need changing when the SCSS source is ready +var roots = ['dist', 'examples', 'src', 'bower_components'], + watchables = roots.map(function(root) { + return root + '/**/*'; + }); + +gulp.task('dev:watch', function() { return gulp.watch(watchables, ['jshint', 'dev:reload']); }); +gulp.task('dev:reload', function() { return gulp.src(watchables).pipe(connect.reload()); }); +gulp.task('serve', ['jshint', 'dev:serve', 'dev:watch']); + +gulp.task('dev:serve', function() { + connect.server({ + root: roots, + port: 4300, + livereload: true + }); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/gulpfile.js b/priv/static/metrics-graphics-3.0-alpha3/gulpfile.js new file mode 100644 index 0000000..f60b303 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/gulpfile.js @@ -0,0 +1,3 @@ +'use strict'; + +require('./gulp'); diff --git a/priv/static/metrics-graphics-3.0-alpha3/index.js b/priv/static/metrics-graphics-3.0-alpha3/index.js new file mode 100644 index 0000000..b6ac74a --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/index.js @@ -0,0 +1 @@ +module.exports = require('./dist/metricsgraphics') diff --git a/priv/static/metrics-graphics-3.0-alpha3/package.json b/priv/static/metrics-graphics-3.0-alpha3/package.json new file mode 100644 index 0000000..466febf --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/package.json @@ -0,0 +1,66 @@ +{ + "name": "metrics-graphics", + "version": "3.0.0-alpha3", + "description": "A library optimized for concise, principled data graphics and layouts", + "main": "dist/metricsgraphics.js", + "scripts": { + "build": "gulp build:js", + "lint": "gulp jshint", + "test": "gulp test", + "test-ci": "./node_modules/testem/testem.js ci testem.json", + "version": "npm run build && git add ." + }, + "repository": { + "type": "git", + "url": "git://github.com/metricsgraphics/metrics-graphics.git" + }, + "files": [ + "dist" + ], + "keywords": [ + "metrics-graphics", + "metricsgraphicsjs", + "metricsgraphics", + "metricsgraphics.js", + "d3 charts" + ], + "author": "Mozilla", + "contributors": [ + "Ali Almossawi", + "Hamilton Ulmer", + "William Lachance" + ], + "license": "MPL-2.0", + "bugs": { + "url": "https://github.com/metricsgraphics/metrics-graphics/issues" + }, + "engines": { + "node": ">=0.8.0" + }, + "homepage": "http://metricsgraphicsjs.org", + "dependencies": { + "d3": "^5.0.0" + }, + "peerDependencies": { + "jquery": ">=1.11.1" + }, + "devDependencies": { + "babel-core": "^6.26.0", + "babel-preset-env": "^1.6.1", + "gulp": "^3.8.10", + "gulp-babel": "^7.0.1", + "gulp-concat": "^2.4.2", + "gulp-connect": "^5.0.0", + "gulp-jshint": "^2.1.0", + "gulp-rename": "^1.2.0", + "gulp-rimraf": "^0.2.0", + "gulp-testem": "0.0.1", + "gulp-uglify": "3.0.1", + "gulp-umd": "^2.0.0", + "jquery": ">=1.11.1", + "jshint": "^2.9.5", + "qunitjs": "^2.0.0", + "require-dir": "^1.0.0", + "testem": "^2.0.0" + } +} diff --git a/priv/static/metrics-graphics-3.0-alpha3/renovate.json b/priv/static/metrics-graphics-3.0-alpha3/renovate.json new file mode 100644 index 0000000..99e531e --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/renovate.json @@ -0,0 +1,8 @@ +{ + "extends": [ + "config:base", + ":maintainLockFilesWeekly", + ":prNotPending" + ], + "pinVersions": false +} diff --git a/priv/static/metrics-graphics-3.0-alpha3/src/index.html b/priv/static/metrics-graphics-3.0-alpha3/src/index.html new file mode 100644 index 0000000..4f9ce02 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/src/index.html @@ -0,0 +1,238 @@ + + + + + MetricsGraphics.js (DEV) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ +
+
+
Data
+
+ JavaScript See Full List of Options + + +
+
+
+
+ +
+
+
+
+
+ + + + + + diff --git a/priv/static/metrics-graphics-3.0-alpha3/src/scss/.gitignore b/priv/static/metrics-graphics-3.0-alpha3/src/scss/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/priv/static/metrics-graphics-3.0-alpha3/testem.json b/priv/static/metrics-graphics-3.0-alpha3/testem.json new file mode 100644 index 0000000..659fe12 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/testem.json @@ -0,0 +1,50 @@ +{ + "framework": "qunit", + "src_files": [ + "node_modules/jquery/dist/jquery.js", + "node_modules/d3/dist/d3.js", + + "src/js/MG.js", + "src/js/misc/utility.js", + "src/js/common/register.js", + "src/js/common/hooks.js", + "src/js/common/data_graphic.js", + "src/js/common/bootstrap_tooltip_popover.js", + "src/js/common/chart_title.js", + "src/js/common/y_axis.js", + "src/js/common/x_axis.js", + "src/js/common/init.js", + "src/js/common/scales.js", + "src/js/common/rollover.js", + "src/js/common/markers.js", + "src/js/common/window_listeners.js", + "src/js/layout/bootstrap_dropdown.js", + "src/js/layout/button.js", + "src/js/charts/line.js", + "src/js/charts/histogram.js", + "src/js/charts/point.js", + "src/js/charts/bar.js", + "src/js/charts/table.js", + "src/js/charts/missing.js", + "src/js/misc/process.js", + "src/js/misc/smoothers.js", + "src/js/misc/formatters.js", + "src/js/misc/transitions.js", + "src/js/misc/error.js", + + "tests/helpers.js", + + "tests/**/*_test.js" + ], + "launch_in_ci": [ + "Chrome" + ], + "launch_in_dev": [ + "PhantomJS", + "Chrome" + ], + "browser_args": { + "Chrome": [ "--headless", "--disable-gpu", "--remote-debugging-port=9222" ] + }, + "phantomjs_debug_port": 9000 +} diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/charts/bar_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/bar_test.js new file mode 100644 index 0000000..db02b56 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/bar_test.js @@ -0,0 +1,95 @@ +var target = '#qunit-fixture', + defaults; + +module('bar', { + setup: function() { + defaults = { + target: target, + chart_type: 'bar', + x_accessor: 'value', + y_accessor: 'label', + transition_on_update: false, + data: [{ + label: 'Bar 1', + value: 100 + },{ + label: 'Bar 2', + value: 200 + },{ + label: 'Bar 3', + value: 300 + }] + }; + } +}); + +test('Correct number of bars are added', function() { + expect(1); + MG.data_graphic(defaults); + equal(document.querySelectorAll('.mg-bar').length, 3, 'Should have 3 bars'); +}); + +test('Triggers callbacks when provided', function() { + var mouseoverCalled = false, + mousemoveCalled = false, + mouseoutCalled = false, + + params = extend(defaults, { + mouseover: function() { + mouseoverCalled = true; + }, + mousemove: function() { + mousemoveCalled = true; + }, + mouseout: function() { + mouseoutCalled = true; + } + }); + + MG.data_graphic(params); + + var bar = document.getElementsByClassName('mg-bar-rollover')[0]; + + bar.dispatchEvent(generateMouseEvent('mouseover')); + equal(mouseoverCalled, true, 'mouseover was called'); + + bar.dispatchEvent(generateMouseEvent('mousemove')); + equal(mousemoveCalled, true, 'mousemove was called'); + + bar.dispatchEvent(generateMouseEvent('mouseout')); + equal(mouseoutCalled, true, 'mouseout was called'); +}); + +// test('When updating', function() { +// var bars = [{ +// label: 'Bar 1', +// value: 100, +// predictor: 75, +// baseline: 50 +// }]; + +// var params = extend(defaults, { +// data: bars, +// height: 100, +// width: 300, +// orientation: 'vertical', +// predictor_accessor: 'predictor', +// baseline_accessor: 'baseline', +// animate_on_load: false, +// transition_on_update: false +// }); + +// MG.data_graphic(params); +// equal(164, d3.select(target).select('.mg-barplot .mg-bar').attr('width'), 'initial bar size is correct'); +// equal(123, d3.select(target).select('.mg-barplot .mg-bar-prediction').attr('width'), 'initial predictor size is correct'); +// equal(160, d3.select(target).select('.mg-barplot .mg-bar-baseline').attr('x1'), 'initial baseline position is correct'); + +// params.data[0][0].value = 50; +// params.data[0][0].predictor = 100; +// params.data[0][0].baseline = 75; + +// MG.data_graphic(params); +// equal(82, d3.select(target).select('.mg-barplot .mg-bar').attr('width'), 'the bars are redrawn with correct sizes'); +// equal(164, d3.select(target).select('.mg-barplot .mg-bar-prediction').attr('width'), 'the predictors are redrawn with correct sizes'); +// equal(201, d3.select(target).select('.mg-barplot .mg-bar-baseline').attr('x1'), 'the baseline is redrawn in the correct position'); +// }); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/charts/histogram_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/histogram_test.js new file mode 100644 index 0000000..2e69e70 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/histogram_test.js @@ -0,0 +1,64 @@ +module('histogram'); + + +// THIS TEST NEEDS TO BE REWRITTEN AS A RESULT OF #614 +// test('A solitary active datapoint exists', function() { +// var params = { +// target: '#qunit-fixture', +// data: d3.range(10000).map(d3.random.bates(10)), +// chart_type: 'histogram', +// linked: true +// }; + +// MG.data_graphic(params); +// equal(document.querySelectorAll('.mg-active-datapoint').length, 1, 'One active datapoint exists'); +// }); + +test('Rollovers exist', function() { + var params = { + target: '#qunit-fixture', + data: d3.range(10000).map(d3.randomBates(10)), + chart_type: 'histogram', + linked: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-rollover-rect'), 'Rollovers exist'); +}); + +test('We have only one set of rollovers', function() { + var params = { + target: '#qunit-fixture', + data: d3.range(10000).map(d3.randomBates(10)), + chart_type: 'histogram', + linked: true + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-rollover-rect').length, 1, 'One set of rollovers exists'); +}); + +test('Linked chart has the required class set', function() { + var params = { + target: '#qunit-fixture', + data: d3.range(10000).map(d3.randomBates(10)), + chart_type: 'histogram', + linked: true + }; + + MG.data_graphic(params); + var matches = document.querySelector(params.target + ' svg').getAttribute('class').match(/linked/); + ok(matches, 'Linked chart has class `linked` set'); +}); + +test('Histogram exists', function() { + var params = { + target: '#qunit-fixture', + data: d3.range(10000).map(d3.randomBates(10)), + chart_type: 'histogram', + linked: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-histogram'), 'Histogram exists'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/charts/line_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/line_test.js new file mode 100644 index 0000000..530f76b --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/line_test.js @@ -0,0 +1,289 @@ +module('line'); + +test('Confidence band is added', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12, 'l': 10, 'u': 14}, + {'date': new Date('2014-03-01'), 'value': 18, 'l': 16, 'u': 20}], + show_confidence_band: ['l', 'u'] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-confidence-band'), 'Confidence band is added'); +}); + +test('Only one confidence is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12, 'l': 10, 'u': 14}, + {'date': new Date('2014-03-01'), 'value': 18, 'l': 16, 'u': 20}], + show_confidence_band: ['l', 'u'], + title: 'confidence added multiple calls' + }; + var params2 = MG.clone(params) + MG.data_graphic(params); + MG.data_graphic(params2); + equal(document.querySelectorAll(params.target + ' .mg-confidence-band').length, 1, 'We only have one confidence band'); +}); + +test('args.area set to true', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-main-area'), 'Path set for area'); +}); + +test('args.area set to false', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + area: false + }; + + MG.data_graphic(params); + equal(document.querySelector('.mg-main-area'), null, 'No path for area'); +}); + +// NEEDS TO BE REWRITTEN IN LIGHT OF #614 +// test('A solitary active datapoint exists', function() { +// var params = { +// target: '#qunit-fixture', +// data: [{'date': new Date('2014-01-01'), 'value': 12}, +// {'date': new Date('2014-03-01'), 'value': 18}] +// }; + +// MG.data_graphic(params); +// equal(document.querySelectorAll('.mg-active-datapoint').length, 1, 'One active datapoint exists'); +// }); + +test('A solitary rollover circle exists', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-line-rollover-circle').length, 1, 'One rollover circle exists'); +}); + +test('Rollovers work for single lines', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-rollover-rect'), 'Rollovers exist'); +}); + +test('Rollovers work for multiple lines', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-voronoi'), 'Rollovers exist'); +}); + +test('We have only one set of rollovers for single lines', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-rollover-rect').length, 1, 'One set of rollovers exists'); +}); + +test('We have only one set of rollovers for multiple lines', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]] + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-voronoi').length, 1, 'One set of rollovers exists'); +}); + +test('We use the rect-style rollovers when `aggregate_rolloveres == true`', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]], + aggregate_rollover: true + }; + + MG.data_graphic(params); + + // ensure rollover returns aggregated result data + equal(document.querySelectorAll('.mg-voronoi').length, 0, 'Voronoi rollover is not generated'); + equal(document.querySelectorAll('.mg-rollover-rect').length, 1, 'Rect rollover is generated'); +}); + +test('There are as many lines as data series (one)', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-main-line').length, 1, 'One line exists'); +}); + +test('There are as many lines as data series (two)', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]] + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-main-line').length, 2, 'Two lines exist'); +}); + +test('There are as many lines as data series (two) on multiple calls to an existing chart', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]] + }; + var params2 = MG.clone(params); + MG.data_graphic(params); + MG.data_graphic(params2); + + equal(document.querySelectorAll('.mg-main-line').length, 2, 'Two lines exist'); +}); + +test('No zombie lines when we update a chart with fewer lines', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]] + }; + + var params2 = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + MG.data_graphic(params2); + + equal(document.querySelectorAll('.mg-main-line').length, 1, 'One line exists'); +}); + +test('Rollover circle is visible on load if the dataset is of length 1', function() { + var data = [{"date": '2014-02-01', "value": 6}]; + var data = MG.convert.date(data, 'date'); + + MG.data_graphic({ + data: data, + target: "#qunit-fixture" + }); + + deepEqual(d3.select('.mg-line-rollover-circle').style('opacity'), "1", 'Rollover circle is visible'); +}); + +// NEEDS TO BE REWRITTEN IN LIGHT OF #614 +// test('Only one active data point container is added on multiple calls to the same target element', function() { +// var params = { +// target: '#qunit-fixture', +// data: [{'date': new Date('2014-01-01'), 'value': 12, 'l': 10, 'u': 14}, +// {'date': new Date('2014-03-01'), 'value': 18, 'l': 16, 'u': 20}] +// }; + +// MG.data_graphic(params); +// MG.data_graphic(MG.clone(params)); + +// equal(document.querySelectorAll('.mg-active-datapoint-container').length, 1, 'We only have one active data point container'); +// }); + +test('No zombie lines when custom_line_color_map is set', function() { + var data = []; + data[0] = [{'date': new Date('2015-03-05'), 'value': 12000}]; + data[1] = [{'date': new Date('2015-03-06'), 'value': 35000}]; + data[2] = [{'date': new Date('2015-03-07'), 'value': 23000},{'date': new Date('2015-03-08'), 'value': 20000}]; + + MG.data_graphic({ + data: data, + target: '#qunit-fixture', + max_data_size: 5, + custom_line_color_map: [3,4,5] + }); + + MG.data_graphic({ + data: data, + target: '#qunit-fixture', + max_data_size: 5, + custom_line_color_map: [1,2,3] + }); + + equal(document.querySelectorAll('.mg-main-line.mg-line5-color').length, 0, 'Line 5 was removed on update'); +}); + +test('Only one line legend is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + legend: ['US', 'CA'], + line_legends: true + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll('.mg-line-legend').length, 1, 'We only have one mg-line-legend'); +}); + +test('Only one active data point container added on multiple calls to the same target element (lines)', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll('.mg-active-datapoint-container').length, 1, 'We only have one mg-active-datapoint-container with lines'); +}); + +test('When 1 data series is empty (out of 2) and missing_is_zero is true, remaining line is rendered', function() { + var data = []; + data[0] = []; + data[1] = [{'date': new Date('2015-03-07'), 'value': 23000},{'date': new Date('2015-03-08'), 'value': 20000}]; + + MG.data_graphic({ + target: '#qunit-fixture', + data: data, + missing_is_zero: true + }); + + equal(document.querySelectorAll('.mg-main-line').length, 1, 'Line for non-empty data series is still rendered'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/charts/missing_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/missing_test.js new file mode 100644 index 0000000..f50ee2a --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/missing_test.js @@ -0,0 +1,90 @@ +module('missing'); + +test('Missing chart\'s text matches specified missing_text', function() { + var params = { + target: '#qunit-fixture', + chart_type: 'missing-data', + missing_text: 'In an astral plane that was never meant to fly...' + }; + + MG.data_graphic(params); + equal(document.querySelector('.mg-missing-text').textContent, + params.missing_text, + 'Missing chart\'s text matches missing_text'); +}); + +test('Only one mg-missing-pane on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + chart_type: 'missing-data', + missing_text: 'In an astral plane that was never meant to fly...' + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll(params.target + ' .mg-missing-pane').length, 1, 'We only have one mg-missing-pane'); +}); + +test('Only one mg-missing-text on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + chart_type: 'missing-data', + missing_text: 'In an astral plane that was never meant to fly...' + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll(params.target + ' .mg-missing-text').length, 1, 'We only have one mg-missing-text'); +}); + +test('missing chart obeys full_width: true', function() { + var params = { + target: '#qunit-fixture', + chart_type: 'missing-data', + full_width: true, + missing_text: 'In an astral plane that was never meant to fly...' + }; + document.querySelector('#qunit-fixture').style.width='700px'; + + MG.data_graphic(params); + + equal(document.querySelector('#qunit-fixture svg').getAttribute('width'), 700, 'The missing chart svg has same width as parent element.'); +}); + +test('missing chart obeys full_height: true', function() { + var params = { + target: '#qunit-fixture', + chart_type: 'missing-data', + full_height: true, + missing_text: 'In an astral plane that was never meant to fly...' + }; + document.querySelector('#qunit-fixture').style.height='700px'; + + MG.data_graphic(params); + + equal(document.querySelector('#qunit-fixture svg').getAttribute('height'), 700, 'The missing chart svg has same width as parent element.'); +}); + +test('Missing chart\'s width is set correctly on subsequent calls to existing chart', function() { + var params_0 = { + target: '#qunit-fixture', + chart_type: 'missing-data', + missing_text: 'In an astral plane that was never meant to fly...' + }; + + var params = { + target: '#qunit-fixture', + chart_type: 'missing-data', + missing_text: 'In an astral plane that was never meant to fly...', + width: 200, + height: 100, + }; + + MG.data_graphic(params_0); + MG.data_graphic(params); + + var width = document.querySelector(params.target + ' svg').clientWidth; + ok(width == 200, 'SVG\'s width matches latest specified width'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/charts/point_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/point_test.js new file mode 100644 index 0000000..e26fc58 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/charts/point_test.js @@ -0,0 +1,137 @@ +module('point'); +// this test doesn't work properly. +// test('A solitary active datapoint exists', function() { +// var params = { +// target: '#qunit-fixture', +// data: [{'date': new Date('2014-01-01'), 'value': 12}, +// {'date': new Date('2014-03-01'), 'value': 18}], +// chart_type: 'point' +// }; + +// MG.data_graphic(params); +// equal(document.querySelectorAll('.mg-active-datapoint').length, 1, 'One active datapoint exists'); +// }); + +test('Rollovers exist', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]], + chart_type: 'point' + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-voronoi'), 'Rollovers exist'); +}); + +test('We have only one set of rollovers', function() { + var params = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + [{'date': new Date('2014-01-01'), 'value': 120}, + {'date': new Date('2014-03-01'), 'value': 180}]], + chart_type: 'point' + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-voronoi').length, 1, 'One set of rollovers exists'); +}); + +test('args.x_rug', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_rug: true, + chart_type: 'point' + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-x-rug'), 'X-axis rugplot exists'); +}); + +test('Only one rugplot is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_rug: true, + chart_type: 'point' + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll('.mg-x-rug').length, 2, 'We only have one rugplot (two ticks) on the x-axis'); +}); + +test('args.y_rug', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + y_rug: true, + chart_type: 'point' + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-y-rug'), 'Y-axis rugplot exists'); +}); + +test('Only one rugplot is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + y_rug: true, + chart_type: 'point' + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + equal(document.querySelectorAll('.mg-y-rug').length, 2, 'We only have one rugplot (two ticks) on the y-axis'); +}); + +test('args.least_squares', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + chart_type: 'point', + least_squares: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-least-squares-line'), 'Least-squares line exists'); +}); + +test('Only one least-squares line is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + chart_type: 'point', + least_squares: true + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + equal(document.querySelectorAll('.mg-least-squares-line').length, 1, 'We only have one least-squares line'); +}); + +test('Only one active data point container added on multiple calls to the same target element (points)', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + chart_type: 'point' + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll('.mg-active-datapoint-container').length, 1, 'We only have one mg-active-datapoint-container with points'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/.gitkeep b/priv/static/metrics-graphics-3.0-alpha3/tests/common/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/chart_title_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/chart_title_test.js new file mode 100644 index 0000000..6d71dff --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/chart_title_test.js @@ -0,0 +1,93 @@ +module('chart_title'); + +test('Chart title is updated', function() { + var params = { + title: 'foo', + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + var params2 = MG.clone(params); + params2.title = 'bar'; + + MG.data_graphic(params); + MG.data_graphic(params2); + + equal(document.querySelector('.mg-chart-title').textContent, 'bar', 'Chart title is foo'); +}); + +test('Chart title is removed if title is set to blank', function() { + var params = { + title: 'foo', + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + var params2 = MG.clone(params); + params2.title = ''; + + MG.data_graphic(params); + MG.data_graphic(params2); + equal(document.querySelector('.mg-chart-title'), null, 'Chart title is not added'); +}); + +test('Chart title is removed if title is not set', function() { + var params = { + title: 'foo', + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + var params2 = MG.clone(params); + delete params2.title; + + MG.data_graphic(params); + MG.data_graphic(params2); + equal(document.querySelector('.mg-chart-title'), null, 'Chart title is not added'); +}); + +test('When a description is set, we get a question mark', function() { + var params = { + title: 'foo', + description: 'bar', + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + show_tooltips: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-chart-description'), 'Description icon exists'); +}); + +test('When an error is set, we get an exclamation icon', function() { + var params = { + title: 'foo', + description: 'bar', + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + error: 'lorem ipsum' + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-chart-title .mg-warning'), 'Error icon exists'); +}); + +test('Chart title is not duplicated on redraw', function() { + var params = { + title: 'foo', + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + var params2 = MG.clone(params); + MG.data_graphic(params); + MG.data_graphic(params2); + + equal(document.querySelectorAll('.mg-chart-title').length, 1, 'there is once chart title'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/data_graphic_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/data_graphic_test.js new file mode 100644 index 0000000..8051483 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/data_graphic_test.js @@ -0,0 +1,59 @@ +module('data_graphic'); + +test('Required arguments are set', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}] + }; + + MG.data_graphic(params); + + ok(params.width, 'args.width is set'); + ok(params.height, 'args.height is set'); + ok(params.data, 'args.data is set'); + ok(params.target, 'args.target is set'); +}); + +test('Dom element works as target', function() { + var params = { + target: document.getElementById('qunit-fixture'), + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}] + }; + + MG.data_graphic(params); + + ok(document.querySelector('#qunit-fixture svg') != null, 'passing in dom element works properly'); +}); + +// Can be removed in 2.x +test('Correctly aliases callbacks when using 1.x-style method names', function() { + var mouseoverCalled = false, + mouseoutCalled = false, + + params = { + target: '#qunit-fixture', + data: [{value: 1, label: 'One'}], + chart_type: 'bar', + rollover_callback: function() { + mouseoverCalled = true; + }, + rollout_callback: function() { + mouseoutCalled = true; + } + }; + + MG.data_graphic(params); + + var bar = document.getElementsByClassName('mg-bar-rollover')[0]; + + bar.dispatchEvent(generateMouseEvent('mouseover')); + equal(mouseoverCalled, true, 'rollover_callback was called'); + + bar.dispatchEvent(generateMouseEvent('mouseout')); + equal(mouseoutCalled, true, 'rollout_callback was called'); + + ok(MG.deprecations.rollover_callback.warned, 'rollover_callback deprecation notice displayed'); + ok(MG.deprecations.rollout_callback.warned, 'rollout_callback deprecation notice displayed'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/hooks_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/hooks_test.js new file mode 100644 index 0000000..1ba30d3 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/hooks_test.js @@ -0,0 +1,159 @@ +module('hooks', { + setup: function() { + delete MG._hooks.test; + } +}); + +test('multiple hooks with the same name execute in order', function() { + var result = ''; + + function hookOne() { + result = result + 'one'; + } + + function hookTwo() { + result = result + 'two'; + } + + MG.add_hook('test', hookOne); + MG.add_hook('test', hookTwo); + + MG.call_hook('test'); + + equal(result, 'onetwo', 'both hooks are called'); +}); + +test('hooks can have context', function() { + var result = {}; + + function contextedHook() { + this.foo = 'bar'; + } + + MG.add_hook('test', contextedHook, result); + + MG.call_hook('test'); + + equal(result.foo, 'bar', 'exectued in the correct context'); +}); + +test('hooks accept single arguments', function() { + var result; + + function singleArgHook(arg) { + result = arg; + equal(typeof arg, 'string', 'correctly passed as a string') + } + + MG.add_hook('test', singleArgHook, null); + + MG.call_hook('test', 'one'); + + equal(result, 'one', 'single argument is received'); +}); + + +test('hooks accept multiple arguments', function() { + var result; + + function multipleArgHook(arg1, arg2, arg3) { + result = [arg1, arg2, arg3].join(' '); + + ok([arg1, arg2, arg3].every(function(arg) { + return typeof arg === 'string'; + }), 'correctly passed as strings'); + } + + MG.add_hook('test', multipleArgHook); + + MG.call_hook('test', 'one', 'two', 'three'); + + equal(result, 'one two three', 'multiple arguments are passed correctly'); +}); + +test('hooks are chained - result from one passed into the next', function() { + var initial = 2, + result; + + function hookOne(arg) { + return arg * 2; + } + + function hookTwo(arg) { + return arg - 1; + } + + MG.add_hook('test', hookOne); + MG.add_hook('test', hookTwo); + + result = MG.call_hook('test', initial); + + equal(result, 3, 'result has been chained'); +}); + +test('hooks should return multiple inputs as an array', function() { + var result; + + function hookOne(arg1, arg2, arg3) { + return [arg1, arg2, arg3]; + } + + function hookTwo(arg1, arg2, arg3) { + return [arg3, arg2, arg1]; + } + + MG.add_hook('test', hookOne); + MG.add_hook('test', hookTwo); + + result = MG.call_hook('test', [1,2,3]); + + equal(result.join('-'), '3-2-1', 'array is passed in the result') +}); + +test('if the result from a chained hook is undefined', function() { + var initial = 2; + + function hookOne(arg) { + // don't return anything + } + + function hookTwo(arg) { + equal(arg, initial, 'initial value is used'); + } + + MG.add_hook('test', hookOne); + MG.add_hook('test', hookTwo); + result = MG.call_hook('test', initial); + + + delete MG._hooks.test; + + function hookThree(arg) { + return arg - 1; + } + + function hookFour(arg) { + // don't return anything + } + + function hookFive(arg) { + equal(initial, arg - 1, 'processed value is passed if it is already set'); + } + + MG.add_hook('test', hookOne); + MG.add_hook('test', hookTwo); + result = MG.call_hook('test', initial); +}); + +test('a hook can only have one registered instance of any function', function() { + function hookOne() {} + + MG.add_hook('test', hookOne); + + try { + MG.add_hook('test', hookOne); + } + catch(error) { + equal(error, 'That function is already registered.', 'an exception is raised'); + } +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/init_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/init_test.js new file mode 100644 index 0000000..b695d46 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/init_test.js @@ -0,0 +1,246 @@ +module('init'); + +test('MG properly detects time series vs. not.', function () { + var params1 = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + x_accessor: 'date' + }; + + var params2 = { + target: '#qunit-fixture', + data: [{'date': 5434, 'value': 12}, + {'date': 5435, 'value': 18}], + x_accessor: 'date' + }; + + var params3 = { + target: '#qunit-fixture', + data: [[{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + [{'date': new Date('2014-11-01'), 'value': 32}, + {'date': new Date('2014-11-02'), 'value': 43}]], + x_accessor: 'date' + }; + mg_merge_args_with_defaults(params1); + mg_merge_args_with_defaults(params2); + mg_merge_args_with_defaults(params3); + mg_is_time_series(params1); + mg_is_time_series(params2); + mg_is_time_series(params3); + + ok(params1.time_series === true, 'Date-accessed data set is a time series.'); + ok(params2.time_series === false, 'Number-accessed data set is not a time series.'); + ok(params3.time_series === true, 'Nested data set w/ dates detected as time series.'); +}); + +test("Chart's width is set correctly on subsequent calls to existing chart", function () { + var params_0 = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + }; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + width: 200, + height: 100, + }; + + MG.data_graphic(params_0); + MG.data_graphic(params); + + var width = document.querySelector(params.target + ' svg').clientWidth; + ok(width === 200, "SVG's width matches latest specified width"); +}); + +test("Chart's width is set to parents if full_width: true", function () { + var params = { + target: '#qunit-fixture', + full_width: true, + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + height: 100 + }; + MG.data_graphic(params); + + var svg_width = document.querySelector(params.target + ' svg').clientWidth; + var div_width = document.querySelector(params.target).clientWidth; + + equal(div_width, svg_width, "SVG's width matches parent upon using full_width: true"); +}); + +test("Chart's height is set to parents if full_height: true", function () { + var params = { + target: '#qunit-fixture', + full_height: true, + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + width: 500 + }; + + document.querySelector(params.target).style.height = '500px'; + MG.data_graphic(params); + + var svg_height = document.querySelector(params.target + ' svg').clientHeight; + var div_height = document.querySelector(params.target).clientHeight; + + equal(div_height, svg_height, "SVG's height matches parent upon using full_height: true"); +}); + +test("Won't add SVG element if an SVG element already exists in parent.", function () { + var args1 = { + target: '#qunit-fixture div#exists', + width: 500, + height: 200, + linked: false, + svg: 'FLAG' + }; + + var qunit = document.querySelector('#qunit-fixture'); + var div = document.createElement('div'); + div.id = 'exists'; + div.appendChild(document.createElement('svg')); + qunit.appendChild(div); + var first_number = document.querySelectorAll('svg').length; + mg_add_svg_if_it_doesnt_exist('', args1); + var second_number = document.querySelectorAll('svg').length; + equal(first_number, second_number, 'SVG element not added if it already exists.'); +}); + +test("Chart's height is set correctly on subsequent calls to existing chart", function () { + var params_0 = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + }; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + width: 200, + height: 100, + }; + + MG.data_graphic(params_0); + MG.data_graphic(params); + + var height = document.querySelector(params.target + ' svg').clientHeight; + ok(height == params.height, "SVG's height matches latest specified height"); +}); + +test('Charts are plotted correctly when MG is called multiple times on the same target element', function () { + var params_0 = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}] + }; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + width: 200, + height: 100, + }; + + MG.data_graphic(params_0); + MG.data_graphic(params); + + // ensure chart types change appropriately + var line = document.querySelector('.mg-main-line'); + ok(line, 'chart_type is `line`, line chart is plotted'); + + // check all the other chart types + var chart_types = [{id: 'point', domElement: '.mg-points'}, + {id: 'histogram', domElement: '.mg-histogram'}, + {id: 'bar', domElement: '.mg-barplot'}]; + + for (var i = 0; i < chart_types.length; i++) { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + chart_type: chart_types[i].id, + width: 200, + height: 100, + }; + + MG.data_graphic(params); + ok(document.querySelector(chart_types[i].domElement), + 'chart_type switched to `' + chart_types[i].id + '`, the correct chart type is plotted'); + + // ensure old chart was removed + equal(document.querySelectorAll('.mg-main-line').length, 0, 'line chart (old one) was removed'); + } +}); + +test('Missing chart has required class name set', function () { + expect(1); + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + chart_type: 'missing-data' + }; + + MG.data_graphic(params); + + var matches = document.querySelector(params.target + ' svg').getAttribute('class').match(/mg-missing/); + ok(matches, 'Missing chart has class `missing` set'); +}); + +test('Linked chart has the required class set', function () { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + linked: true + }; + + MG.data_graphic(params); + + var matches = document.querySelector(params.target + ' svg').getAttribute('class').match(/linked/); + ok(matches, 'Linked chart has class `linked` set'); +}); + +test('args.time_series is set to true when data is time-series', function () { + var params = { + target: '#qunit-fixture', + data: [{'foo': new Date('2014-11-01'), 'value': 12}, + {'foo': new Date('2014-11-02'), 'value': 18}], + x_accessor: 'foo' + }; + + MG.data_graphic(params); + ok(params.time_series, 'args.time_series is set to true when data is time-series'); +}); + +test('args.time_series is set to false when data is not time-series', function () { + var params = { + target: '#qunit-fixture', + data: [{'foo': 100, 'value': 12}, + {'foo': 200, 'value': 18}], + x_accessor: 'foo' + }; + + MG.data_graphic(params); + equal(params.time_series, false, 'args.time_series is set to false when data is not time-series'); +}); + +test('Only one clip path is added on multiple calls to the same target element', function () { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12, 'l': 10, 'u': 14}, + {'date': new Date('2014-03-01'), 'value': 18, 'l': 16, 'u': 20}] + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll('.mg-clip-path').length, 1, 'We only have one clip path'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/markers_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/markers_test.js new file mode 100644 index 0000000..aac7f5b --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/markers_test.js @@ -0,0 +1,160 @@ +module('markers'); + +test('All markers are added if they lie within the visible range', function() { + var markers = [{ + 'date': new Date('2014-02-01'), + 'label': '1st Milestone' + }, { + 'date': new Date('2014-02-02'), + 'label': '2nd Milestone' + }]; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + markers: markers + }; + + MG.data_graphic(params); + equal(document.querySelectorAll(params.target + ' .mg-markers line').length, markers.length, 'Two markers added'); +}); + +test('Markers that lie outside the visible range are excluded', function() { + var markers = [{ + 'date': new Date('2014-02-01'), + 'label': '1st Milestone' + }, { + 'date': new Date('2014-02-03'), + 'label': '2nd Milestone' + }]; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-02-02'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + markers: markers + }; + + MG.data_graphic(params); + equal(document.querySelectorAll(params.target + ' .mg-markers line').length, 1, 'One marker added'); +}); + +test('Markers that lie at the edge of the visible range are included', function() { + var markers = [{ + 'date': new Date('2014-02-01'), + 'label': '1st Milestone' + }, { + 'date': new Date('2014-03-01'), + 'label': '2nd Milestone' + }]; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-02-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + markers: markers + }; + + MG.data_graphic(params); + equal(document.querySelectorAll(params.target + ' .mg-markers line').length, markers.length, 'Two markers added'); +}); + +test('All baselines are added', function() { + var baselines = [{value:50, label:'a baseline'}]; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 100}, + {'date': new Date('2014-03-01'), 'value': 10}], + baselines: baselines + }; + + MG.data_graphic(params); + equal(document.querySelectorAll(params.target + ' .mg-baselines line').length, markers.length, 'One baseline added'); +}); + +test('Markers\' texts are correctly added', function() { + var markers = [{ + 'date': new Date('2014-02-01'), + 'label': '1st Milestone' + }, { + 'date': new Date('2014-02-02'), + 'label': '2nd Milestone' + }]; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 100}, + {'date': new Date('2014-03-01'), 'value': 10}], + markers: markers + }; + + MG.data_graphic(params); + equal(document.querySelectorAll(params.target + ' .mg-markers text')[0].textContent, markers[0].label, 'First marker\'s text matches specified one'); + equal(document.querySelectorAll(params.target + ' .mg-markers text')[1].textContent, markers[1].label, 'Second marker\'s text matches specified one'); +}); + +test('Baseline text is correctly added', function() { + var baselines = [{value:50, label:'a baseline'}]; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 100}, + {'date': new Date('2014-03-01'), 'value': 10}], + baselines: baselines + }; + + MG.data_graphic(params); + equal(document.querySelectorAll(params.target + ' .mg-baselines text')[0].textContent, baselines[0].label, 'Baseline text matches specified one'); +}); + +test('When an existing chart is updated with no markers, existing markers are cleared', function() { + var markers = [{ + 'date': new Date('2014-11-02'), + 'label': 'Lorem Ipsum' + }]; + + var params_0 = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-03'), 'value': 18}], + markers: markers + }; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 14}, + {'date': new Date('2014-11-03'), 'value': 20}], + }; + + MG.data_graphic(params_0); + MG.data_graphic(params); + + equal(document.querySelectorAll('.mg-markers').length, 0, 'Old markers were cleared'); +}); + +test('When an existing chart is updated with no baselines, existing baselines are cleared', function() { + var baselines = [{ + 'value': 10, + 'label': 'Lorem Ipsum' + }]; + + var params_0 = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-03'), 'value': 18}], + baselines: baselines + }; + + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-11-01'), 'value': 14}, + {'date': new Date('2014-11-03'), 'value': 20}], + }; + + MG.data_graphic(params_0); + MG.data_graphic(params); + + equal(document.querySelectorAll('.mg-baselines').length, 0, 'Old baselines were cleared'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/resize_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/resize_test.js new file mode 100644 index 0000000..c2c380b --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/resize_test.js @@ -0,0 +1,44 @@ +module('resize'); + +test("Resize does not leak listeners", function () { + // Instrument window event listener methods + var realWindowAddEventListener = window.addEventListener; + var realWindowRemoveEventListener = window.removeEventListener; + var resizeListeners = []; + + window.addEventListener = function () { + if (arguments[0] === 'resize' && resizeListeners.indexOf(arguments[1]) === -1) { + resizeListeners.push(arguments[1]); + } + realWindowAddEventListener.apply(this, arguments); + } + + window.removeEventListener = function () { + if (arguments[0] === 'resize') { + var index = resizeListeners.indexOf(arguments[1]); + if (index !== -1) { + resizeListeners.splice(index, 1); + } + } + realWindowRemoveEventListener.apply(this, arguments); + } + + var params = { + target: '#qunit-fixture', + full_width: true, + data: [{'date': new Date('2014-11-01'), 'value': 12}, + {'date': new Date('2014-11-02'), 'value': 18}], + height: 100 + }; + MG.data_graphic(params); + var listenerCountAfterOne = resizeListeners.length; + const REPEAT_CREATE = 20; + for (var i = 0; i < REPEAT_CREATE; i++) { + MG.data_graphic(params); + } + equal(resizeListeners.length, listenerCountAfterOne, "Listener count constant after chart recreated " + REPEAT_CREATE + " times"); + + // Restore default methods + window.addEventListener = realWindowAddEventListener; + window.removeEventListener = realWindowRemoveEventListener; +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/x_axis_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/x_axis_test.js new file mode 100644 index 0000000..61e512c --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/x_axis_test.js @@ -0,0 +1,227 @@ +module('x_axis'); + +test('X-axis is added', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-x-axis'), 'X-axis is added'); +}); + +test('args.x_axis set to false', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_axis: false + }; + + MG.data_graphic(params); + equal(document.querySelector('.mg-x-axis'), null, 'X-axis is not added'); +}); + +test('Only one x-axis is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll(params.target + ' .mg-x-axis').length, 1, 'We only have one x-axis'); +}); + +test('args.show_secondary_x_label: true', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-year-marker'), 'Year marker exists'); +}); + +test('args.show_secondary_x_label: false', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + show_secondary_x_label: false + }; + + MG.data_graphic(params); + equal(document.querySelector('.mg-year-marker'), null, 'Year marker not added'); +}); + +test('args.x_label', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_label: 'foo bar' + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-x-axis .label'), 'X-axis label exists'); +}); + +test('args.labels (scatter plot)', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_label: 'foo bar', + y_label: 'bar foo', + chart_type: 'point' + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-x-axis .label'), 'X-axis label exists'); + ok(document.querySelector('.mg-y-axis .label'), 'Y-axis label exists'); +}); + +test('X-axis doesn\'t break when data object is of length 1', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-x-axis'), 'X-axis exists'); +}); + +test('args.x_rug', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_rug: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-x-rug'), 'X-axis rugplot exists'); +}); + +test('Only one rugplot is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_rug: true + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll('.mg-x-rug').length, 2, 'We only have one rugplot on the x-axis'); +}); + +test('args.x_extended_ticks', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + x_extended_ticks: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-extended-xax-ticks'), 'X-axis extended ticks exist'); +}); + +test('Correctly calculates min and max values for line, point and histogram charts', function() { + // single series + var params = { + target: '#qunit-fixture', + x_accessor: 'x', + y_accessor: 'y', + data: [ + [ + {x: 4, y: 5}, + {x: 5, y: 5}, + {x: 6, y: 5}, + {x: 7, y: 5} + ] + ] + }; + MG.data_graphic(params); + equal(params.processed.min_x, 4, 'min is correct for single series'); + equal(params.processed.max_x, 7, 'max is correct for single series'); + + // multiple series + var params2 = { + target: '#qunit-fixture', + x_accessor: 'x', + y_accessor: 'y', + data: [ + [ + {x: 1, y: 5}, + {x: 2, y: 5}, + {x: 3, y: 5}, + {x: 4, y: 5} + ], [ + {x: 5, y: 5}, + {x: 6, y: 5}, + {x: 7, y: 5} + ] + ] + }; + MG.data_graphic(params2); + equal(params2.processed.min_x, 1, 'min is correct for multiple series'); + equal(params2.processed.max_x, 7, 'max is correct for multiple series'); +}); + +/*test('Correctly calculates min and max values for bar chart', function() { + var args; + + // single series + args = { + x_accessor: 'x', + baseline_accessor: 'b', + predictor_accessor: 'p', + chart_type: 'bar', + target: '#qunit-fixture', + data: [ + [ + {x: 4, b: 3, p: 2}, + {x: 5, b: 2, p: 6}, + {x: 6, b: 1, p: 10}, + {x: 7, b: 0, p: 12} + ] + ] + }; + MG.data_graphic(args); + equal(args.processed.min_x, 0, 'min is correct'); + equal(args.processed.max_x, 12, 'max is correct'); +});*/ + +test('Ensure that custom xax_format isn\'t deleted', function() { + var params = { + title: 'foo', + target: '.result', + xax_format: function(d) { return 'humbug'; }, + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + equal(params.xax_format(), 'humbug', 'xax_format hasn\'t been overriden'); +}); + +test('Ensure that default null xax_format is respected; allow MG to recalculate the default on redraw', function() { + var params = { + title: 'foo', + target: '.result', + xax_format: null, + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + equal(params.xax_format, null, 'xax_format is still null'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/common/y_axis_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/common/y_axis_test.js new file mode 100644 index 0000000..7295b64 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/common/y_axis_test.js @@ -0,0 +1,208 @@ +module('y_axis'); + +test('Y-axis is added', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-y-axis'), 'Y-axis is added'); +}); + +test('args.y_axis set to false', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + y_axis: false + }; + + MG.data_graphic(params); + equal(document.querySelector('.mg-y-axis'), null, 'Y-axis is not added'); +}); + +test('Only one y-axis is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll(params.target + ' .mg-y-axis').length, 1, 'We only have one y-axis'); +}); + +test('Only one mg-category-guides group is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{"year": "1945","sightings": 6},{"year": "1946","sightings": 8}], + chart_type: 'point', + y_accessor: "year", + x_accessor: "sightings", + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + + equal(document.querySelectorAll(params.target + ' .mg-category-guides').length, 1, 'We only have one mg-category-guides'); +}); + +test('args.y_label', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + y_label: 'foo bar' + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-y-axis .label'), 'Y-axis label exists'); +}); + +test('Y-axis doesn\'t break when data object is of length 1', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}] + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-y-axis'), 'Y-axis exists'); +}); + +// test('args.small_text', function() { +// var params = { +// target: '#qunit-fixture', +// data: [{'date': new Date('2014-01-01'), 'value': 12}], +// small_text: true, +// }; + +// MG.data_graphic(params); +// ok(document.querySelector('.mg-y-axis-small'), 'Small y-axis is set'); +// }); + +test('args.y_rug', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + y_rug: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-y-rug'), 'Y-axis rugplot exists'); +}); + +test('Only one rugplot is added on multiple calls to the same target element', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + y_rug: true + }; + + MG.data_graphic(params); + MG.data_graphic(MG.clone(params)); + equal(document.querySelectorAll('.mg-y-rug').length, 2, 'We only have one rugplot on the y-axis'); +}); + +test('Default min_y is 0', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}] + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-y-axis text')[0].textContent, 0, 'Y-axis starts at 0'); +}); + +test('args.min_y_from_data', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + min_y_from_data: true + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-y-axis text')[0].textContent, 12, 'Y-axis starts at 12'); +}); + +test('args.min_y set to arbitrary value', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + min_y: 5 + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-y-axis text')[0].textContent, 5, 'Y-axis starts at 5'); +}); + +test('args.y_extended_ticks', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + y_extended_ticks: true + }; + + MG.data_graphic(params); + ok(document.querySelector('.mg-extended-yax-ticks'), 'Y-axis extended ticks exist'); +}); + +test('args.format is set to percentage', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 0.12}, + {'date': new Date('2014-03-01'), 'value': 0.18}], + format: 'percentage' + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-y-axis text')[0].textContent.slice(-1), '%', 'Y-axis units are %'); +}); + +test('percentage args.format is correct', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 0.80}, + {'date': new Date('2014-03-01'), 'value': 1.20}], + format: 'percentage', + height: 400, + min_y_from_data: true + }; + + MG.data_graphic(params); + equal(document.querySelectorAll('.mg-y-axis text')[2].textContent, '120%', 'Y-axis label formats correctly'); +}); + +test('args.yax_units', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 2.12}, + {'date': new Date('2014-03-01'), 'value': 4.18}], + yax_units: '$', + }; + + MG.data_graphic(params); + equal(document.querySelector('.mg-y-axis text').textContent[0], '$', 'Y-axis units are $'); +}); + +test('When args.max_y is set, ignore inflator', function() { + var params = { + target: '#qunit-fixture', + data: [{'date': new Date('2014-01-01'), 'value': 12}, + {'date': new Date('2014-03-01'), 'value': 18}], + max_y: 60, + }; + + MG.data_graphic(params); + var nodes = document.querySelectorAll('.mg-y-axis text'); + equal(nodes[nodes.length - 1].textContent, 60, 'Maximum y-axis value is 60'); +}); diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/helpers.js b/priv/static/metrics-graphics-3.0-alpha3/tests/helpers.js new file mode 100644 index 0000000..22d30ad --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/helpers.js @@ -0,0 +1,20 @@ +function generateMouseEvent(type) { + var event = document.createEvent('MouseEvent'); + event.initEvent(type, true, true); + return event; +} + +// essentially the same as $.extend +function extend(){ + var result = {}, + $__arguments = [].slice.call(arguments); + + $__arguments.forEach(function(obj) { + for (var prop in obj) { + if (obj.hasOwnProperty(prop)) { + result[prop] = obj[prop]; + } + } + }); + return result; +} diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/misc/.gitkeep b/priv/static/metrics-graphics-3.0-alpha3/tests/misc/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/misc/process_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/misc/process_test.js new file mode 100644 index 0000000..4495b75 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/misc/process_test.js @@ -0,0 +1,14 @@ +module('process'); + +test('args.missing_is_zero doesn\'t throw a "args.data[0][0] is undefined" error', function() { + var data = [{"date": new Date('2014-02-02'), "value": 6}]; + var params = { + data: data, + target: "#qunit-fixture", + missing_is_zero: true + }; + + MG.data_graphic(params); + + equal(params.data.length, 1, 'args.data is defined'); +}); \ No newline at end of file diff --git a/priv/static/metrics-graphics-3.0-alpha3/tests/misc/utility_test.js b/priv/static/metrics-graphics-3.0-alpha3/tests/misc/utility_test.js new file mode 100644 index 0000000..7af4e00 --- /dev/null +++ b/priv/static/metrics-graphics-3.0-alpha3/tests/misc/utility_test.js @@ -0,0 +1,90 @@ +module('utility'); + +test('MG.convert.date', function() { + var data = [{'date': '2014-01-01', 'value': 12}, + {'date': '2014-03-01', 'value': 18}]; + + MG.convert.date(data, 'date'); + equal($.type(data[0].date), 'date', 'First date is of type date'); + equal($.type(data[0].date), 'date', 'Second date is of type date'); +}); + +test('MG.convert.date with an alternative timestamp style', function() { + var data = [{'date': '2014-20-12', 'value': 12}, + {'date': '2014-21-12', 'value': 18}]; + + MG.convert.date(data, 'date', '%Y-%d-%m'); + equal($.type(data[0].date), 'date', 'First date is of type date'); + equal($.type(data[0].date), 'date', 'Second date is of type date'); +}); + +test('MG.convert.number', function() { + var data = [{'date': '2014-20-12', 'value': '12'}, + {'date': '2014-21-12', 'value': '18'}]; + + MG.convert.number(data, 'value'); + equal($.type(data[0].value), 'number', 'First value is a number'); + equal($.type(data[0].value), 'number', 'Second value is a number'); +}); + +test('mg_get_svg_child_of', function(){ + d3.select('#qunit-fixture').append('svg'); + + var svg_element_with_node = mg_get_svg_child_of(document.querySelector('#qunit-fixture')); + var svg_element_with_text = mg_get_svg_child_of('#qunit-fixture'); + + equal(svg_element_with_node.nodes().length, 1, 'Node-based argument should return a d3 selection with svg.'); + equal(svg_element_with_node.nodes().length, 1, 'Selector-based argument should return a d3 selection with svg.'); +}); + + +test('mg_target_ref', function() { + var chart_area2 = document.createElement('div'); + mg_target_ref(chart_area2); + ok(chart_area2.getAttribute('data-mg-uid').match(/mg-[\d]/), 'applies generated ID to DOM element'); +}); + +test('Overlapping markers are taken care of', function() { + var params = { + data: [{ + "date": new Date('2016-01-01'), + "value": 6 + }, + { + "date": new Date('2016-01-02'), + "value": 8 + }, + { + "date": new Date('2016-01-03'), + "value": 34 + }, + { + "date": new Date('2016-01-04'), + "value": 38 + }], + markers: [{'date': new Date('2016-01-02'), 'label': 'A happened'},{'date': new Date('2016-01-02'), 'label': 'B happened'}], + target: "#qunit-fixture" + }; + + MG.data_graphic(params); + + equal(mg_is_horizontally_overlapping(d3.selectAll('.mg-marker-text').node(), d3.selectAll('.mg-marker-text').nodes()), false, 'Markers aren\'t overlapping'); +}); + +test('compare_type', function() { + [ + ['number', null, true], + ['number', 1, true], + ['number', 'str', false], + ['number[]', 1, false], + ['number[]', [1], true], + ['object[]', [{}, 1], false], + [['number', 'string'], 1, true], + [['number', 'string'], 'str', true], + [['number', 'string'], {}, false], + [['a', 'b'], 'a', true], + [['a', 'b'], 'c', false] + ].forEach(i => { + equal(compare_type(i[0], i[1]), i[2], i); + }); +}); -- cgit v1.2.3